Problema
Você instalou a integração do Kubernetes do New Relic com o Helm para o nri-bundle, mas nossos modelos do Helm não estão respeitando alguns valores globais no seu values.yaml.
Solução
Especifique o gráfico diretamente, como no exemplo abaixo:
global:   licenseKey: <set_elsewhere>  cluster: <set_elsewhere>  tolerations: # We are interested in setting this toleration for our pods, but the global value is not respected for some reason     - key: role      operator: Exists      effect: NoSchedule
# Directly specify the chart, and the desired pod toleration will always be respectednewrelic-infrastructure:    kubelet:      tolerations:        - key: role         operator: Exists         effect: NoSchedule