k8s.io/kubernetes@v1.31.0-alpha.0.0.20240520171757-56147500dadc/test/fixtures/pkg/kubectl/cmd/apply/deploy-clientside.yaml (about) 1 apiVersion: apps/v1 2 kind: Deployment 3 metadata: 4 name: nginx-deployment 5 labels: 6 name: nginx 7 spec: 8 selector: 9 matchLabels: 10 name: nginx 11 strategy: 12 type: Recreate 13 rollingUpdate: null 14 template: 15 metadata: 16 labels: 17 name: nginx 18 spec: 19 containers: 20 - name: nginx 21 image: nginx