Demystifying Kubernetes Manifests: Efficient Deployment and Management Guide
Introduction
Kubernetes has revolutionized container orchestration, allowing DevOps engineers to efficiently manage and deploy applications at scale. At the heart of Kubernetes lies manifest files, which define the desired state of Kubernetes resources. In this guide, we'll explore what manifest files are, their types, and provide examples to illustrate their usage.
What are Manifest Files in Kubernetes?
Manifest files in Kubernetes are YAML (YAML Ain't Markup Language) documents used to define and configure Kubernetes resources. These resources can include pods, services, deployments, replica sets, and more. Manifest files serve as blueprints that Kubernetes uses to create, modify, and manage these resources within a cluster.
Types of Manifest Files
PodManifests:
Pod manifest files describe a single instance of a containerized application. They include specifications for the containers, volumes, and other metadata associated with the pod
Example PodManifest:
apiVersion: v1
kind: Pod
metadata:
name: nginx-pod
spec:
containers:
- name: nginx-container
image: nginx:latest
- `apiVersion`: Specifies the version of the Kubernetes API being used.
- `kind`: Indicates the type of Kubernetes resource being defined, in this case, a Pod.
- `metadata`: Contains metadata about the resource, such as its name.
- `name`: Specifies the name of the Pod.
- `spec`: Defines the desired state of the Pod.
- `containers`: Describes the containers that should run within the Pod.
- `name`: Specifies the name of the container.
- `image`: Specifies the Docker image to use for the container.
DeploymentManifests:
Deployment manifest files define how applications are deployed and managed within a Kubernetes cluster. They specify the desired state, such as the number of replicas, update strategy, and pod template.
Example DeploymentManifest:
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
spec:
replicas: 3
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx-container
image: nginx:latest
- `apiVersion`: Specifies the version of the Kubernetes API being used.
- `kind`: Indicates the type of Kubernetes resource being defined, in this case, a Deployment.
- `metadata`: Contains metadata about the resource, such as its name.
- `name`: Specifies the name of the Deployment.
- `spec`: Defines the desired state of the Deployment.
- `replicas`: Specifies the desired number of replicas (instances) of the application to run.
- `selector`: Specifies how the Deployment selects which Pods to manage.
- `matchLabels`: Specifies the labels that Pods must have to be managed by this Deployment.
- `template`: Defines the Pod template used to create new Pods.
- `metadata`: Contains metadata for the Pod template.
- `labels`: Specifies labels to apply to Pods created from this template.
- `spec`: Defines the desired state of Pods created from this template (similar to the Pod manifest).
ServiceManifests:
Service manifest files define how networking is handled within a Kubernetes cluster. They enable communication between different parts of an application and expose services to the external world.
Example ServiceManifest:
apiVersion: v1
kind: Service
metadata:
name: nginx-service
spec:
selector:
app: nginx
ports:
- protocol: TCP
port: 80
targetPort: 80
- `apiVersion`: Specifies the version of the Kubernetes API being used.
- `kind`: Indicates the type of Kubernetes resource being defined, in this case, a Service.
- `metadata`: Contains metadata about the resource, such as its name.
- `name`: Specifies the name of the Service.
- `spec`: Defines the desired state of the Service.
- `selector`: Specifies which Pods the Service should target.
- `app: nginx`: Selects Pods with the label `app` set to `nginx`.
- `ports`: Specifies the ports that the Service should expose.
- `protocol`: Specifies the network protocol (TCP in this case).
- `port`: Specifies the port on which the Service should be exposed.
- `targetPort`: Specifies the port on the Pods to which traffic should be forwarded.
These explanations should help understand the purpose and structure of each line in the manifest examples..
In addition to PodManifests, DeploymentManifests, and ServiceManifests, there are other types of deployment files used in Kubernetes for managing different aspects of applications and infrastructure. Some of these include:
StatefulSet Manifests:
StatefulSets are used to manage stateful applications, such as databases, where each instance requires stable, unique network identifiers and persistent storage. StatefulSetManifests define how stateful applications are deployed and maintained within a Kubernetes cluster.
Example StatefulSetManifest:
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: mysql
spec:
replicas: 3
serviceName: mysql
selector:
matchLabels:
app: mysql
template:
metadata:
labels:
app: mysql
spec:
containers:
- name: mysql
image: mysql:5.7
ports:
- containerPort: 3306
volumeMounts:
- name: mysql-persistent-storage
mountPath: /var/lib/mysql
volumeClaimTemplates:
- metadata:
name: mysql-persistent-storage
spec:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
storage: 1Gi
ConfigMap Manifests:
ConfigMaps allow you to decouple configuration artifacts from image content to keep containerized applications portable. ConfigMapManifests define key-value pairs that can be injected into a containerized application at runtime.
Example ConfigMapManifest:
apiVersion: v1
kind: ConfigMap
metadata:
name: app-config
data:
server.properties: |
server.port=8080
database.url=jdbc:mysql://mysql:3306/mydb
SecretManifests:
Secrets are similar to ConfigMaps but are intended to store sensitive information such as passwords, OAuth tokens, and SSH keys. SecretManifests define sensitive data that can be injected into pods.
Example SecretManifest:
apiVersion: v1
kind: Secret
metadata:
name: app-secrets
type: Opaque
data:
username: YWRtaW4= # base64 encoded value
password: MWYyZDFlMmU2N2Rm # base64 encoded value
These are just a few examples of additional deployment files used in Kubernetes. Depending on the specific requirements of your application and infrastructure, you may encounter other types of manifests such as DaemonSetManifests, CronJobManifests, JobManifests, etc. Each serves a unique purpose in defining and managing resources within a Kubernetes cluster.
Conclusion:
Kubernetes manifests are the cornerstone of efficient container orchestration, enabling DevOps engineers to define, deploy, and manage applications seamlessly. While we've explored key manifest types like PodManifests, DeploymentManifests, and ServiceManifests, the Kubernetes ecosystem offers a diverse range of deployment files catering to various deployment scenarios. These include StatefulSetManifests for managing stateful applications, ConfigMapManifests and SecretManifests for injecting configuration and sensitive data into pods, and others like DaemonSetManifests and CronJobManifests. By embracing infrastructure as code (IaC) principles with manifest files, DevOps teams ensure consistency, reproducibility, and collaboration in their deployment processes. Understanding the nuances of manifest files empowers DevOps engineers to harness the full potential of Kubernetes, driving agility and scalability in modern application deployments.
Subscribe to my newsletter
Read articles from SWATHI PUNREDDY directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by