Skip to content

Commit

Permalink
fix default values for webmodeler with mandatory parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
leiicamundi committed Oct 25, 2024
1 parent 8af0389 commit 44e257c
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 1 deletion.
5 changes: 5 additions & 0 deletions examples/camunda-8.6-irsa/helm-values/values-domain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,14 @@ webModeler:
externalDatabase:
url: jdbc:aws-wrapper:postgresql://${DB_HOST}:5432/${DB_WEBMODELER_NAME}?wrapperPlugins=iam
user: ${DB_WEBMODELER_USERNAME}
existingSecret: identity-secret-for-components # this fake password reference is needed to let the chart deploy webmodeler
existingSecretPasswordKey: password
env:
- name: SPRING_DATASOURCE_DRIVER_CLASS_NAME
value: software.amazon.jdbc.Driver
mail:
existingSecret: identity-secret-for-components # reference the smtp password
fromAddress: [email protected] # change this required value

identity:
contextPath: /identity
Expand Down
7 changes: 7 additions & 0 deletions examples/camunda-8.6-irsa/helm-values/values-no-domain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ global:
name: identity-secret-for-components

webModeler:
enabled: false # by default, webModeler is not enabled

serviceAccount:
name: ${CAMUNDA_WEBMODELER_SERVICE_ACCOUNT_NAME}
annotations:
Expand All @@ -70,9 +72,14 @@ webModeler:
externalDatabase:
url: jdbc:aws-wrapper:postgresql://${DB_HOST}:5432/${DB_WEBMODELER_NAME}?wrapperPlugins=iam
user: ${DB_WEBMODELER_USERNAME}
existingSecret: identity-secret-for-components # this fake password reference is needed to let the chart deploy webmodeler
existingSecretPasswordKey: password
env:
- name: SPRING_DATASOURCE_DRIVER_CLASS_NAME
value: software.amazon.jdbc.Driver
mail:
existingSecret: identity-secret-for-components # reference the smtp password
fromAddress: [email protected] # change this required value


identity:
Expand Down
3 changes: 3 additions & 0 deletions examples/camunda-8.6/helm-values/values-domain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ webModeler:
user: ${DB_WEBMODELER_USERNAME}
existingSecret: webmodeler-postgres-secret
existingSecretPasswordKey: password
mail:
existingSecret: identity-secret-for-components # reference the smtp password
fromAddress: [email protected] # change this required value

optimize:
contextPath: /optimize
Expand Down
3 changes: 3 additions & 0 deletions examples/camunda-8.6/helm-values/values-no-domain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ webModeler:
user: ${DB_WEBMODELER_USERNAME}
existingSecret: webmodeler-postgres-secret
existingSecretPasswordKey: password
mail:
existingSecret: identity-secret-for-components # reference the smtp password
fromAddress: [email protected] # change this required value

optimize:
migration:
Expand Down
5 changes: 5 additions & 0 deletions examples/camunda-8.7-irsa/helm-values/values-domain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,14 @@ webModeler:
externalDatabase:
url: jdbc:aws-wrapper:postgresql://${DB_HOST}:5432/${DB_WEBMODELER_NAME}?wrapperPlugins=iam
user: ${DB_WEBMODELER_USERNAME}
existingSecret: identity-secret-for-components # this fake password reference is needed to let the chart deploy webmodeler
existingSecretPasswordKey: password
env:
- name: SPRING_DATASOURCE_DRIVER_CLASS_NAME
value: software.amazon.jdbc.Driver
mail:
existingSecret: identity-secret-for-components # reference the smtp password
fromAddress: [email protected] # change this required value

identity:
contextPath: /identity
Expand Down
8 changes: 7 additions & 1 deletion examples/camunda-8.7-irsa/helm-values/values-no-domain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ global:
name: identity-secret-for-components

webModeler:
enabled: false # by default, webModeler is not enabled

serviceAccount:
name: ${CAMUNDA_WEBMODELER_SERVICE_ACCOUNT_NAME}
annotations:
Expand All @@ -70,10 +72,14 @@ webModeler:
externalDatabase:
url: jdbc:aws-wrapper:postgresql://${DB_HOST}:5432/${DB_WEBMODELER_NAME}?wrapperPlugins=iam
user: ${DB_WEBMODELER_USERNAME}
existingSecret: identity-secret-for-components # this fake password reference is needed to let the chart deploy webmodeler
existingSecretPasswordKey: password
env:
- name: SPRING_DATASOURCE_DRIVER_CLASS_NAME
value: software.amazon.jdbc.Driver

mail:
existingSecret: identity-secret-for-components # reference the smtp password
fromAddress: [email protected] # change this required value

identity:
serviceAccount:
Expand Down
3 changes: 3 additions & 0 deletions examples/camunda-8.7/helm-values/values-domain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ webModeler:
user: ${DB_WEBMODELER_USERNAME}
existingSecret: webmodeler-postgres-secret
existingSecretPasswordKey: password
mail:
existingSecret: identity-secret-for-components # reference the smtp password
fromAddress: [email protected] # change this required value

optimize:
contextPath: /optimize
Expand Down
3 changes: 3 additions & 0 deletions examples/camunda-8.7/helm-values/values-no-domain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ webModeler:
user: ${DB_WEBMODELER_USERNAME}
existingSecret: webmodeler-postgres-secret
existingSecretPasswordKey: password
mail:
existingSecret: identity-secret-for-components # reference the smtp password
fromAddress: [email protected] # change this required value

optimize:
migration:
Expand Down

0 comments on commit 44e257c

Please sign in to comment.