Skip to content

Commit 12b8aaf

Browse files
authored
[k8s] Pin Demo Helm chart version (#170)
1 parent 32959b4 commit 12b8aaf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Additionally, the OpenTelemetry Contrib collector has also been changed to the [
7878
- Follow the [EDOT Quick Start Guide](https://elastic.github.io/opentelemetry/quickstart/) for Kubernetes and your specific Elastic deployment to install the EDOT OpenTelemetry collector.
7979
- Deploy the Elastic OpenTelemetry Demo using the following command.
8080
```
81-
helm install my-otel-demo open-telemetry/opentelemetry-demo -f kubernetes/elastic-helm/demo.yml
81+
helm install my-otel-demo open-telemetry/opentelemetry-demo --version 0.37.8 -f kubernetes/elastic-helm/demo.yml
8282
```
8383

8484
</details>

demo.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ HELM_REPO_URL='https://open-telemetry.github.io/opentelemetry-helm-charts'
1111

1212
DEMO_RELEASE="my-otel-demo"
1313
DEMO_CHART="open-telemetry/opentelemetry-demo"
14+
DEMO_HELM_VERSION='0.37.8'
1415

1516
KUBE_STACK_RELEASE="opentelemetry-kube-stack"
1617
KUBE_STACK_CHART="open-telemetry/opentelemetry-kube-stack"
17-
KUBE_STACK_VERSION='0.9.1'
18+
KUBE_STACK_VERSION='0.10.5'
1819
KUBE_STACK_VALUES_URL_CLOUD='https://raw.githubusercontent.com/elastic/elastic-agent/refs/tags/v'$ELASTIC_STACK_VERSION'/deploy/helm/edot-collector/kube-stack/values.yaml'
1920
KUBE_STACK_VALUES_URL_SERVERLESS='https://raw.githubusercontent.com/elastic/elastic-agent/refs/tags/v'$ELASTIC_STACK_VERSION'/deploy/helm/edot-collector/kube-stack/managed_otlp/values.yaml'
2021
SECRET_NAME='elastic-secret-otel'
@@ -162,7 +163,7 @@ install_kube_stack() {
162163
}
163164

164165
install_demo_chart() {
165-
helm upgrade --install "$DEMO_RELEASE" "$DEMO_CHART" -f kubernetes/elastic-helm/demo.yml
166+
helm upgrade --install "$DEMO_RELEASE" "$DEMO_CHART" --version "$DEMO_HELM_VERSION" -f kubernetes/elastic-helm/demo.yml
166167
}
167168

168169
start_k8s() {

0 commit comments

Comments
 (0)