The daemonset, etc have this, which makes sense: ```yaml labels: {{- include "fluent-bit.labels" . | nindent 4 }} {{- with .Values.labels }} {{- toYaml . | nindent 4 }} {{- end }} ``` but the pattern is not the same for ClusterRole and ClusterRoleBinding: ```yaml labels: {{- include "fluent-bit.labels" . | nindent 4 }} ``` So I think they need to have `.Values.labels` to follow the pattern, or else add a new top level key like `.Values.clusterRole.labels`.