This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
myappziugv/chart/myappziugv/templates/istio.yaml

19 lines
413 B
YAML

{{ if .Values.istio.enabled }}
apiVersion: config.istio.io/v1alpha2
kind: RouteRule
metadata:
name: "{{ .Chart.Name }}-default"
spec:
destination:
name: "{{ .Chart.Name }}-service"
precedence: 1
route:
- labels:
version: "current"
weight: {{ .Values.istio.weight }}
{{ if .Values.base.enabled }}
- labels:
version: "base"
weight: {{ .Values.base.weight }}
{{ end }}
{{ end }}