fix: capitalise acronyms

Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr>
This commit is contained in:
Ludovic Ortega 2024-04-19 17:51:02 +02:00
parent 7df6e20e56
commit a4aea9e30f
No known key found for this signature in database
GPG Key ID: 87471466EB186A4C
4 changed files with 16 additions and 16 deletions

View File

@ -487,11 +487,11 @@ Optional annotations to add to the controller Service.
Optional additional labels to add to the controller Service. Optional additional labels to add to the controller Service.
#### **serviceIpFamilyPolicy** ~ `string` #### **serviceIPFamilyPolicy** ~ `string`
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). 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).
#### **serviceIpFamilies** ~ `array` #### **serviceIPFamilies** ~ `array`
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. 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.
@ -1075,14 +1075,14 @@ Optional additional labels to add to the Webhook Pods.
> ``` > ```
Optional additional labels to add to the Webhook Service. Optional additional labels to add to the Webhook Service.
#### **webhook.serviceIpFamilyPolicy** ~ `string` #### **webhook.serviceIPFamilyPolicy** ~ `string`
> Default value: > Default value:
> ```yaml > ```yaml
> "" > ""
> ``` > ```
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). 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).
#### **webhook.serviceIpFamilies** ~ `array` #### **webhook.serviceIPFamilies** ~ `array`
> Default value: > Default value:
> ```yaml > ```yaml
> [] > []

View File

@ -19,11 +19,11 @@ metadata:
{{- end }} {{- end }}
spec: spec:
type: ClusterIP type: ClusterIP
{{- if .Values.serviceIpFamilyPolicy }} {{- if .Values.serviceIPFamilyPolicy }}
ipFamilyPolicy: {{ .Values.serviceIpFamilyPolicy }} ipFamilyPolicy: {{ .Values.serviceIPFamilyPolicy }}
{{- end }} {{- end }}
{{- if .Values.serviceIpFamilies }} {{- if .Values.serviceIPFamilies }}
ipFamilies: {{ .Values.serviceIpFamilies | toYaml | nindent 2 }} ipFamilies: {{ .Values.serviceIPFamilies | toYaml | nindent 2 }}
{{- end }} {{- end }}
ports: ports:
- protocol: TCP - protocol: TCP

View File

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

View File

@ -311,11 +311,11 @@ podLabels: {}
# 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). # 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 # +docs:property
# serviceIpFamilyPolicy: "" # serviceIPFamilyPolicy: ""
# 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. # 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 # +docs:property
# serviceIpFamilies: [] # serviceIPFamilies: []
# Optional DNS settings. These are useful if you have a public and private DNS zone for # Optional DNS settings. These are useful if you have a public and private DNS zone for
# the same domain on Route 53. The following is an example of ensuring # the same domain on Route 53. The following is an example of ensuring
@ -768,10 +768,10 @@ webhook:
serviceLabels: {} serviceLabels: {}
# 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). # 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: "" serviceIPFamilyPolicy: ""
# 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. # 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: [] serviceIPFamilies: []
image: image:
# The container registry to pull the webhook image from. # The container registry to pull the webhook image from.