Skip to content

Commit cd62f75

Browse files
committed
Fixed to support main Otel version in hugo.yaml
1 parent 2bd38cd commit cd62f75

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

content/en/ninja-workshops/8-docker-k8s-otel/7-install-collector-k8s.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ Now we can use the following command to install the collector:
141141
{{% tab title="Script" %}}
142142
143143
``` bash
144-
helm install splunk-otel-collector --version 0.111.0 \
144+
helm install splunk-otel-collector --version {{< otel-version >}} \
145145
--set="splunkObservability.realm=$REALM" \
146146
--set="splunkObservability.accessToken=$ACCESS_TOKEN" \
147147
--set="clusterName=$INSTANCE-cluster" \

content/en/ninja-workshops/9-solving-problems-with-o11y-cloud/2-deploy-collector.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ It then installed the `splunk-otel-collector-chart` Helm chart and ensured it's
7373
And finally, it used `helm install` to install the collector:
7474
7575
``` bash
76-
helm install splunk-otel-collector --version 0.111.0 \
76+
helm install splunk-otel-collector --version {{< otel-version >}} \
7777
--set="splunkObservability.realm=$REALM" \
7878
--set="splunkObservability.accessToken=$ACCESS_TOKEN" \
7979
--set="clusterName=$INSTANCE-k3s-cluster" \
@@ -283,7 +283,7 @@ Once the file is saved, we can apply the changes with:
283283
``` bash
284284
cd /home/splunk/workshop/tagging
285285
286-
helm upgrade splunk-otel-collector --version 0.111.0 \
286+
helm upgrade splunk-otel-collector --version {{< otel-version >}} \
287287
--set="splunkObservability.realm=$REALM" \
288288
--set="splunkObservability.accessToken=$ACCESS_TOKEN" \
289289
--set="clusterName=$INSTANCE-k3s-cluster" \

hugo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ params:
5959
# - version: v5.95
6060
# url: https://splunk.github.io/observability-workshop/v5.95
6161
url_latest_version: https://splunk.github.io/observability-workshop/
62-
stable_otel_version: 0.126.0
62+
stable_otel_version: 0.132.0
6363
imageEffects:
6464
border: false
6565
shadow: false

workshop/demos/petclinic-demo/1_agent_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ helm repo add splunk-otel-collector-chart https://signalfx.github.io/splunk-otel
66

77
helm repo update
88

9-
helm install splunk-otel-collector --version 0.130.0 \
9+
helm install splunk-otel-collector --version {{< otel-version >}} \
1010
--set="operatorcrds.install=true", \
1111
--set="operator.enabled=true", \
1212
--set="splunkObservability.realm=$REALM" \

workshop/optimize-cloud-monitoring/deploy-application.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ echo -e " "
8989

9090
#Install the otel collector.
9191
echo -e "\e[1mInstalling OpenTelemetry Collector\e[0m"
92-
helm install splunk-otel-collector --version 0.111.0 \
92+
helm install splunk-otel-collector --version {{< otel-version >}} \
9393
--set="operator.enabled=true" \
9494
--set="certmanager.enabled=true" \
9595
--set="splunkObservability.realm=$REALM" \

workshop/tagging/1-deploy-otel-collector.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
helm repo add splunk-otel-collector-chart https://signalfx.github.io/splunk-otel-collector-chart
1111
helm repo update
12-
helm install splunk-otel-collector --version 0.111.0 \
12+
helm install splunk-otel-collector --version {{< otel-version >}} \
1313
--set="splunkObservability.realm=$REALM" \
1414
--set="splunkObservability.accessToken=$ACCESS_TOKEN" \
1515
--set="clusterName=$INSTANCE-k3s-cluster" \

0 commit comments

Comments
 (0)