mirror of https://github.com/k3s-io/k3s
39 lines
814 B
JSON
39 lines
814 B
JSON
{
|
|
"kind":"ReplicationController",
|
|
"apiVersion":"v1beta3",
|
|
"metadata":{
|
|
"name":"guestbook",
|
|
"labels":{
|
|
"name":"guestbook"
|
|
}
|
|
},
|
|
"spec":{
|
|
"replicas":3,
|
|
"selector":{
|
|
"name":"guestbook"
|
|
},
|
|
"template":{
|
|
"metadata":{
|
|
"labels":{
|
|
"name":"guestbook"
|
|
}
|
|
},
|
|
"spec":{
|
|
"containers":[
|
|
{
|
|
"image":"kubernetes/guestbook:v2",
|
|
"name":"guestbook",
|
|
"ports":[
|
|
{
|
|
"name":"http-server",
|
|
"containerPort":3000,
|
|
"protocol":"TCP"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|