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>
26 lines
535 B
JSON
26 lines
535 B
JSON
{
|
|
"kind": "ReplicationController",
|
|
"apiVersion": "v1",
|
|
"metadata": {
|
|
"name": "test-controller",
|
|
"namespace": "test",
|
|
"labels": {"name": "test-controller"}
|
|
},
|
|
"spec": {
|
|
"replicas": 0,
|
|
"selector": {"name": "test-pod"},
|
|
"template": {
|
|
"metadata": {
|
|
"namespace": "test",
|
|
"labels": {"name": "test-pod"}
|
|
},
|
|
"spec": {
|
|
"containers": [{
|
|
"name": "test-container",
|
|
"image": "k8s.gcr.io/pause:3.5"
|
|
}]
|
|
}
|
|
}
|
|
}
|
|
}
|