1234567891011121314151617181920212223242526 |
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- labels:
- foo: boo
- name: scale-3
- spec:
- replicas: 1
- selector:
- matchLabels:
- run: hello
- strategy:
- rollingUpdate:
- maxSurge: 1
- maxUnavailable: 1
- type: RollingUpdate
- template:
- metadata:
- labels:
- run: hello
- spec:
- containers:
- - image: aronchick/hello-node:2.0
- imagePullPolicy: IfNotPresent
- name: hello
|