kubezero/charts/kubezero-metrics/templates/istio-service.yaml

24 lines
453 B
YAML
Raw Normal View History

{{- range $name, $service := .Values.istio }}
{{- if $service.enabled }}
2020-08-03 15:24:32 +00:00
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: {{ $name }}
namespace: {{ $.Release.Namespace }}
2020-08-06 17:15:20 +00:00
labels:
{{ include "kubezero-lib.labels" $ | indent 4 }}
2020-08-03 15:24:32 +00:00
spec:
hosts:
- {{ index $service.url }}
2020-08-03 15:24:32 +00:00
gateways:
- {{ index $service.gateway }}
2020-08-03 15:24:32 +00:00
http:
- route:
- destination:
host: metrics-{{- $name }}
2020-10-05 11:31:00 +00:00
---
{{- end }}
2020-08-03 16:44:58 +00:00
{{- end }}