Skip to content

Commit

Permalink
feat: adding application override to console (#2594)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamza-m-masood authored Nov 21, 2024
1 parent 18a8314 commit e9d0c48
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions charts/camunda-platform-alpha/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -708,6 +708,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
| `console` | configuration for the Console. | |
| `console.enabled` | if true, the Console deployment and its related resources are deployed via a helm release | `false` |
| `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.overrideConfiguration` | When populated, it will override the configuration passed to Console, either auto-generated configuration or passed via `console.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.7.0-alpha1` |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,10 @@ data:
releases:
{{- include "camundaPlatform.releaseInfo" . | nindent 10 }}
{{- end }}
{{- if .Values.console.overrideConfiguration }}
application-override.yaml: |-
{{- if .Values.console.overrideConfiguration }}
{{- include "common.tplvalues.render" ( dict "value" .Values.console.overrideConfiguration "context" $ ) | nindent 4 }}
{{- end }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions charts/camunda-platform-alpha/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -889,6 +889,8 @@ console:

## @param 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/)
configuration: ""
##@param console.overrideConfiguration When populated, it will override the configuration passed to Console, either auto-generated configuration or passed via `console.configuration`
overrideConfiguration: ""

## console.image configuration to configure the Console image specifics
# https://hub.docker.com/r/camunda/console/tags
Expand Down

0 comments on commit e9d0c48

Please sign in to comment.