Skip to content

Commit b0cf056

Browse files
authored
Update to grafana-community charts and bump (#32)
Signed-off-by: Dan Barr <[email protected]> Co-authored-by: Dan Barr <[email protected]>
1 parent c0fd5bd commit b0cf056

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

bootstrap.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ set -a # automatically export all variables for subshells
1313
TRAEFIK_CHART_VERSION="39.0.0" # renovate: datasource=helm depName=traefik registryUrl=https://traefik.github.io/charts
1414
CERT_MANAGER_CHART_VERSION="v1.19.3" # renovate: datasource=docker depName=quay.io/jetstack/charts/cert-manager versioning=semver
1515
OPENTELEMETRY_OPERATOR_VERSION="v0.144.0" # renovate: datasource=github-releases depName=open-telemetry/opentelemetry-operator
16-
TEMPO_CHART_VERSION="1.24.4" # renovate: datasource=helm depName=tempo registryUrl=https://grafana.github.io/helm-charts
16+
TEMPO_CHART_VERSION="1.25.0" # renovate: datasource=helm depName=tempo registryUrl=https://grafana-community.github.io/helm-charts
1717
PROMETHEUS_CHART_VERSION="28.8.0" # renovate: datasource=helm depName=prometheus registryUrl=https://prometheus-community.github.io/helm-charts
18-
GRAFANA_CHART_VERSION="10.5.15" # renovate: datasource=helm depName=grafana registryUrl=https://grafana.github.io/helm-charts
18+
GRAFANA_CHART_VERSION="11.0.1" # renovate: datasource=helm depName=grafana registryUrl=https://grafana-community.github.io/helm-charts
1919
TOOLHIVE_OPERATOR_CRDS_CHART_VERSION="0.9.2" # renovate: datasource=docker depName=ghcr.io/stacklok/toolhive/toolhive-operator-crds
2020
TOOLHIVE_OPERATOR_CHART_VERSION="0.9.2" # renovate: datasource=docker depName=ghcr.io/stacklok/toolhive/toolhive-operator
2121
REGISTRY_API_VERSION="v0.5.3" # renovate: datasource=docker depName=ghcr.io/stacklok/thv-registry-api
@@ -71,7 +71,7 @@ export KUBECONFIG=$(pwd)/kubeconfig-toolhive-demo.yaml
7171
# Add Helm repos and update
7272
echo -n "Adding Helm repositories..."
7373
run_quiet helm repo add traefik https://traefik.github.io/charts || die "Failed to add Traefik repo"
74-
run_quiet helm repo add grafana https://grafana.github.io/helm-charts || die "Failed to add Grafana repo"
74+
run_quiet helm repo add grafana-community https://grafana-community.github.io/helm-charts || die "Failed to add Grafana Community repo"
7575
run_quiet helm repo add prometheus-community https://prometheus-community.github.io/helm-charts || die "Failed to add Prometheus repo"
7676
echo ""
7777

@@ -99,9 +99,9 @@ if ! namespace_exists observability; then
9999
fi
100100
run_quiet kubectl apply -f https://github.com/open-telemetry/opentelemetry-operator/releases/download/${OPENTELEMETRY_OPERATOR_VERSION}/opentelemetry-operator.yaml || die "Failed to install OpenTelemetry Operator"
101101
run_quiet kubectl wait --for=condition=available --timeout=300s deployment/opentelemetry-operator-controller-manager --namespace opentelemetry-operator-system || die "OpenTelemetry Operator failed to become ready"
102-
run_quiet helm upgrade --install tempo grafana/tempo --version "$TEMPO_CHART_VERSION" --namespace observability --wait || die "Failed to install Tempo"
102+
run_quiet helm upgrade --install tempo grafana-community/tempo --version "$TEMPO_CHART_VERSION" --namespace observability --wait || die "Failed to install Tempo"
103103
run_quiet helm upgrade --install prometheus prometheus-community/prometheus --version "$PROMETHEUS_CHART_VERSION" --namespace observability --values infra/prometheus-helm-values.yaml --wait || die "Failed to install Prometheus"
104-
run_quiet helm upgrade --install grafana grafana/grafana --version "$GRAFANA_CHART_VERSION" --namespace observability --values infra/grafana-helm-values.yaml --set-file dashboards.default.toolhive-mcp.json=infra/grafana-dashboard.json --wait || die "Failed to install Grafana"
104+
run_quiet helm upgrade --install grafana grafana-community/grafana --version "$GRAFANA_CHART_VERSION" --namespace observability --values infra/grafana-helm-values.yaml --set-file dashboards.default.toolhive-mcp.json=infra/grafana-dashboard.json --wait || die "Failed to install Grafana"
105105
run_quiet kubectl apply -f infra/otel-collector.yaml || die "Failed to apply OTel collector config"
106106
echo ""
107107

0 commit comments

Comments
 (0)