fix: add suggestion

Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr>
This commit is contained in:
Ludovic Ortega 2024-04-19 10:34:10 +02:00
parent 55d546c111
commit 65cc7cb0df
No known key found for this signature in database
GPG Key ID: 87471466EB186A4C
2 changed files with 10 additions and 10 deletions

View File

@ -18,11 +18,11 @@ metadata:
{{- end }}
spec:
type: {{ .Values.webhook.serviceType }}
{{- if .Values.webhook.ipFamilyPolicy }}
ipFamilyPolicy: {{ .Values.webhook.ipFamilyPolicy }}
{{- if .Values.webhook.serviceIpFamilyPolicy }}
ipFamilyPolicy: {{ .Values.webhook.serviceIpFamilyPolicy }}
{{- end }}
{{- if .Values.webhook.ipFamilies }}
ipFamilies: {{ .Values.webhook.ipFamilies | toYaml | nindent 2 }}
{{- if .Values.webhook.serviceIpFamilies }}
ipFamilies: {{ .Values.webhook.serviceIpFamilies | toYaml | nindent 2 }}
{{- end }}
{{- with .Values.webhook.loadBalancerIP }}
loadBalancerIP: {{ . }}

View File

@ -309,11 +309,11 @@ podLabels: {}
# +docs:property
# serviceLabels: {}
# Optional set the ip family policy to the controller Service to configure dual-stack see [Configure dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services).
# Optionally set the IP family policy for the controller Service to configure dual-stack; see [Configure dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services).
# +docs:property
# serviceIpFamilyPolicy: ""
# Optional sets the families to the controller Service that should be supported and the order in which they should be applied to ClusterIP as well. Can be IPv4 and/or IPv6.
# Optionally set the IP families for the controller Service that should be supported, in the order in which they should be applied to ClusterIP. Can be IPv4 and/or IPv6.
# +docs:property
# serviceIpFamilies: []
@ -767,11 +767,11 @@ webhook:
# Optional additional labels to add to the Webhook Service.
serviceLabels: {}
# Optional set the ip family policy to the Webhook Service to configure dual-stack see [Configure dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services).
ipFamilyPolicy: ""
# Optionally set the IP family policy for the controller Service to configure dual-stack; see [Configure dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services).
serviceIpFamilyPolicy: ""
# Optional sets the families to the Webhook Service that should be supported and the order in which they should be applied to ClusterIP as well. Can be IPv4 and/or IPv6.
ipFamilies: []
# Optionally set the IP families for the controller Service that should be supported, in the order in which they should be applied to ClusterIP. Can be IPv4 and/or IPv6.
serviceIpFamilies: []
image:
# The container registry to pull the webhook image from.