mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-11-01 22:34:14 +00:00
25 lines
534 B
JSON
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
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|