Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 hack/observability: move charts so they are ignored by go mod #8795

Merged
Merged
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
2 changes: 1 addition & 1 deletion hack/observability/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# ignore cached helm charts
charts
.charts
6 changes: 6 additions & 0 deletions hack/observability/grafana/chart/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@ helmCharts:
namespace: observability
valuesFile: values.yaml
version: 6.56.5

helmGlobals:
# Store chart in ".charts" folder instead of "charts".
# Otherwise "go mod tidy" picks up dependencies of go files contained in the Helm Chart.
# "go mod tidy" ignores folders that begin with ".": https://pkg.go.dev/cmd/go#hdr-Package_lists_and_patterns.
chartHome: .charts
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@ helmCharts:
releaseName: kube-state-metrics
valuesFile: values.yaml
version: 5.6.4

helmGlobals:
# Store chart in ".charts" folder instead of "charts".
# Otherwise "go mod tidy" picks up dependencies of go files contained in the Helm Chart.
# "go mod tidy" ignores folders that begin with ".": https://pkg.go.dev/cmd/go#hdr-Package_lists_and_patterns.
chartHome: .charts
6 changes: 6 additions & 0 deletions hack/observability/loki/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ helmCharts:
namespace: observability
valuesFile: values.yaml
version: 5.5.4

helmGlobals:
# Store chart in ".charts" folder instead of "charts".
# Otherwise "go mod tidy" picks up dependencies of go files contained in the Helm Chart.
# "go mod tidy" ignores folders that begin with ".": https://pkg.go.dev/cmd/go#hdr-Package_lists_and_patterns.
chartHome: .charts
6 changes: 6 additions & 0 deletions hack/observability/parca/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@ helmCharts:
namespace: default
valuesFile: values.yaml
version: 4.10.0

helmGlobals:
# Store chart in ".charts" folder instead of "charts".
# Otherwise "go mod tidy" picks up dependencies of go files contained in the Helm Chart.
# "go mod tidy" ignores folders that begin with ".": https://pkg.go.dev/cmd/go#hdr-Package_lists_and_patterns.
chartHome: .charts
6 changes: 6 additions & 0 deletions hack/observability/prometheus/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ helmCharts:
namespace: observability
valuesFile: values.yaml
version: 22.6.2

helmGlobals:
# Store chart in ".charts" folder instead of "charts".
# Otherwise "go mod tidy" picks up dependencies of go files contained in the Helm Chart.
# "go mod tidy" ignores folders that begin with ".": https://pkg.go.dev/cmd/go#hdr-Package_lists_and_patterns.
chartHome: .charts
6 changes: 6 additions & 0 deletions hack/observability/promtail/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ helmCharts:
namespace: observability
valuesFile: values.yaml
version: 6.11.2

helmGlobals:
# Store chart in ".charts" folder instead of "charts".
# Otherwise "go mod tidy" picks up dependencies of go files contained in the Helm Chart.
# "go mod tidy" ignores folders that begin with ".": https://pkg.go.dev/cmd/go#hdr-Package_lists_and_patterns.
chartHome: .charts
6 changes: 6 additions & 0 deletions hack/observability/visualizer/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ helmCharts:
namespace: observability
valuesFile: values.yaml
version: 1.1.0

helmGlobals:
# Store chart in ".charts" folder instead of "charts".
# Otherwise "go mod tidy" picks up dependencies of go files contained in the Helm Chart.
# "go mod tidy" ignores folders that begin with ".": https://pkg.go.dev/cmd/go#hdr-Package_lists_and_patterns.
chartHome: .charts