Skip to content

Instantly share code, notes, and snippets.

@tonylambiris
Created March 7, 2016 17:00
Show Gist options
  • Save tonylambiris/af419a8e8119285d3a31 to your computer and use it in GitHub Desktop.
Save tonylambiris/af419a8e8119285d3a31 to your computer and use it in GitHub Desktop.
kuberenetes guestbook service
{
"kind":"Service",
"apiVersion":"v1",
"metadata":{
"name":"guestbook",
"namespace": "default",
"labels":{
"app":"guestbook"
}
},
"spec":{
"ports": [
{
"port":3000,
"targetPort":"http-server"
}
],
"selector":{
"app":"guestbook"
},
"type": "LoadBalancer"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment