Skip to content

Commit

Permalink
add routes
Browse files Browse the repository at this point in the history
  • Loading branch information
leiicamundi committed Nov 19, 2024
1 parent 7624be6 commit 91133fe
Show file tree
Hide file tree
Showing 3 changed files with 116 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
global:

# the ingress is manages directly by the Route manifests ../manifest/routes.yml
ingress:
enabled: true
host: ${DOMAIN_NAME}
tls:
enabled: true
enabled: false

identity:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ zeebeGateway:
# this is the external route certificate
secretName: camunda-platform-external-certificate
hosts:
- host: zeebe.${DOMAIN_NAME}
- host: zeebe-${DOMAIN_NAME}

# mount the Service certificate in the pod
env:
Expand Down
112 changes: 112 additions & 0 deletions aws/rosa-hcp/camunda-versions/8.7/procedure/manifests/routes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
---

apiVersion: route.openshift.io/v1
kind: Route
metadata:
name: route-camunda-platform
spec:
host: ${DOMAIN_NAME}
to:
kind: Service
name: camunda-keycloak
port:
targetPort: 80
path: /auth/
---

apiVersion: route.openshift.io/v1
kind: Route
metadata:
name: route-camunda-identity
spec:
host: ${DOMAIN_NAME}
to:
kind: Service
name: camunda-identity
port:
targetPort: 80
path: /identity/
---

apiVersion: route.openshift.io/v1
kind: Route
metadata:
name: route-camunda-operate
spec:
host: ${DOMAIN_NAME}
to:
kind: Service
name: camunda-operate
port:
targetPort: 80
path: /operate/
---

apiVersion: route.openshift.io/v1
kind: Route
metadata:
name: route-camunda-optimize
spec:
host: ${DOMAIN_NAME}
to:
kind: Service
name: camunda-optimize
port:
targetPort: 80
path: /optimize/
---

apiVersion: route.openshift.io/v1
kind: Route
metadata:
name: route-camunda-tasklist
spec:
host: ${DOMAIN_NAME}
to:
kind: Service
name: camunda-tasklist
port:
targetPort: 80
path: /tasklist/
---

apiVersion: route.openshift.io/v1
kind: Route
metadata:
name: route-camunda-zeebe-gateway
spec:
host: ${DOMAIN_NAME}
to:
kind: Service
name: camunda-zeebe-gateway
port:
targetPort: 8080
path: /zeebe/
---

apiVersion: route.openshift.io/v1
kind: Route
metadata:
name: route-camunda-console
spec:
host: ${DOMAIN_NAME}
to:
kind: Service
name: camunda-console
port:
targetPort: 80
path: /console/
---

apiVersion: route.openshift.io/v1
kind: Route
metadata:
name: route-camunda-webmodeler-restapi
spec:
host: ${DOMAIN_NAME}
to:
kind: Service
name: camunda-webmodeler-restapi
port:
targetPort: 80
path: /modeler/

0 comments on commit 91133fe

Please sign in to comment.