Skip to content

Commit 5c0033a

Browse files
mayastor-borsmichaelbeaumont
mayastor-bors
andcommitted
chore(bors): merge pull request #552
552: feat(helm): support IPv6 Pod IPs r=michaelbeaumont a=michaelbeaumont Incorporates all the changes from openebs/mayastor#1731 into the chart. Depends on the PRs there. ## Description Use the new separated IP, port args. ## Motivation and Context See the linked issue. ## Regression No ## How Has This Been Tested? Hasn't yet ## Types of changes <! Co-authored-by: Mike Beaumont <[email protected]>
2 parents 599683a + f2dd265 commit 5c0033a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

chart/templates/mayastor/agents/ha/ha-node-daemonset.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ spec:
7272
args:
7373
- "--node-name=$(MY_NODE_NAME)"
7474
- "--csi-socket={{ default .Values.csi.node.pluginMountPath .Values.csi.node.pluginMounthPath }}/{{ .Values.csi.node.socketPath }}"
75-
- "--grpc-endpoint=$(MY_POD_IP):50053"
75+
- "--grpc-ip=$(MY_POD_IP)"
76+
- "--grpc-port=50053"
7677
- "--cluster-agent=https://{{ .Release.Name }}-agent-core:50052"{{ if .Values.base.jaeger.enabled }}
7778
- "--jaeger={{ include "jaeger_url" . }}"{{ end }}{{ if .Values.eventing.enabled }}
7879
- "--events-url=nats://{{ .Release.Name }}-nats:4222"{{ end }}

chart/templates/mayastor/csi/csi-node-daemonset.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ spec:
9090
- "--node-name=$(MY_NODE_NAME)"
9191
- "--rest-endpoint=http://{{ .Release.Name }}-api-rest:8081"
9292
- "--enable-registration"
93-
- "--grpc-endpoint=$(MY_POD_IP):10199"{{ if .Values.csi.node.nvme.io_timeout }}
93+
- "--grpc-ip=$(MY_POD_IP)"
94+
- "--grpc-port=10199"{{ if .Values.csi.node.nvme.io_timeout }}
9495
- "--nvme-io-timeout={{ .Values.csi.node.nvme.io_timeout }}"
9596
- "--nvme-core-io-timeout={{ .Values.csi.node.nvme.io_timeout }}"{{ else }}
9697
- "--nvme-io-timeout={{ .Values.io_engine.nvme.ioTimeout }}10s"

chart/templates/mayastor/io/io-engine-daemonset.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ spec:
9898
# For example -l 1,2,10-20 means use core 1, 2, 10 to 20.
9999
# Note: Ensure that the CPU resources are updated accordingly.
100100
# If you use 2 CPUs, the CPU: field should also read 2.
101-
- "-g$(MY_POD_IP)"
101+
- "--grpc-ip=$(MY_POD_IP)"
102102
- "-N$(MY_NODE_NAME)"
103103
- "-Rhttps://{{ .Release.Name }}-agent-core:50051"
104104
- "-y/var/local/{{ .Release.Name }}/io-engine/config.yaml"

0 commit comments

Comments
 (0)