fix: fix loadbalancer annotations for hel1 ingress

This commit is contained in:
2025-11-16 12:00:55 +01:00
parent 96830f07a8
commit 19d1b00ce1
3 changed files with 20 additions and 1 deletions
-1
View File
@@ -11,7 +11,6 @@ clusterConfig:
cluster: "hel1" cluster: "hel1"
ingress_nodes: ["controlplane-1, controlplane-2, controlplane-3"] ingress_nodes: ["controlplane-1, controlplane-2, controlplane-3"]
ingress_replica_count: 3 ingress_replica_count: 3
ingress_hostnetwork: true
fileserver: "10.0.1.1" fileserver: "10.0.1.1"
s3: s3:
hosts: [] hosts: []
+16
View File
@@ -0,0 +1,16 @@
nginx:
enabled: true
autosync: true
pdb:
minAvailable: 1
resources:
controller:
cpu: "100m"
memory: "100Mi"
annotations:
load-balancer.hetzner.cloud/http-redirect-http: "true"
load-balancer.hetzner.cloud/location: hel1
load-balancer.hetzner.cloud/name: load-balancer-1
load-balancer.hetzner.cloud/type: lb11
load-balancer.hetzner.cloud/use-private-ip: "true"
@@ -71,6 +71,10 @@ controller:
{{- else }} {{- else }}
type: ClusterIP type: ClusterIP
{{- end }} {{- end }}
annotations:
{{- with .Values.nginx.annotations }}
{{ toYaml . | nindent 8 }}
{{- end }}
hostNetwork: {{ .Values.clusterConfig.ingress_hostnetwork }} hostNetwork: {{ .Values.clusterConfig.ingress_hostnetwork }}