The Kubernetes Series - Application Management
This post covers general deployments tasks like, rollouts, rollbacks, environment variables, multi-container pods and browsing pods.…
This post covers general deployments tasks like, rollouts, rollbacks, environment variables, multi-container pods and browsing pods.…
Kube-scheduler, if you recall, is a service that runs on the master node that monitors the cluster for unscheduled pods. It does this by checking for a property called nodeName on a created Pods definition.…
Namespaces is a way for you to isolate objects, resources and instances in your cluster in a way that they can't interfere with each other.…
ReplicationSets and/or Replication Controllers are processes that ensure that a certain number of identical pods are always running on your cluster. If a pod fails the ReplicationSet or Replication Controller will remove it and replace it with a new one.…