Skip to content

Commit c1998df

Browse files
authored
chore: Add orchestrator deployment to RBAC deployment (#3087)
1 parent 2448acc commit c1998df

2 files changed

Lines changed: 40 additions & 2 deletions

File tree

.ibm/pipelines/utils.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -888,8 +888,6 @@ base_deployment() {
888888

889889
deploy_redis_cache "${NAME_SPACE}"
890890

891-
install_orchestrator_infra_chart
892-
893891
cd "${DIR}"
894892
local rhdh_base_url="https://${RELEASE_NAME}-developer-hub-${NAME_SPACE}.${K8S_CLUSTER_ROUTER_BASE}"
895893
apply_yaml_files "${DIR}" "${NAME_SPACE}" "${rhdh_base_url}"
@@ -911,6 +909,7 @@ rbac_deployment() {
911909

912910
initiate_deployments() {
913911
cd "${DIR}"
912+
install_orchestrator_infra_chart
914913
base_deployment
915914
rbac_deployment
916915
}

.ibm/pipelines/value_files/values_showcase-rbac.yaml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,3 +337,42 @@ upstream:
337337
enabled: false
338338
auth:
339339
existingSecret: postgres-cred
340+
341+
342+
orchestrator:
343+
enabled: false
344+
serverlessLogicOperator:
345+
enabled: true
346+
serverlessOperator:
347+
enabled: true
348+
sonataflowPlatform:
349+
monitoring:
350+
enabled: true
351+
eventing:
352+
broker:
353+
name: ""
354+
namespace: ""
355+
resources:
356+
requests:
357+
memory: "64Mi"
358+
cpu: "250m"
359+
limits:
360+
memory: "1Gi"
361+
cpu: "500m"
362+
# -- Secret name for the user-created secret to connect an external DB
363+
externalDBsecretRef: "postgres-cred"
364+
365+
# -- Name for the user-configured external Database
366+
externalDBName: "postgress-external-db"
367+
368+
# -- Host for the user-configured external Database
369+
externalDBHost: "${POSTGRES_HOST}"
370+
371+
# -- Port for the user-configured external Database
372+
externalDBPort: "${POSTGRES_PORT}"
373+
374+
# -- Image for the init container used by the create-db job
375+
initContainerImage: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-16.3-1"
376+
377+
# -- Image for the container used by the create-db job
378+
createDBJobImage: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-16.3-1"

0 commit comments

Comments
 (0)