kubectl/testdata/set/multi-resource-yaml.yaml
Claudiu Belu 5f3d7dad09 updates pause image references
The pause:3.6 image has been published.

Also updates older / incorrect references.

Kubernetes-commit: 18936d47858b25d7de3bada57f70f1aa22981e75
2021-08-29 13:53:52 -07:00

33 lines
539 B
YAML

apiVersion: v1
kind: ReplicationController
metadata:
name: first-rc
spec:
replicas: 1
selector:
app: mock
template:
metadata:
labels:
app: mock
spec:
containers:
- name: mock-container
image: k8s.gcr.io/pause:3.6
---
apiVersion: v1
kind: ReplicationController
metadata:
name: second-rc
spec:
replicas: 1
selector:
app: mock
template:
metadata:
labels:
app: mock
spec:
containers:
- name: mock-container
image: k8s.gcr.io/pause:3.6