Integrating front and workspace service

This commit is contained in:
plm
2025-01-08 23:05:38 +01:00
parent 10b01fdc40
commit f868400b7a
11 changed files with 236 additions and 31 deletions

View File

@@ -0,0 +1,17 @@
{{- if index .Values.ocFront.enabled }}
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: oc-front-ingress
spec:
entryPoints:
- web
routes:
- kind: Rule
match: Host(`{{ .Values.host }}`) && PathPrefix(`/`)
priority: 10
services:
- kind: Service
name: oc-front-svc
port: 8080
{{- end }}