13 lines
277 B
YAML
13 lines
277 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ .Release.Name }}-oc-catalog
|
|
spec:
|
|
selector:
|
|
app: {{ .Chart.Name }}
|
|
ports:
|
|
- protocol: TCP
|
|
port: {{ .Values.service.port }}
|
|
targetPort: {{ .Values.service.targetPort }}
|
|
type: {{ .Values.service.type }}
|