Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### bugfix
- fixes "bufio.Scanner: token too long" bug by increasing default buffer size @TmNguyen12 [#1407](https://github.com/newrelic/nri-kubernetes/pull/1407)
- Fix newrelic-infrastructure' kubelet daemonset-windows when `extraVolumeMounts` is provided @zhangyuan [#1380](https://github.com/newrelic/nri-kubernetes/pull/1380)

### enhancement
- Add handling for fine-grained kubectl permissions @kondracek-nr [#1389](https://github.com/newrelic/nri-kubernetes/pull/1389)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ spec:
- name: nri-integrations-cfg-volume
mountPath: "C:\\Program Files\\New Relic\\newrelic-infra\\integrations.d"
{{- with $.Values.kubelet.extraVolumeMounts }}
{{- toYaml $ | nindent 12 }}
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with $.Values.kubelet.resources }}
resources: {{ toYaml . | nindent 12 }}
Expand Down
Loading