Update examples/phabricator for v1beta3

This commit is contained in:
BC Broussard
2015-04-23 08:27:25 -07:00
parent f9156c281a
commit 715bee6b3a
4 changed files with 160 additions and 116 deletions

View File

@@ -1,10 +1,22 @@
{
"apiVersion": "v1beta1",
"kind": "Service",
"id": "phabricator",
"port": 80,
"containerPort": "http-server",
"selector": { "name": "phabricator" },
"createExternalLoadBalancer": true,
"publicIPs": ["107.178.210.6"]
}
"apiVersion": "v1beta3",
"metadata": {
"name": "phabricator"
},
"spec": {
"ports": [
{
"port": 80,
"targetPort": "http-server"
}
],
"selector": {
"name": "phabricator"
},
"createExternalLoadBalancer": true,
"publicIPs": [
"107.178.210.6"
]
}
}