Files
kubernetes/cluster/images/hyperkube/kube-proxy.json
2015-12-11 15:53:44 +01:00

25 lines
534 B
JSON

{
"apiVersion": "v1",
"kind": "Pod",
"metadata": {"name":"k8s-proxy"},
"spec": {
"hostNetwork": true,
"containers": [
{
"name": "kube-proxy",
"image": "gcr.io/google_containers/hyperkube-ARCH:VERSION",
"command": [
"/hyperkube",
"proxy",
"--master=http://127.0.0.1:8080",
"--v=2",
"--resource-container=\"\""
],
"securityContext": {
"privileged": true
}
}
]
}
}