You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The PR #154 introduce the following bug in K8S 1.21:
Service is invalid: spec.externalTrafficPolicy: Invalid value: "Cluster": ExternalTrafficPolicy can only be set on NodePort and LoadBalancer service
The parameter ExternalTrafficPolicy cannot be used if type: ClusterIP.
A quick fix could be:
{{- if ne .Values.service.type "ClusterIP" }}externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy }}{{- end }}
What do you think of it?
The text was updated successfully, but these errors were encountered:
link-webcreations
changed the title
ExternalTrafficPolicy can only be set on NodePort and LoadBalancer service
[mosquitto] ExternalTrafficPolicy can only be set on NodePort and LoadBalancer service
Oct 8, 2021
Hello,
The PR #154 introduce the following bug in K8S 1.21:
The parameter
ExternalTrafficPolicy
cannot be used iftype: ClusterIP
.A quick fix could be:
What do you think of it?
The text was updated successfully, but these errors were encountered: