Skip to content
Open
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
9 changes: 7 additions & 2 deletions .github/workflows/update-app-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
run: |
sed -i "s/^appVersion: .*/appVersion: ${{ github.event.inputs.tag }}/" charts/clickstack/Chart.yaml

- name: Update otel-collector image tag in values.yaml
run: |
sed -i '/clickstack-otel-collector/{n;s/tag: "[^"]*"/tag: "${{ github.event.inputs.tag }}"/}' charts/clickstack/values.yaml

- name: Create changeset
run: |
mkdir -p .changeset
Expand All @@ -43,8 +47,9 @@ jobs:
commit-message: "chore: Update appVersion to ${{ github.event.inputs.tag }}"
title: "Update appVersion to ${{ github.event.inputs.tag }}"
body: |
This PR updates the appVersion in Chart.yaml to `${{ github.event.inputs.tag }}`.
This PR updates the appVersion in Chart.yaml to `${{ github.event.inputs.tag }}` and aligns the otel-collector image tag in values.yaml.

- Updated `charts/clickstack/Chart.yaml`
- Updated `otel-collector.image.tag` in `charts/clickstack/values.yaml`
branch: update-app-version-${{ github.event.inputs.tag }}
delete-branch: true
2 changes: 1 addition & 1 deletion charts/clickstack/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ otel-collector:
mode: deployment
image:
repository: docker.clickhouse.com/clickhouse/clickstack-otel-collector
tag: "2.19.0"
tag: "2.27.0"
extraEnvsFrom:
- configMapRef:
name: clickstack-config
Expand Down