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