feat: enable hostPort on nginx ingress on rossby

This commit is contained in:
2025-09-19 17:03:05 +02:00
parent c1c824b487
commit b836774f85
3 changed files with 9 additions and 7 deletions
+1
View File
@@ -14,6 +14,7 @@ clusterConfig:
ingress_nodes: ["rossby, rossby-manage" ] ingress_nodes: ["rossby, rossby-manage" ]
ingress_replica_count: 2 ingress_replica_count: 2
ingress_clusterissuer: ca-issuer ingress_clusterissuer: ca-issuer
ingress_hostport: true
fileserver: "172.16.239.222" fileserver: "172.16.239.222"
acme_email: "acme@oceanbox.io" acme_email: "acme@oceanbox.io"
oidc: oidc:
+1
View File
@@ -20,6 +20,7 @@ clusterConfig:
- 172.16.0.0/12 - 172.16.0.0/12
- 192.168.0.0/16 - 192.168.0.0/16
- 172.19.255.0/24 - 172.19.255.0/24
ingress_hostport: false
oidc: [] oidc: []
#- name: azure #- name: azure
# provider: azuread # provider: azuread
@@ -61,19 +61,19 @@ controller:
service: service:
externalTrafficPolicy: Local externalTrafficPolicy: Local
# type: ClusterIP type: NodePort # ClusterIP
type: NodePort
# nodePorts:
# http: 32080
# https: 32443
# tcp:
# 8080: 32808
nodePorts: nodePorts:
http: 30080 http: 30080
https: 30443 https: 30443
tcp: {} tcp: {}
udp: {} udp: {}
hostPort:
enabled: {{ .Values.clusterConfig.ingress_hostport }}
ports:
http: 80
https: 443
metrics: metrics:
enabled: true enabled: true