Skip to content

Commit cdfa838

Browse files
authored
Merge branch 'main' into release-please--branches--main--components--camunda-platform-8.6
2 parents 102e5f7 + 2ee2982 commit cdfa838

File tree

24 files changed

+1260
-563
lines changed

24 files changed

+1260
-563
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{
22
"charts/camunda-platform-8.3": "8.3.26",
33
"charts/camunda-platform-8.4": "9.7.0",
4-
"charts/camunda-platform-8.5": "10.11.0",
4+
"charts/camunda-platform-8.5": "10.11.1",
55
"charts/camunda-platform-8.6": "11.10.0",
6+
"charts/camunda-platform-8.5": "10.11.1",
7+
"charts/camunda-platform-8.6": "11.9.0",
68
"charts/camunda-platform-8.7": "12.5.0",
79
"charts/camunda-platform-8.8": "13.0.0-alpha7"
810
}

.github/workflows/chart-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ jobs:
218218
- name: Create the script to verify signed Helm chart with Cosign
219219
working-directory: .cr-release-packages
220220
run: |
221-
cat << EOF > ${{ env.CHART_RELEASE_NAME }}-cosign-verify.sh
221+
cat << EOF > ${{ env.CHART_RELEASE_COSIGN_VERIFY_FILE }}
222222
# Rekor.
223223
echo "Rekor record:"
224224
echo "https://search.sigstore.dev/?logIndex=${{ env.CHART_RELEASE_COSIGN_REKOR_LOG_INDEX }}"

Makefile

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,13 +166,23 @@ helm.schema-update:
166166
excluded_versions="camunda-platform-(8\.(2|3|4|5|6|7)|alpha)$$"; \
167167
if echo "$${chart_dir}" | grep -qE "$${excluded_versions}"; then \
168168
echo "\n[$@] Chart dir: $${chart_dir}";\
169-
echo "[$@] This chart version doesn't have schema";\
169+
echo "[$@] This chart version doesn't have schema"; \
170170
continue; \
171171
fi; \
172172
echo "\n[$@] Chart dir: $${chart_dir}"; \
173173
readme-generator \
174174
--values "$${chart_dir}/values.yaml" \
175-
--schema "$${chart_dir}/values.schema.json";\
175+
--schema "$${chart_dir}/values.schema.json"; \
176+
# Merge with extra schema if exists. \
177+
if [ ! -f "$${chart_dir}/values.schema.extra.json" ]; then \
178+
echo "[$@] No extra schema to merge"; \
179+
continue; \
180+
fi; \
181+
echo "[$@] Merging with extra schema"; \
182+
jq --indent 4 -s 'reduce .[] as $$obj ({}; . * $$obj)' \
183+
"$${chart_dir}/values.schema.json" \
184+
"$${chart_dir}/values.schema.extra.json" > "$${chart_dir}/values.schema.tmp.json" \
185+
&& mv "$${chart_dir}/values.schema.tmp.json" "$${chart_dir}/values.schema.json"; \
176186
done
177187

178188
# helm.get-images: list all images in the chart.

