Fix istio to service mapping

This commit is contained in:
Stefan Reimer 2020-08-18 12:45:15 +01:00
parent 3e581471ff
commit 2f48198ffb

View File

@ -2,7 +2,7 @@
apiVersion: networking.istio.io/v1alpha3 apiVersion: networking.istio.io/v1alpha3
kind: VirtualService kind: VirtualService
metadata: metadata:
name: fluentd name: {{ template "kubezero-lib.fullname" $ }}-fluentd
namespace: {{ .Release.Namespace }} namespace: {{ .Release.Namespace }}
labels: labels:
{{ include "kubezero-lib.labels" . | indent 4 }} {{ include "kubezero-lib.labels" . | indent 4 }}
@ -16,13 +16,13 @@ spec:
- port: 24224 - port: 24224
route: route:
- destination: - destination:
host: fluentd host: {{ template "kubezero-lib.fullname" $ }}-fluentd
port: port:
number: 24224 number: 24224
http: http:
- route: - route:
- destination: - destination:
host: fluentd host: {{ template "kubezero-lib.fullname" $ }}-fluentd
port: port:
number: 9880 number: 9880
{{- end }} {{- end }}