68 lines
2.0 KiB
YAML
68 lines
2.0 KiB
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
labels:
|
|
addonmanager.kubernetes.io/mode: Reconcile
|
|
k8s-app: konnectivity-agent
|
|
namespace: kube-system
|
|
name: konnectivity-agent
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
k8s-app: konnectivity-agent
|
|
updateStrategy:
|
|
type: RollingUpdate
|
|
template:
|
|
metadata:
|
|
labels:
|
|
k8s-app: konnectivity-agent
|
|
spec:
|
|
priorityClassName: system-cluster-critical
|
|
tolerations:
|
|
- key: "CriticalAddonsOnly"
|
|
operator: "Exists"
|
|
nodeSelector:
|
|
kubernetes.io/os: linux
|
|
containers:
|
|
- image: k8s.gcr.io/kas-network-proxy/proxy-agent:v0.0.14
|
|
name: konnectivity-agent
|
|
command: ["/proxy-agent"]
|
|
args: [
|
|
"--logtostderr=true",
|
|
"--ca-cert=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt",
|
|
"--proxy-server-host=__APISERVER_IP__",
|
|
"--proxy-server-port=8132",
|
|
"--service-account-token-path=/var/run/secrets/tokens/konnectivity-agent-token"
|
|
]
|
|
env:
|
|
- name: POD_NAME
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: metadata.name
|
|
- name: POD_NAMESPACE
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: metadata.namespace
|
|
resources:
|
|
limits:
|
|
cpu: 50m
|
|
memory: 30Mi
|
|
volumeMounts:
|
|
- mountPath: /var/run/secrets/tokens
|
|
name: konnectivity-agent-token
|
|
livenessProbe:
|
|
httpGet:
|
|
port: 8093
|
|
path: /healthz
|
|
initialDelaySeconds: 15
|
|
timeoutSeconds: 15
|
|
serviceAccountName: konnectivity-agent
|
|
volumes:
|
|
- name: konnectivity-agent-token
|
|
projected:
|
|
sources:
|
|
- serviceAccountToken:
|
|
path: konnectivity-agent-token
|
|
audience: system:konnectivity-server
|