21 lines
620 B
YAML
21 lines
620 B
YAML
{{- if index .Values "opensearch-dashboards" "istio" "enabled" }}
|
|
apiVersion: networking.istio.io/v1alpha3
|
|
kind: VirtualService
|
|
metadata:
|
|
name: {{ template "kubezero-lib.fullname" . }}-kibana
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{ include "kubezero-lib.labels" . | indent 4 }}
|
|
spec:
|
|
hosts:
|
|
- {{ index .Values "opensearch-dashboards" "istio" "url" }}
|
|
gateways:
|
|
- {{ default "istio-system/ingressgateway" ( index .Values "opensearch-dashboards" "istio" "gateway" ) }}
|
|
http:
|
|
- route:
|
|
- destination:
|
|
host: telemetry-opensearch-dashboards
|
|
port:
|
|
number: 5601
|
|
{{- end }}
|