fix(infra-ingress): use hostPort instatt of loadbalancer service
This commit is contained in:
parent
d662b8da64
commit
446ca33ce2
1 changed files with 10 additions and 3 deletions
|
@ -23,9 +23,13 @@ spec:
|
||||||
deployment:
|
deployment:
|
||||||
enabled: {{ toYaml (not .Values.external) }}
|
enabled: {{ toYaml (not .Values.external) }}
|
||||||
kind: DaemonSet
|
kind: DaemonSet
|
||||||
|
updateStrategy:
|
||||||
|
rollingUpdate:
|
||||||
|
maxUnavailable: 1
|
||||||
|
maxSurge: 0
|
||||||
|
|
||||||
service:
|
service:
|
||||||
enabled: {{ toYaml (not .Values.external) }}
|
enabled: false
|
||||||
ipFamilyPolicy: PreferDualStack
|
ipFamilyPolicy: PreferDualStack
|
||||||
ipFamilies:
|
ipFamilies:
|
||||||
- IPv6
|
- IPv6
|
||||||
|
@ -44,7 +48,10 @@ spec:
|
||||||
priorityClassName: "system-cluster-critical"
|
priorityClassName: "system-cluster-critical"
|
||||||
|
|
||||||
ports:
|
ports:
|
||||||
|
web:
|
||||||
|
hostPort: 80
|
||||||
websecure:
|
websecure:
|
||||||
|
hostPort: 443
|
||||||
http3:
|
http3:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
||||||
|
@ -73,9 +80,9 @@ spec:
|
||||||
|
|
||||||
metrics:
|
metrics:
|
||||||
prometheus:
|
prometheus:
|
||||||
service:
|
|
||||||
enabled:
|
|
||||||
{{- if (.Capabilities.APIVersions.Has "monitoring.coreos.com/v1/ServiceMonitor") }}
|
{{- if (.Capabilities.APIVersions.Has "monitoring.coreos.com/v1/ServiceMonitor") }}
|
||||||
|
service:
|
||||||
|
enabled: true
|
||||||
serviceMonitor:
|
serviceMonitor:
|
||||||
additionalLabels:
|
additionalLabels:
|
||||||
{{- toYaml $.Values.commons.prometheus.monitor.labels | nindent 12 }}
|
{{- toYaml $.Values.commons.prometheus.monitor.labels | nindent 12 }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue