kubernetes deployment strategy explained with example

Fearture of Kubernetes Deployment Note:ReplicaSets = Replication+Controller in the Deployment Kubernetes Deployement Strategy Type of deployment .spec.strategy specifies the strategy used to replace old Pods by new ones. .spec.strategy.type can be “Recreate” or “RollingUpdate”. “RollingUpdate” is the default value Recreate Deployment All existing Pods are killed before new ones are created when .spec.strategy.type==Recreate. This will … Continue reading kubernetes deployment strategy explained with example