Fix istio to service mapping

This commit is contained in:
Stefan Reimer 2020-08-18 12:45:15 +01:00
parent 279dde5ee2
commit fbc203a2c9
1 changed files with 3 additions and 3 deletions

View File

@ -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 }}