Skip to content

Commit bd96347

Browse files
chore(release): Camunda Platform Helm Chart 13.1.0 - Camunda 8.8 (#4576)
1 parent 22c392f commit bd96347

File tree

10 files changed

+125
-250
lines changed

10 files changed

+125
-250
lines changed

.github/config/release-please/.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"charts/camunda-platform-8.5": "10.11.3",
55
"charts/camunda-platform-8.6": "11.10.2",
66
"charts/camunda-platform-8.7": "12.6.3",
7-
"charts/camunda-platform-8.8": "13.0.0",
7+
"charts/camunda-platform-8.8": "13.1.0",
88
"charts/camunda-platform-8.9": "14.0.0-alpha0"
99
}

.github/config/release-please/release-please-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"pull-request-title-pattern": "chore(release): Camunda Platform Helm Chart ${version} - Camunda 8.9",
99
"release-type": "helm",
1010
"extra-label": "version/alpha,version/8.9,automation/release-please,release/pr,kind/chore,chart/camunda-platform",
11-
"component": "camunda-platform-8.8",
11+
"component": "camunda-platform-8.9",
1212
"include-v-in-tag": false
1313
},
1414
"charts/camunda-platform-8.8": {

.github/workflows/chart-release-chores.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,13 @@ jobs:
7171
env:
7272
GH_TOKEN: "${{ steps.generate-github-token.outputs.token }}"
7373
run: |
74+
set -euo pipefail
75+
7476
git fetch origin main:main
75-
pr_nubmer="$(echo $GITHUB_REF | awk 'BEGIN { FS = "/" }; { print $3 }')"
76-
# Set PR project.
77-
gh pr edit "${pr_nubmer}" --add-project "Distribution Team"
77+
78+
pr_number="$(echo "$GITHUB_REF" | awk 'BEGIN { FS = "/" } { print $3 }')"
79+
gh project item-add --owner camunda --number 33 \
80+
--url "https://github.com/camunda/camunda-platform-helm/pull/$pr_number" >/dev/null || true
7881
- name: Update golden files
7982
run: |
8083
chartPath="${CHANGED_CHARTS}" \

.github/workflows/chart-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
# Create a tmp file and ensure it's empty.
5151
echo "" > "${matrix_file}"
5252
53-
echo '${{ steps.generate-chart-versions.outputs.matrix }}' | jq -cr '.include.[0].version' | while read -r dir_id; do
53+
echo '${{ steps.generate-chart-versions.outputs.matrix }}' | jq -cr '.include.[5].version' | while read -r dir_id; do
5454
chart_file="charts/camunda-platform-${dir_id}/Chart.yaml"
5555
5656
# Extract version info.
Lines changed: 11 additions & 136 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: camunda-platform
3-
version: 13.0.0
3+
version: 13.1.0
44
appVersion: 8.8.x
55
description: |
66
Camunda 8 Self-Managed Helm charts.
@@ -62,7 +62,7 @@ maintainers:
6262
- name: jessesimpson36
6363
6464
annotations:
65-
camunda.io/helmCLIVersion: "3.18.6"
65+
camunda.io/helmCLIVersion: "3.19.0"
6666
artifacthub.io/links: |
6767
- name: Camunda 8 docs
6868
url: https://docs.camunda.io/
@@ -73,145 +73,20 @@ annotations:
7373
artifacthub.io/containsSecurityUpdates: "false"
7474
artifacthub.io/changes: |
7575
- kind: added
76-
description: "Support legacy retention age"
77-
- kind: added
78-
description: "Support issuer backend url in the orchestration config"
79-
- kind: added
80-
description: "Opensearch aws enabled config now affects usage of AWS credentials"
81-
- kind: added
82-
description: "Add the document store scenario to the qa scenario list"
83-
- kind: added
84-
description: "Introduce authenticationRefreshInterval config parameter"
85-
- kind: added
86-
description: "Add resource authorizations flag to identity migration"
87-
- kind: added
88-
description: "Add default roles for initial users"
89-
- kind: added
90-
description: "Add extra mapping for initial client for identity OIDC migration"
91-
- kind: changed
92-
description: "Upgrade keycloak image from 26.3.1 to 26.3.3"
93-
- kind: changed
94-
description: "Streamline OIDC and Microsoft Entra auth"
95-
- kind: changed
96-
description: "Rename zeebe/orchestration labels"
97-
- kind: changed
98-
description: "Differentiate between orchestration services"
99-
- kind: changed
100-
description: "Move orchestration oidc from global to component"
101-
- kind: changed
102-
description: "Move connectors oidc from global to component"
103-
- kind: changed
104-
description: "Support auth values in components"
105-
- kind: changed
106-
description: "Use the main config in migrations"
107-
- kind: changed
108-
description: "Use postgresql 14 for web modeler"
109-
- kind: changed
110-
description: "Use postgres 14 for web modeler"
111-
- kind: changed
112-
description: "Add nodeSelector, affinity, and tolerations to orchestration extra resources"
113-
- kind: changed
114-
description: "Set default replicas to 1 for secondary storage"
115-
- kind: changed
116-
description: "Run orchestration cluster from unified config"
117-
- kind: fixed
118-
description: "No default backwardsCompatibleAudiences"
119-
- kind: fixed
120-
description: "Remove duplicate servicemonitor"
121-
- kind: fixed
122-
description: "Release-please should create a non-alpha release for 8.8.0"
123-
- kind: fixed
124-
description: "Correct 13.0.0 version number"
125-
- kind: fixed
126-
description: "Undo part of the release notes thats wrong version"
127-
- kind: fixed
128-
description: "Fix doc links for 8.8"
129-
- kind: fixed
130-
description: "NoSecondaryStorage constraint no longer breaks unit tests"
131-
- kind: fixed
132-
description: "Wrong openshift compatibilty helper elasticsearch commonLabels usage"
133-
- kind: fixed
134-
description: "Operate opensearch access in the unified config"
135-
- kind: fixed
136-
description: "2 issues.. the configmap for optimize was using the elasticsearch prefix value for opensearch and the QA scenarios where reusing the global prefix to shared OS failed CI"
137-
- kind: fixed
138-
description: "Add the oidc group claim to opensearch"
139-
- kind: fixed
140-
description: "Simplify oidc mappings in 8.8"
141-
- kind: fixed
142-
description: "Firstuser defaults should not fire constraint"
143-
- kind: fixed
144-
description: "Partition-count typo in 8.8 chart"
145-
- kind: fixed
146-
description: "Identity migration inital contactPoint port number"
147-
- kind: fixed
148-
description: "Revert orchestration service name for backward compatibility"
149-
- kind: fixed
150-
description: "Comment in values.yaml for enabling management identity auth"
151-
- kind: fixed
152-
description: "Comment for identity existing secret"
153-
- kind: fixed
154-
description: "Add conditional properties for management components in manageme…"
155-
- kind: fixed
156-
description: "Revert tls secret placeholders"
157-
- kind: fixed
158-
description: "Add missing opensearch fields in templates"
159-
- kind: fixed
160-
description: "Reintroduce capability to disable all exporters again"
161-
- kind: fixed
162-
description: "Add security config to webmodeler"
163-
- kind: fixed
164-
description: "Data migration and importer config"
165-
- kind: fixed
166-
description: "Opensearch config and index replica placement"
167-
- kind: fixed
168-
description: "Use correct upgrade strategy for importer deployment"
169-
- kind: fixed
170-
description: "Data and identity migraiton accept orchestration env"
171-
- kind: fixed
172-
description: "Es/os exporter inherit index replicas"
173-
- kind: fixed
174-
description: "Clean up redundant secret templates"
175-
- kind: fixed
176-
description: "This PR is enabling Entra for testing"
177-
- kind: fixed
178-
description: "Correctly configure data migration"
179-
- kind: fixed
180-
description: "Define importer node id based on regionId"
181-
- kind: fixed
182-
description: "Adjust autogenerated secret detection patterns"
183-
- kind: fixed
184-
description: "Fix configurations of identity migration"
185-
- kind: fixed
186-
description: "Remove importer affinity in 8.8"
187-
- kind: fixed
188-
description: "Unique importer ids for swim"
189-
- kind: fixed
190-
description: "Add audiences for backward compatibility"
191-
- kind: fixed
192-
description: "Correct sysctlImage structure in values-enterprise.yaml"
193-
- kind: fixed
194-
description: "Web modeler extraConfiguration uses subcomponent subkey"
195-
- kind: fixed
196-
description: "Should be using 8.8 instead of 8.9 connectors"
197-
- kind: fixed
198-
description: "Couple importer deployment with migration"
199-
- kind: fixed
200-
description: "In optimize cm, set the zeebe name to be equal to prefix"
76+
description: "Data injection during testing"
20177
- kind: fixed
202-
description: "Set correct value for identity migration configmap"
78+
description: "Consistent naming for migrations and importer"
20379
- kind: fixed
204-
description: "Set client secret based on what it's bound to on identity-side"
80+
description: "Changing pod anti-affinity rules for migration jobs and importer"
20581
- kind: fixed
206-
description: "Update QA 8.8 opensearch values file"
82+
description: "Allows cpu to be set as either string or number"
20783
- kind: fixed
208-
description: "Update migration job labels so requests are not routed to them"
84+
description: "Delete the migrator from 8.9"
20985
- kind: fixed
210-
description: "Enable exporters when data migration is enabled"
86+
description: "The oidc scenario was always running the upgrade. Removing here …"
21187
- kind: fixed
212-
description: "Add constraints for ES and Basic auth in noSecondaryStorage mode"
88+
description: "Use joinPath helper to fix double slash issues in console configmap"
21389
- kind: fixed
214-
description: "Adjust secret constraint to reflect new secrets management"
90+
description: "Apply dual-region exclusion logic to opensearch exporter as well"
21591
- kind: fixed
216-
description: "Add missing global.identity.auth.identity.secret configuration"
217-
92+
description: "Add back mapping rules in the orchestration cluster"
Lines changed: 23 additions & 108 deletions
Original file line numberDiff line numberDiff line change
@@ -1,111 +1,26 @@
11
The changelog is automatically generated and it follows [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) format.
22

3-
## [camunda-platform-13.0.0](https://github.com/camunda/camunda-platform-helm/releases/tag/camunda-platform-13.0.0) (2025-10-13)
4-
5-
### Refactor
6-
7-
- Upgrade keycloak image from 26.3.1 to 26.3.3 (#4386)
8-
- Streamline OIDC and Microsoft Entra auth (#4416)
9-
- Rename zeebe/orchestration labels (#4430)
10-
11-
### Fixes
12-
13-
- No default backwardsCompatibleAudiences (#4421)
14-
- Remove duplicate servicemonitor (#4428)
15-
- Release-please should create a non-alpha release for 8.8.0 (#4439)
16-
- Correct 13.0.0 version number
17-
- Undo part of the release notes thats wrong version
18-
- Fix doc links for 8.8 (#4453)
19-
20-
21-
## [camunda-platform-8.5-10.11.3](https://github.com/camunda/camunda-platform-helm/releases/tag/camunda-platform-8.5-10.11.3) (2025-10-08)
3+
## [camunda-platform-13.1.0](https://github.com/camunda/camunda-platform-helm/releases/tag/camunda-platform-13.1.0) (2025-10-27)
224

235
### Features
246

25-
- Support legacy retention age (#4179)
26-
- Support issuer backend url in the orchestration config (#4265)
27-
28-
### Refactor
29-
30-
- Differentiate between orchestration services (#4190)
31-
- Move orchestration oidc from global to component (#4233)
32-
- Move connectors oidc from global to component (#4234)
33-
- Support auth values in components (#4279)
34-
- Use the main config in migrations (#4235)
35-
- Use postgresql 14 for web modeler (#4287)
36-
- Use postgres 14 for web modeler (#4327)
37-
- Add nodeSelector, affinity, and tolerations to orchestration extra resources (#4366)
7+
- Data injection during testing (#4423)
388

399
### Fixes
4010

41-
- NoSecondaryStorage constraint no longer breaks unit tests (#4223)
42-
- Wrong openshift compatibilty helper elasticsearch commonLabels usage (#4180)
43-
- Operate opensearch access in the unified config (#4224)
44-
- 2 issues.. the configmap for optimize was using the elasticsearch prefix value for opensearch and the QA scenarios where reusing the global prefix to shared OS failed CI (#4238)
45-
- Add the oidc group claim to opensearch (#4244)
46-
- Simplify oidc mappings in 8.8 (#4229)
47-
- Firstuser defaults should not fire constraint (#4227)
48-
- Partition-count typo in 8.8 chart (#4245)
49-
- Identity migration inital contactPoint port number (#4260)
50-
- Revert orchestration service name for backward compatibility (#4264)
51-
- Comment in values.yaml for enabling management identity auth (#4273)
52-
- Comment for identity existing secret (#4275)
53-
- Add conditional properties for management components in manageme… (#4276)
54-
- Revert tls secret placeholders (#4239)
55-
- Add missing opensearch fields in templates (#4280)
56-
- Reintroduce capability to disable all exporters again (#4272)
57-
- Add security config to webmodeler (#4285)
58-
- Data migration and importer config (#4286)
59-
- Opensearch config and index replica placement (#4297)
60-
- Use correct upgrade strategy for importer deployment (#4310)
61-
- Data and identity migraiton accept orchestration env (#4291)
62-
- Es/os exporter inherit index replicas (#4309)
63-
- Clean up redundant secret templates (#4328)
64-
- This PR is enabling Entra for testing (#4294)
65-
- Correctly configure data migration (#4343)
66-
- Define importer node id based on regionId (#4349)
67-
- Adjust autogenerated secret detection patterns (#4342)
68-
- Fix configurations of identity migration (#4344)
69-
- Remove importer affinity in 8.8 (#4357)
70-
- Unique importer ids for swim (#4360)
71-
- Add audiences for backward compatibility (#4351)
72-
- Correct sysctlImage structure in values-enterprise.yaml (#4339)
73-
- Web modeler extraConfiguration uses subcomponent subkey (#4097)
74-
- Should be using 8.8 instead of 8.9 connectors (#4267)
75-
- Couple importer deployment with migration (#4346)
76-
- In optimize cm, set the zeebe name to be equal to prefix (#4382)
77-
- Set correct value for identity migration configmap (#4387)
78-
- Set client secret based on what it's bound to on identity-side (#4400)
79-
- Update QA 8.8 opensearch values file (#4405)
11+
- Consistent naming for migrations and importer (#4477)
12+
- Changing pod anti-affinity rules for migration jobs and importer (#4481)
13+
- Allows cpu to be set as either string or number (#4491)
14+
- Delete the migrator from 8.9 (#4503)
15+
- The oidc scenario was always running the upgrade. Removing here … (#4523)
16+
- Use joinPath helper to fix double slash issues in console configmap (#4562)
17+
- Apply dual-region exclusion logic to opensearch exporter as well (#4352)
18+
- Add back mapping rules in the orchestration cluster (#4545)
8019

8120
### Revert
8221

83-
- "refactor: set default value for contextPath in all component… (#4221)
84-
85-
86-
## [camunda-platform-8.5-10.11.2](https://github.com/camunda/camunda-platform-helm/releases/tag/camunda-platform-8.5-10.11.2) (2025-09-18)
87-
88-
### Features
89-
90-
- Opensearch aws enabled config now affects usage of AWS credentials (#4163)
91-
- Add the document store scenario to the qa scenario list (#4117)
92-
- Introduce authenticationRefreshInterval config parameter (#3958)
93-
- Add resource authorizations flag to identity migration (#4197)
94-
- Add default roles for initial users (#4194)
95-
- Add extra mapping for initial client for identity OIDC migration (#4202)
96-
97-
### Refactor
98-
99-
- Set default replicas to 1 for secondary storage (#4150)
100-
- Run orchestration cluster from unified config (#4138)
101-
102-
### Fixes
103-
104-
- Update migration job labels so requests are not routed to them (#4143)
105-
- Enable exporters when data migration is enabled (#4196)
106-
- Add constraints for ES and Basic auth in noSecondaryStorage mode (#4170)
107-
- Adjust secret constraint to reflect new secrets management (#4182)
108-
- Add missing global.identity.auth.identity.secret configuration (#4222)
22+
- Update camunda-platform-8.8 major (#4461)
23+
- Install-tool-action part of feat - data injection during testing (#4467)
10924

11025
<!-- generated by git-cliff -->
11126
### Release Info
@@ -114,20 +29,20 @@ Supported versions:
11429

11530
- Camunda applications: [8.8](https://github.com/camunda/camunda/releases?q=tag%3A8.8&expanded=true)
11631
- Camunda version matrix: [8.8](https://helm.camunda.io/camunda-platform/version-matrix/camunda-8.8)
117-
- Helm values: [13.0.0](https://artifacthub.io/packages/helm/camunda/camunda-platform/13.0.0#parameters)
118-
- Helm CLI: [3.18.6](https://github.com/helm/helm/releases/tag/v3.18.6)
32+
- Helm values: [13.1.0](https://artifacthub.io/packages/helm/camunda/camunda-platform/13.1.0#parameters)
33+
- Helm CLI: [3.19.0](https://github.com/helm/helm/releases/tag/v3.19.0)
11934

12035
Camunda images:
12136

122-
- docker.io/camunda/camunda:8.8.0
123-
- docker.io/camunda/connectors-bundle:8.8.0
124-
- docker.io/camunda/console:8.8.3
37+
- docker.io/camunda/camunda:8.8.1
38+
- docker.io/camunda/connectors-bundle:8.8.1
39+
- docker.io/camunda/console:8.8.17
12540
- docker.io/camunda/identity:8.8.0
12641
- docker.io/camunda/keycloak:26.3.3
12742
- docker.io/camunda/optimize:8.8.0
128-
- docker.io/camunda/web-modeler-restapi:8.8.0
129-
- docker.io/camunda/web-modeler-webapp:8.8.0
130-
- docker.io/camunda/web-modeler-websockets:8.8.0
43+
- docker.io/camunda/web-modeler-restapi:8.8.1
44+
- docker.io/camunda/web-modeler-webapp:8.8.1
45+
- docker.io/camunda/web-modeler-websockets:8.8.1
13146

13247
Non-Camunda images:
13348

@@ -141,10 +56,10 @@ Non-Camunda images:
14156
For quick verification of the Helm chart integrity using [Cosign](https://docs.sigstore.dev/signing/quickstart/):
14257

14358
```shell
144-
cosign verify-blob camunda-platform-13.0.0.tgz \
145-
--bundle "camunda-platform-13.0.0-cosign-bundle.json" \
59+
cosign verify-blob camunda-platform-13.1.0.tgz \
60+
--bundle "camunda-platform-13.1.0-cosign-bundle.json" \
14661
--certificate-identity-regex "https://github.com/camunda/camunda-platform-helm" \
14762
--certificate-oidc-issuer "https://token.actions.githubusercontent.com"
14863
```
14964

150-
For detailed verification instructions, check the steps in the `camunda-platform-13.0.0-cosign-verify.sh` file.
65+
For detailed verification instructions, check the steps in the `camunda-platform-13.1.0-cosign-verify.sh` file.

version-matrix/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ For the best experience, please remember:
2020

2121
## [Camunda 8.8](./camunda-8.8)
2222

23+
### [Helm chart 13.1.0](./camunda-8.8/#helm-chart-1310)
2324
### [Helm chart 13.0.0](./camunda-8.8/#helm-chart-1300)
2425
### [Helm chart 13.0.0-alpha8](./camunda-8.8/#helm-chart-1300-alpha8)
2526
### [Helm chart 13.0.0-alpha7](./camunda-8.8/#helm-chart-1300-alpha7)
@@ -33,6 +34,7 @@ For the best experience, please remember:
3334

3435
## [Camunda 8.7](./camunda-8.7)
3536

37+
### [Helm chart 12.6.3](./camunda-8.7/#helm-chart-1263)
3638
### [Helm chart 12.6.2](./camunda-8.7/#helm-chart-1262)
3739
### [Helm chart 12.6.1](./camunda-8.7/#helm-chart-1261)
3840
### [Helm chart 12.6.0](./camunda-8.7/#helm-chart-1260)

0 commit comments

Comments
 (0)