apiVersion: apps/v1 kind: Deployment metadata: name: "cv" labels: app: "front" spec: template: metadata: name: "front-apache" labels: owner: "jcabillot" app: "front" spec: automountServiceAccountToken: false containers: - name: "front-apache" image: "jcabillot/cv" ports: - name: "http" containerPort: 8080 protocol: "TCP" livenessProbe: httpGet: path: "/" port: "http" readinessProbe: httpGet: path: "/" port: "http" replicas: 1 selector: matchLabels: app: "front"