Execute Rolling Updates in Kubernetes
Step-by-Step Guide to Rolling Updates in Kubernetes

Infosec Poet and CAP-certified DevOps/SecOps Engineer, passionate about security, creativity, and continuous learning.
Tasks
Execute a rolling update for the application using the
nginx:1.17image.Ensure the deployment is named
nginx-deployment.Verify that all pods are operational after the update.
Steps
Get the description of deployment named
nginx-deployementkubectl describe deployment nginx-deployment
We can see there is image:
nginx:1.16Lets update nginx container
kubectl set image deployment/nginx-deployment nginx-container=nginx:1.17
Check the Rollout Status.
kubectl rollout status deployment/nginx-deployment
Again check the update
kubectl describe deployment nginx-deployment
We can see we have image,
nginx:1.17now.Out of the box.
Check our nginx is running on web or not.

Not check the nginx version
making 404 error:p
#nginx #k8s #kubernetes #happylearning





