mirror of
https://github.com/morten-olsen/homelab-apps.git
synced 2026-02-08 01:36:28 +01:00
19 lines
417 B
YAML
19 lines
417 B
YAML
apiVersion: networking.istio.io/v1
|
|
kind: VirtualService
|
|
metadata:
|
|
name: "{{ .Release.Name }}"
|
|
namespace: "{{ .Release.Namespace }}"
|
|
spec:
|
|
gateways:
|
|
- "{{ .Values.globals.istio.gateway }}"
|
|
- mesh
|
|
hosts:
|
|
- "{{ .Values.subdomain }}.{{ .Values.globals.domain }}"
|
|
- mesh
|
|
http:
|
|
- route:
|
|
- destination:
|
|
host: "{{ .Release.Name }}"
|
|
port:
|
|
number: 80
|