41 lines
855 B
JSON
41 lines
855 B
JSON
{
|
|
"kind":"ReplicationController",
|
|
"apiVersion":"v1",
|
|
"metadata":{
|
|
"name":"agnhost-primary",
|
|
"labels":{
|
|
"app":"agnhost",
|
|
"role":"primary"
|
|
}
|
|
},
|
|
"spec":{
|
|
"replicas":1,
|
|
"selector":{
|
|
"app":"agnhost",
|
|
"role":"primary"
|
|
},
|
|
"template":{
|
|
"metadata":{
|
|
"labels":{
|
|
"app":"agnhost",
|
|
"role":"primary"
|
|
}
|
|
},
|
|
"spec":{
|
|
"containers":[
|
|
{
|
|
"name":"agnhost-primary",
|
|
"image": "{{.AgnhostImage}}",
|
|
"ports":[
|
|
{
|
|
"name":"agnhost-server",
|
|
"containerPort":6379
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|