File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 2929 env :
3030 - name : KUBERNETES_CLUSTER_DOMAIN
3131 value : {{ quote .Values.kubernetesClusterDomain }}
32+ - name : POD_IP
33+ valueFrom :
34+ fieldRef :
35+ fieldPath : status.podIP
3236 image : {{ .Values.controllerManager.manager.image.repository }}:{{ .Values.controllerManager.manager.image.tag
3337 | default .Chart.AppVersion }}
3438 livenessProbe :
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ controllerManager:
55 - --metrics-bind-address=:8443
66 - --leader-elect
77 - --namespace=llmaz-system
8+ - --enable-serverless
9+ - --pod-ip=$(POD_IP)
810 containerSecurityContext :
911 allowPrivilegeEscalation : false
1012 capabilities :
Original file line number Diff line number Diff line change @@ -11,6 +11,16 @@ rules:
1111 verbs :
1212 - get
1313 - list
14+ - apiGroups :
15+ - " "
16+ resources :
17+ - endpoints
18+ verbs :
19+ - get
20+ - list
21+ - patch
22+ - update
23+ - watch
1424- apiGroups :
1525 - " "
1626 resources :
You can’t perform that action at this time.
0 commit comments