Unverified Commit cf7abeaa authored by yuta's avatar yuta Committed by GitHub

chore(helm): add loadBalancerIP param (#5704)

parent 17c11b3f
......@@ -11,6 +11,9 @@ metadata:
{{- end }}
spec:
type: {{.Values.service.type}}
{{- if eq .Values.service.type "LoadBalancer" }}
loadBalancerIP: {{ default "" .Values.service.loadBalancerIP }}
{{- end }}
ports:
- port: {{ default "80" .Values.service.port}}
targetPort: http
......
......@@ -61,6 +61,7 @@ service:
# type: LoadBalancer
# httpsPort: 443
# annotations: {}
# loadBalancerIP: 172.16.0.1
ingress:
enabled: true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment