mirror of
https://github.com/outbackdingo/kubernetes.git
synced 2026-01-27 18:19:28 +00:00
This commit will update the pause version to 3.10.1 as per thread: https://kubernetes.slack.com/archives/CJH2GBF7Y/p1741674313893029 Signed-off-by: ArkaSaha30 <arkasaha30@gmail.com>
26 lines
543 B
JSON
26 lines
543 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": "registry.k8s.io/pause:3.10.1"
|
|
}]
|
|
}
|
|
}
|
|
}
|
|
}
|