問題
New RelicのKubernetesインテグレーションと Helm を nri-bundle にインストールしましたが、Helm テンプレートは values.yaml の一部のグローバル値を尊重しません。
解決
以下の例のように、チャートを直接指定します。
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