Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,14 @@ spec:
# resources to terminate when being uninstalled.
terminationGracePeriodSeconds: 60
hostNetwork: true
{{- if .Values.dnsPolicy }}
dnsPolicy: {{ .Values.dnsPolicy }}
{{- else }}
# This must be set when hostNetwork is true or else the cluster services won't resolve
# Default: ClusterFirstWithHostNet for backward compatibility
# Note: For EKS clusters, consider setting dnsPolicy: Default in values.yaml
dnsPolicy: ClusterFirstWithHostNet
{{- end }}
{{- if .Values.dnsConfig }}
dnsConfig:
{{- toYaml .Values.dnsConfig | nindent 8 }}
Expand Down