From 2f48198ffb0030999a80ca57e67cd2613d817bd0 Mon Sep 17 00:00:00 2001 From: Stefan Reimer Date: Tue, 18 Aug 2020 12:45:15 +0100 Subject: [PATCH] Fix istio to service mapping --- .../kubezero-logging/templates/fluentd/istio-service.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/kubezero-logging/templates/fluentd/istio-service.yaml b/charts/kubezero-logging/templates/fluentd/istio-service.yaml index 048b8e9e..4dfe0103 100644 --- a/charts/kubezero-logging/templates/fluentd/istio-service.yaml +++ b/charts/kubezero-logging/templates/fluentd/istio-service.yaml @@ -2,7 +2,7 @@ apiVersion: networking.istio.io/v1alpha3 kind: VirtualService metadata: - name: fluentd + name: {{ template "kubezero-lib.fullname" $ }}-fluentd namespace: {{ .Release.Namespace }} labels: {{ include "kubezero-lib.labels" . | indent 4 }} @@ -16,13 +16,13 @@ spec: - port: 24224 route: - destination: - host: fluentd + host: {{ template "kubezero-lib.fullname" $ }}-fluentd port: number: 24224 http: - route: - destination: - host: fluentd + host: {{ template "kubezero-lib.fullname" $ }}-fluentd port: number: 9880 {{- end }}