2018-12-19 16:17:46 +00:00
|
|
|
apiVersion: apps/v1
|
2017-08-27 07:42:20 +00:00
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
labels:
|
2019-02-22 01:43:51 +00:00
|
|
|
foo: boo
|
2017-08-27 07:42:20 +00:00
|
|
|
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
|