Skip to content

Commit

Permalink
hack/observability: move charts so they are ignored by go mod
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Büringer buringerst@vmware.com
  • Loading branch information
sbueringer committed Jun 6, 2023
1 parent 3433393 commit e5db021
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 1 deletion.
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

0 comments on commit e5db021

Please sign in to comment.