Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified charts/latest/csi-driver-nfs-v0.0.0.tgz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ spec:
args:
- --csi-address=/csi/csi.sock
- --probe-timeout=3s
- --http-endpoint=localhost:{{ .Values.controller.livenessProbe.healthPort }}
- --http-endpoint=127.0.0.1:{{ .Values.controller.livenessProbe.healthPort }}
- --v=2
imagePullPolicy: {{ .Values.image.livenessProbe.pullPolicy }}
volumeMounts:
Expand Down Expand Up @@ -194,7 +194,6 @@ spec:
livenessProbe:
failureThreshold: 5
httpGet:
host: localhost
path: /healthz
port: {{ .Values.controller.livenessProbe.healthPort }}
initialDelaySeconds: 30
Expand Down
6 changes: 2 additions & 4 deletions charts/latest/csi-driver-nfs/templates/csi-nfs-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ spec:
args:
- --csi-address=/csi/csi.sock
- --probe-timeout=3s
- --http-endpoint=localhost:{{ .Values.node.livenessProbe.healthPort }}
- --http-endpoint=127.0.0.1:{{ .Values.node.livenessProbe.healthPort }}
- --v=2
imagePullPolicy: {{ .Values.image.livenessProbe.pullPolicy }}
volumeMounts:
Expand All @@ -75,7 +75,7 @@ spec:
- --csi-address=/csi/csi.sock
- --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)
{{- if .Values.nodeDriverRegistrar.livenessProbe.enabled }}
- --http-endpoint=localhost:{{ .Values.nodeDriverRegistrar.healthPort }}
- --http-endpoint=127.0.0.1:{{ .Values.nodeDriverRegistrar.healthPort }}
{{- end }}
env:
- name: DRIVER_REG_SOCK_PATH
Expand All @@ -97,7 +97,6 @@ spec:
protocol: TCP
livenessProbe:
httpGet:
host: localhost
path: /healthz
port: healthz
initialDelaySeconds: {{ .Values.nodeDriverRegistrar.livenessProbe.initialDelaySeconds }}
Expand Down Expand Up @@ -139,7 +138,6 @@ spec:
livenessProbe:
failureThreshold: 5
httpGet:
host: localhost
path: /healthz
port: {{ .Values.node.livenessProbe.healthPort }}
initialDelaySeconds: 30
Expand Down