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 currect daemonset.yaml does support adding of Annotations.
I had to update the file as follow:
{{- with .Values.Annotations }}
annotations:
{{ toYaml . | nindent 8 }}
{{- end }}
Another bug that i found when using node selector, the useHostNetwork failed, fixed by :
{{ toYaml .Values.resources | indent 10 }}
hostNetwork: {{ .Values.useHostNetwork }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{ toYaml . | indent 8 }}
{{- end }}
The text was updated successfully, but these errors were encountered:
The currect daemonset.yaml does support adding of Annotations.
I had to update the file as follow:
{{- with .Values.Annotations }}
annotations:
{{ toYaml . | nindent 8 }}
{{- end }}
Another bug that i found when using node selector, the useHostNetwork failed, fixed by :
{{ toYaml .Values.resources | indent 10 }}
hostNetwork: {{ .Values.useHostNetwork }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{ toYaml . | indent 8 }}
{{- end }}
The text was updated successfully, but these errors were encountered: