문제
nri-bundle에 대해 Helm과 함께 뉴렐릭의 Kubernetes 통합을 설치했지만 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