feat(helm): add externalIPs to chart (#5201)
* fix(helm): add externalIPs to chart * Update values.yaml * Update service.yaml * Update README.md * Update Chart.yaml * do not update helm version
This commit is contained in:
parent
6b3cfd7c5d
commit
bcf2256dac
|
@ -63,6 +63,7 @@ The following table lists the configurable parameters of the emqx chart and thei
|
||||||
| `service.nodePorts.dashboard` | Kubernetes node port for dashboard. |nil|
|
| `service.nodePorts.dashboard` | Kubernetes node port for dashboard. |nil|
|
||||||
| `service.loadBalancerIP` | loadBalancerIP for Service | nil |
|
| `service.loadBalancerIP` | loadBalancerIP for Service | nil |
|
||||||
| `service.loadBalancerSourceRanges` | Address(es) that are allowed when service is LoadBalancer | [] |
|
| `service.loadBalancerSourceRanges` | Address(es) that are allowed when service is LoadBalancer | [] |
|
||||||
|
| `service.externalIPs` | ExternalIPs for the service | [] |
|
||||||
| `service.annotations` | Service annotations | {}(evaluated as a template)|
|
| `service.annotations` | Service annotations | {}(evaluated as a template)|
|
||||||
| `ingress.dashboard.enabled` | Enable ingress for EMQX Dashboard | false |
|
| `ingress.dashboard.enabled` | Enable ingress for EMQX Dashboard | false |
|
||||||
| `ingress.dashboard.path` | Ingress path for EMQX Dashboard | / |
|
| `ingress.dashboard.path` | Ingress path for EMQX Dashboard | / |
|
||||||
|
|
|
@ -21,6 +21,9 @@ spec:
|
||||||
{{- if .Values.service.loadBalancerSourceRanges }}
|
{{- if .Values.service.loadBalancerSourceRanges }}
|
||||||
loadBalancerSourceRanges: {{- toYaml .Values.service.loadBalancerSourceRanges | nindent 4 }}
|
loadBalancerSourceRanges: {{- toYaml .Values.service.loadBalancerSourceRanges | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.service.externalIPs }}
|
||||||
|
externalIPs: {{- toYaml .Values.service.externalIPs | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
ports:
|
ports:
|
||||||
- name: mqtt
|
- name: mqtt
|
||||||
|
|
|
@ -145,6 +145,9 @@ service:
|
||||||
## - 10.10.10.0/24
|
## - 10.10.10.0/24
|
||||||
##
|
##
|
||||||
loadBalancerSourceRanges: []
|
loadBalancerSourceRanges: []
|
||||||
|
## Set the ExternalIPs
|
||||||
|
##
|
||||||
|
externalIPs: []
|
||||||
## Provide any additional annotations which may be required. Evaluated as a template
|
## Provide any additional annotations which may be required. Evaluated as a template
|
||||||
##
|
##
|
||||||
annotations: {}
|
annotations: {}
|
||||||
|
|
Loading…
Reference in New Issue