-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent bad configuration with install error report
- Loading branch information
1 parent
b8797e7
commit 6299ab1
Showing
8 changed files
with
61 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 6 additions & 4 deletions
10
charts/datadog/templates/_container-host-release-volumemounts.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
{{- define "linux-container-host-release-volumemounts" -}} | ||
{{- if or (not .Values.providers.gke.gdc) (not .Values.datadog.disableDefaultOsReleasePaths) }} | ||
{{- if eq (include "should-enable-system-probe" .) "true" }} | ||
{{- if or .Values.datadog.osReleasePath .Values.datadog.systemProbe.osReleasePath }} | ||
{{- if and (not .Values.providers.gke.gdc) (not .Values.providers.gke.autopilot) }} | ||
{{- if eq (include "should-enable-system-probe" .) "true" }} | ||
- name: os-release-file | ||
mountPath: /host{{ .Values.datadog.systemProbe.osReleasePath | default .Values.datadog.osReleasePath }} | ||
readOnly: true | ||
{{- else if or (not .Values.providers.gke.autopilot) }} | ||
{{- else if .Values.datadog.osReleasePath }} | ||
- name: os-release-file | ||
mountPath: /host{{ .Values.datadog.osReleasePath }} | ||
readOnly: true | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters