fix(ingress): add next-gen.techarvest.co.zw domain host rule to next-gen-main ingress
Build and Push Docker Images / build (api) (push) Successful in 1m3s Details
Build and Push Docker Images / build (musicseerr) (push) Successful in 6m2s Details
Build and Push Docker Images / build (web) (push) Successful in 2m19s Details
Build and Push Docker Images / build (nextgen) (push) Successful in 14m2s Details
Build and Push Docker Images / build (worker) (push) Successful in 12m12s Details
Build and Push Docker Images / deploy (push) Failing after 14s Details

This commit is contained in:
fchinembiri 2026-07-31 18:57:35 +02:00
parent a8cf05dd8c
commit 6195295c83
1 changed files with 15 additions and 0 deletions

View File

@ -12,6 +12,9 @@ spec:
tls:
- hosts:
- {{ .Values.ingress.host | quote }}
{{- if eq .Values.branchName "main" }}
- "next-gen.techarvest.co.zw"
{{- end }}
secretName: {{ printf "%s-tls" .Release.Name }}
rules:
- host: {{ .Values.ingress.host | quote }}
@ -24,4 +27,16 @@ spec:
name: {{ .Release.Name }}
port:
number: {{ .Values.service.port }}
{{- if eq .Values.branchName "main" }}
- host: "next-gen.techarvest.co.zw"
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: {{ .Release.Name }}
port:
number: {{ .Values.service.port }}
{{- end }}
{{- end }}