Skip to content

Commit

Permalink
Merge branch 'main' into 2525-fix-grpc-auth
Browse files Browse the repository at this point in the history
  • Loading branch information
leiicamundi committed Dec 20, 2024
2 parents b5010a9 + 0b88c6f commit 3afc6d1
Show file tree
Hide file tree
Showing 64 changed files with 170 additions and 109 deletions.
65 changes: 65 additions & 0 deletions .github/config/pr-labeler.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,51 @@
#
# Versions.

version/alpha:
- changed-files:
- any-glob-to-any-file:
- 'charts/camunda-platform-alpha/**'

version/8.9:
- changed-files:
- any-glob-to-any-file:
- 'charts/camunda-platform-8.9/**'

version/8.8:
- changed-files:
- any-glob-to-any-file:
- 'charts/camunda-platform-8.8/**'

version/8.7:
- changed-files:
- any-glob-to-any-file:
- 'charts/camunda-platform-8.7/**'

version/8.6:
- changed-files:
- any-glob-to-any-file:
- 'charts/camunda-platform-8.6/**'

version/8.5:
- changed-files:
- any-glob-to-any-file:
- 'charts/camunda-platform-8.5/**'

version/8.4:
- changed-files:
- any-glob-to-any-file:
- 'charts/camunda-platform-8.4/**'

version/8.3:
- changed-files:
- any-glob-to-any-file:
- 'charts/camunda-platform-8.3/**'

version/8.2:
- changed-files:
- any-glob-to-any-file:
- 'charts/camunda-platform-8.2/**'

#
# Components.

Expand Down Expand Up @@ -52,13 +100,20 @@ component/zeebe:
- 'charts/camunda-platform-*/charts/zeebe/**'
- 'charts/camunda-platform-*/templates/zeebe-gateway/**'
- 'charts/camunda-platform-*/charts/zeebe-gateway/**'

component/core:
- changed-files:
- any-glob-to-any-file:
- 'charts/camunda-platform-*/templates/core/**'

#
# Tools.

tool/github-actions:
- changed-files:
- any-glob-to-any-file:
- '.github/actions/**'
- '.github/config/**'
- '.github/workflows/**'

tool/release-please:
Expand All @@ -81,3 +136,13 @@ tool/script:
- any-glob-to-any-file:
- 'Makefile'
- 'scripts/**'

#
# Workflows.

area/ci:
- changed-files:
- any-glob-to-any-file:
- '.github/actions/**'
- '.github/config/**'
- '.github/workflows/**'
4 changes: 2 additions & 2 deletions charts/camunda-platform-8.5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
| `webModeler.nameOverride` | can be used to partly override the name of the WebModeler resources (names will still be prefixed with the release name) | `""` |
| `webModeler.image` | configuration of the WebModeler Docker images | |
| `webModeler.image.registry` | can be used to set the Docker registry for the WebModeler images (overwrites global.image.registry) | `registry.camunda.cloud` |
| `webModeler.image.tag` | can be used to set the Docker image tag for the WebModeler images (overwrites global.image.tag) | `8.5.12` |
| `webModeler.image.tag` | can be used to set the Docker image tag for the WebModeler images (overwrites global.image.tag) | `8.5.13` |
| `webModeler.image.pullSecrets` | can be used to configure image pull secrets, see https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod | `[]` |
| `webModeler.contextPath` | can be used to make WebModeler available on a custom sub-path. This is mainly used to run the Camunda web applications under a single domain. | `""` |

