Kubernetes Services

2023-08-09T23:17:39+00:00

Bookmarks What is a Pod? What are Kubernetes Services? Kubernetes Service Types Defining a Service Headless Service What is a Pod? A Pod is a Kubernetes Object that has one or more containers running inside it. A Pod will ensure that the containers inside it share the same resources and local network. Each Pod gets its own IP address. If you use a Deployment to run your app, that Deployment can create and destroy Pods dynamically. Pods are created and destroyed to match the desired state of your cluster. Pods are ephemeral [...]