mirror of https://github.com/k3s-io/k3s
38 lines
780 B
JSON
38 lines
780 B
JSON
{
|
|
"kind":"ReplicationController",
|
|
"apiVersion":"v1beta3",
|
|
"metadata":{
|
|
"name":"frontend",
|
|
"labels":{
|
|
"name":"frontend"
|
|
}
|
|
},
|
|
"spec":{
|
|
"replicas":3,
|
|
"selector":{
|
|
"name":"frontend"
|
|
},
|
|
"template":{
|
|
"metadata":{
|
|
"labels":{
|
|
"name":"frontend"
|
|
}
|
|
},
|
|
"spec":{
|
|
"containers":[
|
|
{
|
|
"name":"php-redis",
|
|
"image":"kubernetes/example-guestbook-php-redis:v2",
|
|
"ports":[
|
|
{
|
|
"containerPort":80,
|
|
"protocol":"TCP"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|