k8s.io/kubernetes@v1.31.0-alpha.0.0.20240520171757-56147500dadc/hack/testdata/multi-resource-3.yaml (about) 1 # Test failures do not block the apply for valid resources. 2 # pod-a and pod-c should apply, while POD-B is invalid 3 # because of the capitialization. 4 apiVersion: v1 5 kind: Pod 6 metadata: 7 name: pod-a 8 spec: 9 containers: 10 - name: kubernetes-pause 11 image: registry.k8s.io/pause:3.9 12 --- 13 apiVersion: v1 14 kind: Pod 15 metadata: 16 name: POD-B 17 spec: 18 containers: 19 - name: kubernetes-pause 20 image: registry.k8s.io/pause:3.9 21 --- 22 apiVersion: v1 23 kind: Pod 24 metadata: 25 name: pod-c 26 spec: 27 containers: 28 - name: kubernetes-pause 29 image: registry.k8s.io/pause:3.9 30