Problema
Instaló la integración de Kubernetes de New Relic con Helm para nri-bundle
, pero nuestras plantillas de Helm no respetan algunos valores globales en su values.yaml
.
Solución
Especifique el gráfico directamente, como en el siguiente ejemplo:
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