Used www hostnames for internal routes

This commit is contained in:
Arvind Prabhakar 2026-06-24 18:50:42 +00:00
commit 6949d5d5a9
19 changed files with 1644 additions and 9 deletions

View file

@ -0,0 +1,24 @@
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: openproject
namespace: {{ .Release.Namespace }}
spec:
parentRefs:
- name: {{ .Values.gateway.name }}
namespace: {{ .Values.gateway.namespace }}
hostnames:
{{- range .Values.hostnames }}
- {{ . | quote }}
{{- end }}
rules:
- matches:
- path:
type: PathPrefix
value: {{ .Values.basePath | quote }}
backendRefs:
- name: {{ .Values.service.name }}
port: {{ .Values.service.port }}