github.com/replicatedcom/ship@v0.50.0/integration/update/values-update/expected/base/deployment.yaml (about) 1 --- 2 # Source: values-update/templates/deployment.yaml 3 apiVersion: apps/v1beta2 4 kind: Deployment 5 metadata: 6 name: deployment 7 labels: 8 app: my-app 9 spam: eggs 10 chart: values-update 11 release: values-update 12 heritage: Tiller 13 spec: 14 replicas: 5 15 selector: 16 matchLabels: 17 app: my-app 18 spam: eggs 19 release: values-update 20 template: 21 metadata: 22 labels: 23 app: my-app 24 spam: eggs 25 release: values-update 26 spec: 27 containers: 28 - name: values-update 29 image: "nginx:latest" 30 imagePullPolicy: Never 31 ports: 32 - name: http 33 containerPort: 80 34 protocol: TCP 35 livenessProbe: 36 httpGet: 37 path: / 38 port: http 39 readinessProbe: 40 httpGet: 41 path: / 42 port: http