apiVersion: apps/v1 kind: Deployment metadata: name: good-deployment-1 labels: prod: "true" app: good-nginx spec: replicas: 1 selector: matchLabels: prod: "true" app: good-nginx template: metadata: labels: prod: "true" app: good-nginx spec: containers: - name: nginx image: nginx:latest securityContext: allowPrivilegeEscalation: false