github.com/replicatedhq/ship@v0.55.0/integration/update/modify-chart/expected/rendered.yaml (about) 1 apiVersion: v1 2 kind: Service 3 metadata: 4 labels: 5 app: modify-chart 6 release: modify-chart 7 name: modify-chart 8 spec: 9 ports: 10 - name: http 11 port: 80 12 protocol: TCP 13 targetPort: http 14 selector: 15 app: modify-chart 16 release: modify-chart 17 type: ClusterIP 18 --- 19 apiVersion: apps/v1beta2 20 kind: Deployment 21 metadata: 22 labels: 23 app: modify-chart 24 release: modify-chart 25 name: modify-chart 26 spec: 27 replicas: 1 28 selector: 29 matchLabels: 30 app: modify-chart 31 release: modify-chart 32 template: 33 metadata: 34 labels: 35 app: modify-chart 36 release: modify-chart 37 spec: 38 containers: 39 - image: nginx:stable 40 imagePullPolicy: IfNotPresent 41 livenessProbe: 42 httpGet: 43 path: / 44 port: http 45 name: modify-chart 46 ports: 47 - containerPort: 80 48 name: http 49 protocol: TCP 50 readinessProbe: 51 httpGet: 52 path: / 53 port: http 54 resources: {}