kubezero/charts/kubezero-istio/charts/istio-operator/templates/service.yaml

16 lines
326 B
YAML
Raw Normal View History

apiVersion: v1
kind: Service
metadata:
namespace: {{.Values.operatorNamespace}}
labels:
name: istio-operator
2020-09-11 14:06:38 +00:00
name: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
spec:
ports:
- name: http-metrics
port: 8383
targetPort: 8383
selector:
name: istio-operator
---