Untitled

Config YAML file

apiVersion: apps/v1
kind: Deployment
metadata:
  name: httpd-frontend
  labels:
    name: frontend
spec:
  replicas: 3
  selector:
    matchLabels:
      name: frontend
  template:
    metadata:
      labels:
        name: frontend
    spec:
      containers:
      - name: httpd
        image: httpd:2.4-alpine

<aside> ⛔ Update the kind from Replicaset to Deployment in a Replicaset config file.

</aside>

Deployment Strategy

Untitled

There are two deployment strategies:

Rollout and Versioning

Rollback