[bitnami/wildfly] fix: 🐛 🔒 Expose missing ports in deployment spec (#25140)

Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>
This commit is contained in:
Javier J. Salmerón-García
2024-04-15 15:02:09 +02:00
committed by GitHub
parent b7c0bba2d5
commit 35897ea371
4 changed files with 10 additions and 3 deletions

View File

@@ -133,6 +133,8 @@ spec:
key: wildfly-password
- name: WILDFLY_HTTP_PORT_NUMBER
value: {{ .Values.containerPorts.http | quote }}
- name: WILDFLY_HTTPS_PORT_NUMBER
value: {{ .Values.containerPorts.https | quote }}
- name: WILDFLY_MANAGEMENT_PORT_NUMBER
value: {{ .Values.containerPorts.mgmt | quote }}
- name: WILDFLY_SERVER_LISTEN_ADDRESS
@@ -156,6 +158,8 @@ spec:
ports:
- name: http
containerPort: {{ .Values.containerPorts.http }}
- name: https
containerPort: {{ .Values.containerPorts.https }}
- name: mgmt
containerPort: {{ .Values.containerPorts.mgmt }}
{{- if .Values.extraContainerPorts }}