Problem
You've installed the New Relic's Kubernetes integration with Helm for the nri-bundle
, but our Helm templates are not respecting some global values in your values.yaml
.
Solution
Specify the chart directly, as in the example below:
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