Skip to content

Commit

Permalink
feat(fmt_helm): silence logging
Browse files Browse the repository at this point in the history
Signed-off-by: Abhilash Shetty <abhilash.shetty@datacore.com>
  • Loading branch information
abhilashshetty04 committed Mar 14, 2024
1 parent c038b42 commit ac42629
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions chart/templates/mayastor/agents/ha/ha-node-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ spec:
value: "1"
args:
- "--node-name=$(MY_NODE_NAME)"
- "--csi-socket={{ .Values.csi.node.pluginMounthPath }}/{{ .Values.csi.node.socketPath }}"
- "--csi-socket={{ .Values.csi.node.pluginMountPath }}/{{ .Values.csi.node.socketPath }}"
- "--grpc-endpoint=$(MY_POD_IP):50053"
- "--cluster-agent=https://{{ .Release.Name }}-agent-core:50052"{{ if .Values.base.jaeger.enabled }}
- "--jaeger={{ .Values.base.jaeger.agent.name }}:{{ .Values.base.jaeger.agent.port }}"{{ end }}{{ if .Values.eventing.enabled }}
Expand All @@ -86,7 +86,7 @@ spec:
- name: run-udev
mountPath: /run/udev
- name: plugin-dir
mountPath: {{ .Values.csi.node.pluginMounthPath }}
mountPath: {{ .Values.csi.node.pluginMountPath }}
resources:
limits:
cpu: {{ .Values.agents.ha.node.resources.limits.cpu | quote }}
Expand Down
6 changes: 3 additions & 3 deletions chart/templates/mayastor/csi/csi-node-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ spec:
- name: RUST_BACKTRACE
value: "1"
args:
- "--csi-socket={{ .Values.csi.node.pluginMounthPath }}/{{ .Values.csi.node.socketPath }}"
- "--csi-socket={{ .Values.csi.node.pluginMountPath }}/{{ .Values.csi.node.socketPath }}"
- "--node-name=$(MY_NODE_NAME)"
- "--rest-endpoint=http://{{ .Release.Name }}-api-rest:8081"
- "--enable-registration"
Expand Down Expand Up @@ -120,11 +120,11 @@ spec:
image: "{{ .Values.csi.image.registry }}/{{ .Values.csi.image.repo }}/csi-node-driver-registrar:{{ .Values.csi.image.registrarTag }}"
imagePullPolicy: {{ .Values.csi.image.pullPolicy }}
args:
- "--csi-address={{ .Values.csi.node.pluginMounthPath }}/{{ .Values.csi.node.socketPath }}"
- "--csi-address={{ .Values.csi.node.pluginMountPath }}/{{ .Values.csi.node.socketPath }}"
- "--kubelet-registration-path={{ .Values.csi.node.kubeletDir }}/plugins/io.openebs.mayastor/csi.sock"
volumeMounts:
- name: plugin-dir
mountPath: {{ .Values.csi.node.pluginMounthPath }}
mountPath: {{ .Values.csi.node.pluginMountPath }}
- name: registration-dir
mountPath: /registration
resources:
Expand Down

0 comments on commit ac42629

Please sign in to comment.