Skip to content

Instantly share code, notes, and snippets.

@tonylambiris
Created March 7, 2016 17:02
Show Gist options
  • Save tonylambiris/7878ca3cd41f53a2ad8c to your computer and use it in GitHub Desktop.
Save tonylambiris/7878ca3cd41f53a2ad8c to your computer and use it in GitHub Desktop.
kuberenetes guestbook controller
{
"kind":"ReplicationController",
"apiVersion":"v1",
"metadata":{
"name":"guestbook",
"namespace": "default",
"labels":{
"app":"guestbook"
}
},
"spec":{
"replicas":1,
"selector":{
"app":"guestbook"
},
"template":{
"metadata":{
"labels":{
"app":"guestbook"
}
},
"spec":{
"containers":[
{
"name":"guestbook",
"image":"kubernetes/guestbook:v2",
"ports":[
{
"name":"http-server",
"containerPort":3000
}
]
}
]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment