mirror of https://github.com/k3s-io/k3s
25 lines
502 B
JSON
25 lines
502 B
JSON
{
|
|
"kind": "ReplicationController",
|
|
"apiVersion": "v1beta3",
|
|
"metadata": {
|
|
"name": "nginx-controller",
|
|
"labels": {"name": "nginx"}
|
|
},
|
|
"spec": {
|
|
"replicas": 2,
|
|
"selector": {"name": "nginx"},
|
|
"template": {
|
|
"metadata": {
|
|
"labels": {"name": "nginx"}
|
|
},
|
|
"spec": {
|
|
"containers": [{
|
|
"name": "nginx",
|
|
"image": "dockerfile/nginx",
|
|
"ports": [{"containerPort": 80}]
|
|
}]
|
|
}
|
|
}
|
|
}
|
|
}
|