Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
26aaa25c46
commit
d1761476bc
|
@ -1,4 +0,0 @@
|
|||
|
||||
|
||||
## [omada-controller-8.0.2](https://github.com/truecharts/charts/compare/omada-controller-8.0.1...omada-controller-8.0.2) (2022-11-15)
|
||||
|
|
@ -18,7 +18,7 @@ name: omada-controller
|
|||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/stable/omada-controller
|
||||
- https://github.com/mbentley/docker-omada-controller
|
||||
version: 8.0.2
|
||||
version: 8.0.3
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [omada-controller-8.0.3](https://github.com/truecharts/charts/compare/omada-controller-8.0.2...omada-controller-8.0.3) (2022-11-15)
|
||||
|
||||
### Fix
|
||||
|
||||
- Re-add conditional nodeport for Ingress ([#4431](https://github.com/truecharts/charts/issues/4431))
|
||||
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/omada-controller
|
||||
tag: 5.5@sha256:394fa05a26de61a45f8b364c69b4253443e46e0ffd02dc68453fd020d73037e1
|
||||
tag: 5.6@sha256:1524a2ec4b36faa37ba5e0716fccc488ed73cede848646bc528470bd292967cd
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
securityContext:
|
||||
|
@ -19,6 +19,14 @@ env:
|
|||
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 }}"
|
||||
|
||||
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:
|
||||
main:
|
||||
ports:
|
Loading…
Reference in New Issue