change ports

master
Marius Ensrud 5 years ago
parent 5bae553587
commit 20e64f6381

@ -40,8 +40,11 @@ spec:
- name: manage - name: manage
containerPort: 8088 containerPort: 8088
protocol: TCP protocol: TCP
- name: portal - name: manage-ssl
containerPort: 8888 containerPort: 8043
protocol: TCP
- name: portal-ssl
containerPort: 8843
protocol: TCP protocol: TCP
resources: resources:
{{- toYaml .Values.resources | nindent 12 }} {{- toYaml .Values.resources | nindent 12 }}

@ -11,10 +11,14 @@ spec:
targetPort: 8088 targetPort: 8088
protocol: TCP protocol: TCP
name: manage name: manage
- port: {{ .Values.service.portal.port }} - port: {{ .Values.service.manage-ssl.port }}
targetPort: 8888 targetPort: 8043
protocol: TCP protocol: TCP
name: portal name: manage-ssl
- port: {{ .Values.service.portal-ssl.port }}
targetPort: 8843
protocol: TCP
name: manage-ssl
{{- if .Values.service.externalIPs.enabled }} {{- if .Values.service.externalIPs.enabled }}
externalTrafficPolicy: Local externalTrafficPolicy: Local
externalIPs:{{- range .Values.service.externalIPs.ip }} externalIPs:{{- range .Values.service.externalIPs.ip }}

@ -46,11 +46,13 @@ securityContext: {}
service: service:
enabled: true enabled: true
type: ClusterIP type: NodePort
manage: manage:
port: 8088 port: 8088
portal: manage-ssl:
port: 8888 port: 8043
portal-ssl:
port: 8843
externalIPs: externalIPs:
enabled: false enabled: false

Loading…
Cancel
Save