k8s.io/kubernetes@v1.31.0-alpha.0.0.20240520171757-56147500dadc/hack/testdata/scale-deploy-3.yaml (about) 1 apiVersion: apps/v1 2 kind: Deployment 3 metadata: 4 labels: 5 foo: boo 6 name: scale-3 7 spec: 8 replicas: 1 9 selector: 10 matchLabels: 11 run: hello 12 strategy: 13 rollingUpdate: 14 maxSurge: 1 15 maxUnavailable: 1 16 type: RollingUpdate 17 template: 18 metadata: 19 labels: 20 run: hello 21 spec: 22 containers: 23 - image: aronchick/hello-node:2.0 24 imagePullPolicy: IfNotPresent 25 name: hello