File tree Expand file tree Collapse file tree 5 files changed +10
-20
lines changed
blob-csi-driver/templates Expand file tree Collapse file tree 5 files changed +10
-20
lines changed Original file line number Diff line number Diff line change 91
91
args :
92
92
- --csi-address=/csi/csi.sock
93
93
- --probe-timeout=3s
94
- - --health-port= {{ .Values.controller.livenessProbe.healthPort }}
94
+ - --http-endpoint=localhost: {{ .Values.controller.livenessProbe.healthPort }}
95
95
imagePullPolicy : {{ .Values.image.livenessProbe.pullPolicy }}
96
96
volumeMounts :
97
97
- name : socket-dir
@@ -114,17 +114,15 @@ spec:
114
114
- " --cloud-config-secret-namespace={{ .Values.controller.cloudConfigSecretNamespace }}"
115
115
- " --allow-empty-cloud-config={{ .Values.controller.allowEmptyCloudConfig }}"
116
116
ports :
117
- - containerPort : {{ .Values.controller.livenessProbe.healthPort }}
118
- name : healthz
119
- protocol : TCP
120
117
- containerPort : {{ .Values.controller.metricsPort }}
121
118
name : metrics
122
119
protocol : TCP
123
120
livenessProbe :
124
121
failureThreshold : 5
125
122
httpGet :
123
+ host : localhost
126
124
path : /healthz
127
- port : healthz
125
+ port : {{ .Values.controller.livenessProbe.healthPort }}
128
126
initialDelaySeconds : 30
129
127
timeoutSeconds : 10
130
128
periodSeconds : 30
Original file line number Diff line number Diff line change @@ -173,15 +173,12 @@ spec:
173
173
- " --mount-permissions={{ .Values.node.mountPermissions }}"
174
174
- " --allow-inline-volume-key-access-with-idenitity={{ .Values.node.allowInlineVolumeKeyAccessWithIdentity }}"
175
175
- " --enable-aznfs-mount={{ .Values.node.enableAznfsMount }}"
176
- ports :
177
- - containerPort : {{ .Values.node.livenessProbe.healthPort }}
178
- name : healthz
179
- protocol : TCP
180
176
livenessProbe :
181
177
failureThreshold : 5
182
178
httpGet :
179
+ host : localhost
183
180
path : /healthz
184
- port : healthz
181
+ port : {{ .Values.node.livenessProbe.healthPort }}
185
182
initialDelaySeconds : 30
186
183
timeoutSeconds : 10
187
184
periodSeconds : 30
Original file line number Diff line number Diff line change 62
62
args :
63
63
- --csi-address=/csi/csi.sock
64
64
- --probe-timeout=3s
65
- - --health-port= 29632
65
+ - --http-endpoint=localhost: 29632
66
66
volumeMounts :
67
67
- name : socket-dir
68
68
mountPath : /csi
@@ -81,17 +81,15 @@ spec:
81
81
- " --metrics-address=0.0.0.0:29634"
82
82
- " --user-agent-suffix=OSS-kubectl"
83
83
ports :
84
- - containerPort : 29632
85
- name : healthz
86
- protocol : TCP
87
84
- containerPort : 29634
88
85
name : metrics
89
86
protocol : TCP
90
87
livenessProbe :
91
88
failureThreshold : 5
92
89
httpGet :
90
+ host : localhost
93
91
path : /healthz
94
- port : healthz
92
+ port : 29632
95
93
initialDelaySeconds : 30
96
94
timeoutSeconds : 10
97
95
periodSeconds : 30
Original file line number Diff line number Diff line change @@ -129,15 +129,12 @@ spec:
129
129
- " --blobfuse-proxy-endpoint=$(BLOBFUSE_PROXY_ENDPOINT)"
130
130
- " --nodeid=$(KUBE_NODE_NAME)"
131
131
- " --user-agent-suffix=OSS-kubectl"
132
- ports :
133
- - containerPort : 29633
134
- name : healthz
135
- protocol : TCP
136
132
livenessProbe :
137
133
failureThreshold : 5
138
134
httpGet :
135
+ host : localhost
139
136
path : /healthz
140
- port : healthz
137
+ port : 29633
141
138
initialDelaySeconds : 30
142
139
timeoutSeconds : 10
143
140
periodSeconds : 30
You can’t perform that action at this time.
0 commit comments