Skip to content

Instantly share code, notes, and snippets.

@dipak-pawar
Created December 20, 2016 10:42
Show Gist options
  • Save dipak-pawar/0a32ef95113179194109fbdeab37e128 to your computer and use it in GitHub Desktop.
Save dipak-pawar/0a32ef95113179194109fbdeab37e128 to your computer and use it in GitHub Desktop.
{
"apiVersion" : "v1",
"kind" : "ReplicationController",
"metadata" : {
"name" : "hello-world-controller"
},
"spec" : {
"replicas" : 1,
"selector" : {
"app" : "hello-world"
},
"template" : {
"metadata" : {
"labels" : {
"app" : "hello-world"
}
},
"spec" : {
"containers" : [ {
"image" : "dockercloud/hello-world",
"name" : "hello-world-container",
"ports" : [ {
"name" : "http",
"protocol" : "TCP",
"containerPort" : 8080
} ]
} ]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment