Add Listen Port to Ingress
This commit is contained in:
parent
b01ec6a09a
commit
72b40a3c66
5 changed files with 18 additions and 3 deletions
|
|
@ -15,7 +15,7 @@ type: application
|
|||
# This is the chart version. This version number should be incremented each time you make changes
|
||||
# to the chart and its templates, including the app version.
|
||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||
version: 0.1.0
|
||||
version: 0.1.1
|
||||
|
||||
# This is the version number of the application being deployed. This version number should be
|
||||
# incremented each time you make changes to the application. Versions are not expected to
|
||||
|
|
|
|||
|
|
@ -43,6 +43,11 @@ spec:
|
|||
- name: stats
|
||||
containerPort: 1936
|
||||
hostPort: 1936
|
||||
{{ range .Values.listen_extra_ports }}
|
||||
- name: extra_{{ . }}
|
||||
containerPort: {{ . }}
|
||||
hostPort: {{ . }}
|
||||
{{- end }}
|
||||
resources:
|
||||
{{- toYaml .Values.resources | nindent 12 }}
|
||||
env:
|
||||
|
|
|
|||
|
|
@ -58,6 +58,8 @@ easyhaproxy:
|
|||
easyhaproxy: DEBUG
|
||||
haproxy: DEBUG
|
||||
|
||||
listen_extra_ports: []
|
||||
|
||||
# Make sure to create this
|
||||
masterNode:
|
||||
label: easyhaproxy/node
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue