-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Enable goldpinger collector and analyzer (#1265)
* Enable goldpinger collector and analyzer * use goldpinger namespace * pin images * Conditionally disable the goldpinger collector in airgap installs This is only a temporary workaround until we get the goldpinger image included in our airgap builds. * Use proxied images by digest * operator airgap values * airgap operator values * instead of hardcoding values hashes in unit testing build them from the expected values * airgap chart spec * remove print * operator airgap tests * v --------- Co-authored-by: Andrew Lavery <laverya@umich.edu>
- Loading branch information
1 parent
3971e1b
commit 37ceee7
Showing
6 changed files
with
55 additions
and
6 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
.../charts/embedded-cluster-operator/templates/embedded-cluster-troubleshoot-goldpinger.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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: embedded-cluster-troubleshoot-goldpinger | ||
labels: | ||
troubleshoot.sh/kind: support-bundle | ||
{{- with (include "embedded-cluster-operator.labels" $ | fromYaml) }} | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
data: | ||
support-bundle-spec: | | ||
apiVersion: troubleshoot.sh/v1beta2 | ||
kind: SupportBundle | ||
metadata: | ||
name: embedded-cluster-troubleshoot-goldpinger | ||
labels: | ||
troubleshoot.sh/kind: support-bundle | ||
spec: | ||
collectors: | ||
- goldpinger: | ||
namespace: goldpinger | ||
image: proxy.replicated.com/anonymous/bloomberg/goldpinger@sha256:70416f19f1cbeedd344d37b08e64114779976b99905e0d018e71c437cde750dc | ||
podLaunchOptions: | ||
image: proxy.replicated.com/anonymous/library/busybox@sha256:768e5c6f5cb6db0794eec98dc7a967f40631746c32232b78a3105fb946f3ab83 | ||
exclude: {{ .Values.isAirgap }} | ||
analyzers: | ||
- goldpinger: | ||
exclude: {{ .Values.isAirgap }} |
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
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