mirror of https://git.rancher.io/charts
16 lines
394 B
YAML
16 lines
394 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ .Chart.Name }}
|
|
labels:
|
|
{{- include "ui-plugin-operator.labels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: {{ .Values.service.targetPort }}
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "ui-plugin-operator.selectorLabels" . | nindent 4 }}
|