charts/camunda-platform-8.5/Chart.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: camunda-platform
3-
version: 10.11.0
3+
version: 10.11.1
44
appVersion: 8.5.x
55
description: |
66
Camunda 8 Self-Managed Helm charts.
@@ -67,8 +67,4 @@ annotations:
6767
- name: Camunda 8 Self-Managed Helm charts
6868
url: https://github.com/camunda/camunda-platform-helm
6969
artifacthub.io/containsSecurityUpdates: "false"
70-
artifacthub.io/changes: |
71-
- kind: added
72-
description: "Backport - implement joinPath helper for constructing paths"
73-
- kind: added
74-
description: "Create extra values file for legacy bitnami repo name"
70+
artifacthub.io/changes: ""
Lines changed: 15 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,26 @@
11
The changelog is automatically generated and it follows [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) format.
2-
3-
## [camunda-platform-10.11.0](https://github.com/camunda/camunda-platform-helm/releases/tag/camunda-platform-10.11.0) (2025-08-29)
4-
5-
### Features
6-
7-
- Backport - implement joinPath helper for constructing paths (#3934)
8-
- Create extra values file for legacy bitnami repo name (#3996)
9-
102
<!-- generated by git-cliff -->
113
### Release Info
124

135
Supported versions:
146

157
- Camunda applications: [8.5](https://github.com/camunda/camunda/releases?q=tag%3A8.5&expanded=true)
168
- Camunda version matrix: [8.5](https://helm.camunda.io/camunda-platform/version-matrix/camunda-8.5)
17-
- Helm values: [10.11.0](https://artifacthub.io/packages/helm/camunda/camunda-platform/10.11.0#parameters)
9+
- Helm values: [10.11.1](https://artifacthub.io/packages/helm/camunda/camunda-platform/10.11.1#parameters)
1810
- Helm CLI: [3.18.6](https://github.com/helm/helm/releases/tag/v3.18.6)
1911

2012
Camunda images:
2113

22-
- docker.io/camunda/connectors-bundle:8.5.20
14+
- docker.io/camunda/connectors-bundle:8.5.21
2315
- docker.io/camunda/identity:8.5.20
24-
- docker.io/camunda/operate:8.5.19
16+
- docker.io/camunda/operate:8.5.20
2517
- docker.io/camunda/optimize:8.5.19
26-
- docker.io/camunda/tasklist:8.5.21
27-
- docker.io/camunda/zeebe:8.5.23
18+
- docker.io/camunda/tasklist:8.5.22
19+
- docker.io/camunda/zeebe:8.5.24
2820
- registry.camunda.cloud/console/console-sm:8.5.118
29-
- registry.camunda.cloud/web-modeler-ee/modeler-restapi:8.5.21
30-
- registry.camunda.cloud/web-modeler-ee/modeler-webapp:8.5.21
31-
- registry.camunda.cloud/web-modeler-ee/modeler-websockets:8.5.21
21+
- registry.camunda.cloud/web-modeler-ee/modeler-restapi:8.5.22
22+
- registry.camunda.cloud/web-modeler-ee/modeler-webapp:8.5.22
23+
- registry.camunda.cloud/web-modeler-ee/modeler-websockets:8.5.22
3224

3325
Non-Camunda images:
3426

@@ -40,11 +32,13 @@ Non-Camunda images:
4032

4133
### Verification
4234

43-
To verify the integrity of the Helm chart using [Cosign](https://docs.sigstore.dev/signing/quickstart/):
35+
For quick verification of the Helm chart integrity using [Cosign](https://docs.sigstore.dev/signing/quickstart/):
4436

4537
```shell
46-
cosign verify-blob camunda-platform-10.11.0.tgz \
47-
--bundle camunda-platform-10.11.0.cosign.bundle \
48-
--certificate-oidc-issuer "https://token.actions.githubusercontent.com" \
49-
--certificate-identity "https://github.com/camunda/camunda-platform-helm/.github/workflows/chart-release-chores.yml@refs/pull/4018/merge"
38+
cosign verify-blob camunda-platform-10.11.1.tgz \
39+
--bundle "camunda-platform-10.11.1-cosign-bundle.json" \
40+
--certificate-identity-regex "https://github.com/camunda/camunda-platform-helm" \
41+
--certificate-oidc-issuer "https://token.actions.githubusercontent.com"
5042
```
43+
44+
For detailed verification instructions, check the steps in the `camunda-platform-10.11.1-cosign-verify.sh` file.

charts/camunda-platform-8.7/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
591591
| `console.overrideConfiguration` | When populated, it will override the configuration passed to Console, either auto-generated configuration or passed via `console.configuration` | `""` |
592592
| `console.image.registry` | can be used to set container image registry. | `""` |
593593
| `console.image.repository` | defines which image repository to use | `camunda/console` |
594-
| `console.image.tag` | can be used to set the Docker image tag for the Console image (overwrites global.image.tag) | `8.7.60` |
594+
| `console.image.tag` | can be used to set the Docker image tag for the Console image (overwrites global.image.tag) | `8.7.62` |
595595
| `console.image.digest` | can be used to set image digest (overrides tag if set, e.g. "sha256:abcd...") | `""` |
596596
| `console.image.pullSecrets` | can be used to configure image pull secrets https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod | `[]` |
597597
| `console.sidecars` | can be used to attach extra containers to the console deployment | `[]` |
@@ -1394,7 +1394,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
13941394
| `identityKeycloak.resources.limits.memory` | | `2Gi` |
13951395
| `identityKeycloak.image` | configuration. | |
13961396
| `identityKeycloak.image.repository` | image repo | `camunda/keycloak` |
1397-
| `identityKeycloak.image.tag` | image tag | `26.3.1` |
1397+
| `identityKeycloak.image.tag` | image tag | `26.3.2` |
13981398
| `identityKeycloak.image.digest` | can be used to set image digest (overrides tag if set, e.g. "sha256:abcd...") | `""` |
13991399
| `identityKeycloak.postgresql` | configuration. | |
14001400
| `identityKeycloak.postgresql.image.repository` | image repo | `bitnamilegacy/postgresql` |

charts/camunda-platform-8.7/test/unit/camunda/golden/keycloak-statefulset.golden.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ spec:
6161
enableServiceLinks: true
6262
initContainers:
6363
- name: prepare-write-dirs
64-
image: docker.io/camunda/keycloak:26.3.1
64+
image: docker.io/camunda/keycloak:26.3.2
6565
imagePullPolicy: IfNotPresent
6666
command:
6767
- /bin/bash
@@ -103,7 +103,7 @@ spec:
103103
mountPath: /emptydir
104104
containers:
105105
- name: keycloak
106-
image: docker.io/camunda/keycloak:26.3.1
106+
image: docker.io/camunda/keycloak:26.3.2
107107
imagePullPolicy: IfNotPresent
108108
securityContext:
109109
allowPrivilegeEscalation: false

charts/camunda-platform-8.7/test/unit/console/golden/configmap.golden.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
app.kubernetes.io/managed-by: Helm
1212
app.kubernetes.io/part-of: camunda-platform
1313
app.kubernetes.io/component: console
14-
app.kubernetes.io/version: "8.7.60"
14+
app.kubernetes.io/version: "8.7.62"
1515
data:
1616
application.yaml: |-
1717
# https://docs.camunda.io/docs/self-managed/console-deployment/configuration/

charts/camunda-platform-8.7/test/unit/console/golden/deployment.golden.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
app.kubernetes.io/managed-by: Helm
1212
app.kubernetes.io/part-of: camunda-platform
1313
app.kubernetes.io/component: console
14-
app.kubernetes.io/version: "8.7.60"
14+
app.kubernetes.io/version: "8.7.62"
1515
annotations:
1616
{}
1717
spec:
@@ -49,7 +49,7 @@ spec:
4949
type: RuntimeDefault
5050
containers:
5151
- name: camunda-platform
52-
image: camunda/console:8.7.60
52+
image: camunda/console:8.7.62
5353
imagePullPolicy: IfNotPresent
5454
securityContext:
5555
allowPrivilegeEscalation: false

charts/camunda-platform-8.7/test/unit/console/golden/ingress-all-enabled.golden.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
app.kubernetes.io/managed-by: Helm
1212
app.kubernetes.io/part-of: camunda-platform
1313
app.kubernetes.io/component: console
14-
app.kubernetes.io/version: "8.7.60"
14+
app.kubernetes.io/version: "8.7.62"
1515
annotations:
1616
ingress.kubernetes.io/rewrite-target: /
1717
nginx.ingress.kubernetes.io/proxy-buffer-size: 128k

0 commit comments

Comments
 (0)