Skip to content

Instantly share code, notes, and snippets.

@iocanel
Last active August 29, 2015 14:23
Show Gist options
  • Save iocanel/390b4c4c76ccc68f9a42 to your computer and use it in GitHub Desktop.
Save iocanel/390b4c4c76ccc68f9a42 to your computer and use it in GitHub Desktop.
A mysql replication controller example
{
"apiVersion" : "v1beta3",
"kind" : "ReplicationController",
"metadata" : {
"labels" : {
"name" : "mysql"
},
"name" : "mysql"
},
"spec" : {
"replicas" : 1,
"selector" : {
"name" : "mysql"
},
"template" : {
"metadata" : {
"labels" : {
"name" : "mysql"
}
},
"spec" : {
"containers" : [ {
"image" : "mysql",
"imagePullPolicy" : "IfNotPresent",
"name" : "mysql",
"ports" : [ {
"containerPort" : 3306,
"name" : "mysql"
} ]
}]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment