mirror of
https://github.com/bitnami/charts.git
synced 2026-03-15 14:57:16 +08:00
16 lines
386 B
YAML
16 lines
386 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ template "kubeapps.kubeops.fullname" . }}
|
|
labels:{{ include "kubeapps.labels" . | nindent 4 }}
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: {{ .Values.kubeops.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
app: {{ template "kubeapps.kubeops.fullname" . }}
|
|
release: {{ .Release.Name }}
|