fix(Omada): Re-add conditional nodeport for Ingress (#4431)
* fix(Omada): Re-add condition nodeport * manual update to 5.6 * fix probes in ingress * Update charts/stable/omada-controller/Chart.yaml Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> * whooops Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
This commit is contained in:
co-authored by
Stavros Kois
parent
37fdc30959
commit
b7afe30148
@@ -18,7 +18,7 @@ name: omada-controller
|
|||||||
sources:
|
sources:
|
||||||
- https://github.com/truecharts/charts/tree/master/charts/stable/omada-controller
|
- https://github.com/truecharts/charts/tree/master/charts/stable/omada-controller
|
||||||
- https://github.com/mbentley/docker-omada-controller
|
- https://github.com/mbentley/docker-omada-controller
|
||||||
version: 8.0.2
|
version: 8.0.3
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- media
|
- media
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
image:
|
image:
|
||||||
repository: tccr.io/truecharts/omada-controller
|
repository: tccr.io/truecharts/omada-controller
|
||||||
tag: 5.5@sha256:394fa05a26de61a45f8b364c69b4253443e46e0ffd02dc68453fd020d73037e1
|
tag: 5.6@sha256:1524a2ec4b36faa37ba5e0716fccc488ed73cede848646bc528470bd292967cd
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
securityContext:
|
securityContext:
|
||||||
@@ -19,6 +19,14 @@ env:
|
|||||||
MANAGE_HTTPS_PORT: "{{ if .Values.ingress.main.enabled }}443{{ else }}{{ .Values.service.main.ports.main.port }}{{ end }}"
|
MANAGE_HTTPS_PORT: "{{ if .Values.ingress.main.enabled }}443{{ else }}{{ .Values.service.main.ports.main.port }}{{ end }}"
|
||||||
PORTAL_HTTPS_PORT: "{{ .Values.service.comm.ports.comm.port }}"
|
PORTAL_HTTPS_PORT: "{{ .Values.service.comm.ports.comm.port }}"
|
||||||
|
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
port: "{{ if .Values.ingress.main.enabled }}443{{ else }}{{ .Values.service.main.ports.main.port }}{{ end }}"
|
||||||
|
readiness:
|
||||||
|
port: "{{ if .Values.ingress.main.enabled }}443{{ else }}{{ .Values.service.main.ports.main.port }}{{ end }}"
|
||||||
|
startup:
|
||||||
|
port: "{{ if .Values.ingress.main.enabled }}443{{ else }}{{ .Values.service.main.ports.main.port }}{{ end }}"
|
||||||
|
|
||||||
service:
|
service:
|
||||||
main:
|
main:
|
||||||
ports:
|
ports:
|
||||||
|
|||||||
Reference in New Issue
Block a user