Learn how to use the kubectl describe command to get detailed information about pods, deployments, services, nodes, and more.| Spacelift
Learn how Kubernetes liveness probes work, different types, configurations, and best practices to keep your containers healthy and running.| Spacelift
Follow the best practices for Kubernetes listed in this article for painless and efficient maintenance of your K8s cluster in production.| Spacelift
See best practices for deploying K8s cluster and how easy it is to set up dependencies between multiple stacks inside Spacelift for a highly efficient pipeline.| Spacelift
Automate infrastructure provisioning, configuration, and governance to boost platform team efficiency, developer velocity, and control costs.| Spacelift
Collaborative Infrastructure For Modern Software Teams| docs.spacelift.io
Synopsis The kubelet is the primary "node agent" that runs on each node. It can register the node with the apiserver using one of: the hostname; a flag to override the hostname; or specific logic for a cloud provider. The kubelet works in terms of a PodSpec. A PodSpec is a YAML or JSON object that describes a pod. The kubelet takes a set of PodSpecs that are provided through various mechanisms (primarily through the apiserver) and ensures that the containers described in those PodSpecs are ru...| Kubernetes
Collaborative Infrastructure For Modern Software Teams| docs.spacelift.io
This page contains an overview of the various feature gates an administrator can specify on different Kubernetes components. See feature stages for an explanation of the stages for a feature. Overview Feature gates are a set of key=value pairs that describe Kubernetes features. You can turn these features on or off using the --feature-gates command line flag on each Kubernetes component. Each Kubernetes component lets you enable or disable a set of feature gates that are relevant to that comp...| Kubernetes
This page shows how to configure liveness, readiness and startup probes for containers. For more information about probes, see Liveness, Readiness and Startup Probes The kubelet uses liveness probes to know when to restart a container. For example, liveness probes could catch a deadlock, where an application is running, but unable to make progress. Restarting a container in such a state can help to make the application more available despite bugs.| Kubernetes