Skip to content

Commit

Permalink
add helm values files
Browse files Browse the repository at this point in the history
  • Loading branch information
leiicamundi committed Oct 14, 2024
1 parent 622b051 commit 67f9251
Show file tree
Hide file tree
Showing 4 changed files with 124 additions and 0 deletions.
53 changes: 53 additions & 0 deletions examples/camunda-8.6-irsa/helm-values/values-domain.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
identityKeycloak:
postgresql:
enabled: false
externalDatabase:
host: ${DB_HOST}
user: ${PG_USERNAME}
password: ${PG_PASSWORD}
database: ${DEFAULT_DB_NAME}

global:
ingress:
enabled: true
host: ${DOMAIN_NAME}
tls:
enabled: true
secretName: camunda-c8-tls
annotations:
kubernetes.io/tls-acme: 'true'
identity:
auth:
publicIssuerUrl: https://${DOMAIN_NAME}/auth/realms/camunda-platform
operate:
redirectUrl: https://${DOMAIN_NAME}/operate
tasklist:
redirectUrl: https://${DOMAIN_NAME}/tasklist
optimize:
redirectUrl: https://${DOMAIN_NAME}/optimize

identity:
contextPath: /identity
fullURL: https://${DOMAIN_NAME}/identity

operate:
contextPath: /operate

tasklist:
contextPath: /tasklist

optimize:
contextPath: /optimize

zeebeGateway:
ingress:
grpc:
enabled: true
host: zeebe.${DOMAIN_NAME}
tls:
enabled: true
secretName: zeebe-c8-tls-grpc
annotations:
kubernetes.io/tls-acme: 'true'
contextPath: /zeebe
9 changes: 9 additions & 0 deletions examples/camunda-8.6-irsa/helm-values/values-no-domain.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
identityKeycloak:
postgresql:
enabled: false
externalDatabase:
host: ${DB_HOST}
user: ${PG_USERNAME}
password: ${PG_PASSWORD}
database: ${DEFAULT_DB_NAME}
53 changes: 53 additions & 0 deletions examples/camunda-8.6/helm-values/values-domain.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
identityKeycloak:
postgresql:
enabled: false
externalDatabase:
host: ${DB_HOST}
user: ${PG_USERNAME}
password: ${PG_PASSWORD}
database: ${DEFAULT_DB_NAME}

global:
ingress:
enabled: true
host: ${DOMAIN_NAME}
tls:
enabled: true
secretName: camunda-c8-tls
annotations:
kubernetes.io/tls-acme: 'true'
identity:
auth:
publicIssuerUrl: https://${DOMAIN_NAME}/auth/realms/camunda-platform
operate:
redirectUrl: https://${DOMAIN_NAME}/operate
tasklist:
redirectUrl: https://${DOMAIN_NAME}/tasklist
optimize:
redirectUrl: https://${DOMAIN_NAME}/optimize

identity:
contextPath: /identity
fullURL: https://${DOMAIN_NAME}/identity

operate:
contextPath: /operate

tasklist:
contextPath: /tasklist

optimize:
contextPath: /optimize

zeebeGateway:
ingress:
grpc:
enabled: true
host: zeebe.${DOMAIN_NAME}
tls:
enabled: true
secretName: zeebe-c8-tls-grpc
annotations:
kubernetes.io/tls-acme: 'true'
contextPath: /zeebe
9 changes: 9 additions & 0 deletions examples/camunda-8.6/helm-values/values-no-domain.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
identityKeycloak:
postgresql:
enabled: false
externalDatabase:
host: ${DB_HOST}
user: ${PG_USERNAME}
password: ${PG_PASSWORD}
database: ${DEFAULT_DB_NAME}

0 comments on commit 67f9251

Please sign in to comment.