
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>
34 lines
505 B
YAML
34 lines
505 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: mock
|
|
labels:
|
|
app: mock
|
|
spec:
|
|
ports:
|
|
- port: 99
|
|
protocol: TCP
|
|
targetPort: 9949
|
|
selector:
|
|
app: mock
|
|
---
|
|
apiVersion: v1
|
|
kind: ReplicationController
|
|
metadata:
|
|
name: mock
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
app: mock
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: mock
|
|
spec:
|
|
containers:
|
|
- name: mock-container
|
|
image: k8s.gcr.io/pause:3.5
|
|
ports:
|
|
- containerPort: 9949
|
|
protocol: TCP
|