Skip to content

Commit 9d13a6e

Browse files
authored
Merge pull request #1897 from andyzhangx/add-node-metrics2-1.26
[release-1.26] feat: add metrics on node config
2 parents 5c9f787 + 2722acc commit 9d13a6e

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed
16 Bytes
Binary file not shown.

charts/latest/blob-csi-driver/templates/csi-blob-node.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,10 @@ spec:
183183
- "--allow-inline-volume-key-access-with-idenitity={{ .Values.node.allowInlineVolumeKeyAccessWithIdentity }}"
184184
- "--enable-aznfs-mount={{ .Values.node.enableAznfsMount }}"
185185
- "--metrics-address=0.0.0.0:{{ .Values.node.metricsPort }}"
186+
ports:
187+
- containerPort: {{ .Values.node.metricsPort }}
188+
name: metrics
189+
protocol: TCP
186190
livenessProbe:
187191
failureThreshold: 5
188192
httpGet:

deploy/csi-blob-node.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@ spec:
134134
- "--user-agent-suffix=OSS-kubectl"
135135
- "--metrics-address=0.0.0.0:29635"
136136
- "--enable-aznfs-mount=true"
137+
ports:
138+
- containerPort: 29635
139+
name: metrics
140+
protocol: TCP
137141
livenessProbe:
138142
failureThreshold: 5
139143
httpGet:

0 commit comments

Comments
 (0)