Update dependencies and the test images to use pause 3.5. We also provide a changelog entry for the new container image version. Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
31 lines
542 B
YAML
31 lines
542 B
YAML
# Test failures do not block the apply for valid resources.
|
|
# pod-a and pod-c should apply, while POD-B is invalid
|
|
# because of the capitialization.
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: pod-a
|
|
spec:
|
|
containers:
|
|
- name: kubernetes-pause
|
|
image: k8s.gcr.io/pause:3.5
|
|
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: POD-B
|
|
spec:
|
|
containers:
|
|
- name: kubernetes-pause
|
|
image: k8s.gcr.io/pause:3.5
|
|
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: pod-c
|
|
spec:
|
|
containers:
|
|
- name: kubernetes-pause
|
|
image: k8s.gcr.io/pause:3.5
|
|
|