Ingress: Allow status port to be customised
This PS updates the ingress chart to allow the status pport to be changed. Change-Id: Ia38223c56806f6113622a809e792b4fedd010d87 Signed-off-by: Pete Birley <pete@port.direct>
This commit is contained in:
parent
5d356f9265
commit
f3e1fa4e72
@ -27,6 +27,7 @@ function start () {
|
||||
{{- end }}
|
||||
--http-port=${PORT_HTTP} \
|
||||
--https-port=${PORT_HTTPS} \
|
||||
--status-port=${PORT_STATUS} \
|
||||
--election-id=${RELEASE_NAME} \
|
||||
--ingress-class=${INGRESS_CLASS} \
|
||||
--default-backend-service=${POD_NAMESPACE}/${ERROR_PAGE_SERVICE} \
|
||||
|
@ -255,6 +255,8 @@ spec:
|
||||
value: {{ tuple "ingress" "internal" "http" . | include "helm-toolkit.endpoints.endpoint_port_lookup" | quote }}
|
||||
- name: PORT_HTTPS
|
||||
value: {{ tuple "ingress" "internal" "https" . | include "helm-toolkit.endpoints.endpoint_port_lookup" | quote }}
|
||||
- name: PORT_STATUS
|
||||
value: {{ tuple "ingress" "internal" "status" . | include "helm-toolkit.endpoints.endpoint_port_lookup" | quote }}
|
||||
- name: RELEASE_NAME
|
||||
value: {{ .Release.Name | quote }}
|
||||
- name: ERROR_PAGE_SERVICE
|
||||
@ -269,6 +271,10 @@ spec:
|
||||
{{- if .Values.network.host_namespace }}
|
||||
hostPort: {{ tuple "ingress" "internal" "https" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
|
||||
{{- end }}
|
||||
- containerPort: {{ tuple "ingress" "internal" "status" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
|
||||
{{- if .Values.network.host_namespace }}
|
||||
hostPort: {{ tuple "ingress" "internal" "status" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
|
||||
{{- end }}
|
||||
command:
|
||||
- /tmp/ingress-controller.sh
|
||||
- start
|
||||
|
@ -39,6 +39,10 @@ spec:
|
||||
port: {{ tuple "ingress" "internal" "https" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
|
||||
protocol: TCP
|
||||
targetPort: {{ tuple "ingress" "internal" "https" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
|
||||
- name: status
|
||||
port: {{ tuple "ingress" "internal" "status" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
|
||||
protocol: TCP
|
||||
targetPort: {{ tuple "ingress" "internal" "status" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
|
||||
{{- if not (empty $envAll.Values.conf.services.tcp) }}
|
||||
{{range $key, $value := $envAll.Values.conf.services.tcp -}}
|
||||
- name: {{ cat ((( $value | split "/" )._1 | split ":" )._0 | trunc 8 ) $key | nospace | quote }}
|
||||
|
@ -162,6 +162,8 @@ endpoints:
|
||||
default: 80
|
||||
https:
|
||||
default: 443
|
||||
status:
|
||||
default: 18080
|
||||
ingress_exporter:
|
||||
namespace: null
|
||||
hosts:
|
||||
|
Loading…
Reference in New Issue
Block a user