Expand Down Expand Up @@ -1657,7 +1657,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
| `postgresql.enabled` | if true, a PostgreSQL database will be deployed as part of the Helm release by using the dependency chart | `false` |
| `postgresql.nameOverride` | defines the name of the Postgres resources (names will be prefixed with the release name), see https://github.com/bitnami/charts/tree/main/bitnami/postgresql#common-parameters | `postgresql-web-modeler` |
| `postgresql.image.repository` | PostgreSQL repo | `bitnami/postgresql` |
| `postgresql.image.tag` | PostgreSQL image tag | `14.15.0-debian-12-r2` |
| `postgresql.image.tag` | PostgreSQL image tag | `14.15.0-debian-12-r3` |
| `postgresql.auth` | configuration of the database authentication | |
| `postgresql.auth.username` | defines the name of the database user to be created for WebModeler | `web-modeler` |
| `postgresql.auth.password` | can be used to provide the database user's password; a random password will be generated if left empty / ignored if `postgresql.auth.existingSecret` is set | `""` |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ metadata:
labels: {{- include "webModeler.labels" . | nindent 4 }}
annotations: {{- toYaml .Values.global.annotations | nindent 4 }}
data:
pusher-app-id: web-modeler
pusher-app-key: {{ randAlphaNum 20 }}
{{- if .Values.webModeler.restapi.configuration }}
application.yaml: |
{{ .Values.webModeler.restapi.configuration | indent 4 | trim }}
Expand All @@ -26,7 +24,7 @@ data:
pusher:
host: {{ include "webModeler.websockets.fullname" . | quote }}
port: {{ .Values.webModeler.websockets.service.port }}
security:
jwt:
issuer:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ metadata:
labels: {{- include "webModeler.labels" . | nindent 4 }}
annotations: {{- toYaml .Values.global.annotations | nindent 4 }}
data:
pusher-app-id: web-modeler
pusher-app-key: {{ randAlphaNum 20 }}
{{- if .Values.webModeler.webapp.configuration }}
application.toml: |
{{ .Values.webModeler.webapp.configuration | indent 4 | trim }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/part-of: camunda-platform
app.kubernetes.io/component: web-modeler
app.kubernetes.io/version: "8.5.12"
app.kubernetes.io/version: "8.5.13"
annotations:
{}
data:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
[]
containers:
- name: web-modeler-restapi
image: "registry.camunda.cloud/web-modeler-ee/modeler-restapi:8.5.12"
image: "registry.camunda.cloud/web-modeler-ee/modeler-restapi:8.5.13"
imagePullPolicy: IfNotPresent
securityContext:
allowPrivilegeEscalation: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
[]
containers:
- name: web-modeler-webapp
image: "registry.camunda.cloud/web-modeler-ee/modeler-webapp:8.5.12"
image: "registry.camunda.cloud/web-modeler-ee/modeler-webapp:8.5.13"
imagePullPolicy: IfNotPresent
securityContext:
allowPrivilegeEscalation: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
[]
containers:
- name: web-modeler-websockets
image: "registry.camunda.cloud/web-modeler-ee/modeler-websockets:8.5.12"
image: "registry.camunda.cloud/web-modeler-ee/modeler-websockets:8.5.13"
imagePullPolicy: IfNotPresent
securityContext:
allowPrivilegeEscalation: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/part-of: camunda-platform
app.kubernetes.io/component: web-modeler
app.kubernetes.io/version: "8.5.12"
app.kubernetes.io/version: "8.5.13"
annotations:
ingress.kubernetes.io/rewrite-target: /
nginx.ingress.kubernetes.io/proxy-buffer-size: 128k
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/part-of: camunda-platform
app.kubernetes.io/component: web-modeler
app.kubernetes.io/version: "8.5.12"
app.kubernetes.io/version: "8.5.13"
annotations:
ingress.kubernetes.io/rewrite-target: /
nginx.ingress.kubernetes.io/proxy-buffer-size: 128k
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/part-of: camunda-platform
app.kubernetes.io/component: web-modeler
app.kubernetes.io/version: "8.5.12"
app.kubernetes.io/version: "8.5.13"
annotations:
{}
type: Opaque
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ metadata:
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/part-of: camunda-platform
app.kubernetes.io/component: web-modeler
app.kubernetes.io/version: "8.5.12"
app.kubernetes.io/version: "8.5.13"
automountServiceAccountToken: false
12 changes: 6 additions & 6 deletions charts/camunda-platform-8.5/values-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ operate:
# https://hub.docker.com/r/camunda/operate/tags
image:
repository: camunda/operate
tag: 8.5.4
tag: 8.5.9

optimize:
# https://hub.docker.com/r/camunda/optimize/tags
Expand All @@ -42,26 +42,26 @@ tasklist:
# https://hub.docker.com/r/camunda/tasklist/tags
image:
repository: camunda/tasklist
tag: 8.5.2
tag: 8.5.10

webModeler:
# Camunda Enterprise repository.
# registry.camunda.cloud/web-modeler-ee
image:
# renovate: datasource=docker depName=camunda/web-modeler lookupName=registry.camunda.cloud/web-modeler-ee/modeler-restapi
tag: 8.5.12
tag: 8.5.13

zeebe:
# https://hub.docker.com/r/camunda/zeebe/tags
image:
repository: camunda/zeebe
tag: 8.5.3
tag: 8.5.10

zeebeGateway:
# https://hub.docker.com/r/camunda/zeebe/tags
image:
repository: camunda/zeebe
tag: 8.5.3
tag: 8.5.10

#
# Identity
Expand All @@ -71,7 +71,7 @@ identity:
# https://hub.docker.com/r/camunda/identity/tags
image:
repository: camunda/identity
tag: 8.5.5
tag: 8.5.10

identityKeycloak:
# https://hub.docker.com/r/bitnami/keycloak/tags
Expand Down
4 changes: 2 additions & 2 deletions charts/camunda-platform-8.5/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2511,7 +2511,7 @@ webModeler:
registry: registry.camunda.cloud
## @param webModeler.image.tag can be used to set the Docker image tag for the WebModeler images (overwrites global.image.tag)
# renovate: datasource=docker depName=camunda/web-modeler lookupName=registry.camunda.cloud/web-modeler-ee/modeler-restapi
tag: 8.5.12
tag: 8.5.13
## @param webModeler.image.pullSecrets can be used to configure image pull secrets, see https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod
# Note: A secret will be required, if the WebModeler images are pulled directly from Camunda's private registry.
#
Expand Down Expand Up @@ -3132,7 +3132,7 @@ postgresql:
## @param postgresql.image.tag PostgreSQL image tag
image:
repository: bitnami/postgresql
tag: 14.15.0-debian-12-r2
tag: 14.15.0-debian-12-r3
## @extra postgresql.auth configuration of the database authentication
auth:
## @param postgresql.auth.username defines the name of the database user to be created for WebModeler
Expand Down
2 changes: 1 addition & 1 deletion charts/camunda-platform-8.6/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies:
# Shared Dependencies.
- name: elasticsearch
repository: oci://registry-1.docker.io/bitnamicharts
version: 21.4.0
version: 21.4.1
condition: "elasticsearch.enabled"
# Helpers.
- name: common
Expand Down
6 changes: 3 additions & 3 deletions charts/camunda-platform-8.6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
| `console.configuration` | Configuration passed directly to Console as YAML file. More details on [Console official documenations](https://docs.camunda.io/docs/self-managed/console-deployment/configuration/) | `""` |
| `console.image.registry` | can be used to set container image registry. | `""` |
| `console.image.repository` | defines which image repository to use | `camunda/console` |
| `console.image.tag` | can be used to set the Docker image tag for the Console image (overwrites global.image.tag) | `8.6.37` |
| `console.image.tag` | can be used to set the Docker image tag for the Console image (overwrites global.image.tag) | `8.6.41` |
| `console.image.pullSecrets` | can be used to configure image pull secrets https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod | `[]` |
| `console.sidecars` | can be used to attach extra containers to the console deployment | `[]` |
| `console.replicas` | Number of Console replicas | `1` |
Expand Down Expand Up @@ -1490,7 +1490,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
| `webModeler.nameOverride` | can be used to partly override the name of the WebModeler resources (names will still be prefixed with the release name) | `""` |
| `webModeler.image` | configuration of the WebModeler Docker images | |
| `webModeler.image.registry` | can be used to set the Docker registry for the WebModeler images (overwrites global.image.registry) | `""` |
| `webModeler.image.tag` | can be used to set the Docker image tag for the WebModeler images (overwrites global.image.tag) | `8.6.4` |
| `webModeler.image.tag` | can be used to set the Docker image tag for the WebModeler images (overwrites global.image.tag) | `8.6.5` |
| `webModeler.image.pullSecrets` | can be used to configure image pull secrets, see https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod | `[]` |
| `webModeler.contextPath` | can be used to make WebModeler available on a custom sub-path. This is mainly used to run the Camunda web applications under a single domain. | `""` |

Expand Down Expand Up @@ -1759,7 +1759,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
| `postgresql.global.compatibility.openshift.adaptSecurityContext` | Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: force (perform the adaptation always), disabled (do not perform adaptation) | `{{ .Values.global.compatibility.openshift.adaptSecurityContext | default "disabled" }}` |
| `postgresql.nameOverride` | defines the name of the Postgres resources (names will be prefixed with the release name), see https://github.com/bitnami/charts/tree/main/bitnami/postgresql#common-parameters | `postgresql-web-modeler` |
| `postgresql.image.repository` | PostgreSQL repo | `bitnami/postgresql` |
| `postgresql.image.tag` | PostgreSQL image tag | `14.15.0-debian-12-r2` |
| `postgresql.image.tag` | PostgreSQL image tag | `14.15.0-debian-12-r3` |
| `postgresql.auth` | configuration of the database authentication | |
| `postgresql.auth.username` | defines the name of the database user to be created for WebModeler | `web-modeler` |
| `postgresql.auth.password` | can be used to provide the database user's password; a random password will be generated if left empty / ignored if `postgresql.auth.existingSecret` is set | `""` |
Expand Down
Loading

0 comments on commit 3afc6d1

Please sign in to comment.