diff --git a/deploy/charts/cert-manager/templates/webhook-service.yaml b/deploy/charts/cert-manager/templates/webhook-service.yaml index f7de5cee1..8c759b013 100644 --- a/deploy/charts/cert-manager/templates/webhook-service.yaml +++ b/deploy/charts/cert-manager/templates/webhook-service.yaml @@ -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: {{ . }} diff --git a/deploy/charts/cert-manager/values.yaml b/deploy/charts/cert-manager/values.yaml index 5686dc11a..a92b2f52e 100644 --- a/deploy/charts/cert-manager/values.yaml +++ b/deploy/charts/cert-manager/values.yaml @@ -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.