mirror of
https://github.com/shadoll/helm-charts.git
synced 2026-08-28 03:27:08 +00:00
17 lines
347 B
YAML
17 lines
347 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ .Release.Name }}
|
|
labels:
|
|
app.kubernetes.io/name: {{ .Chart.Name }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: {{ .Release.Name }}
|
|
ports:
|
|
- name: http
|
|
port: {{ .Values.servicePort }}
|
|
targetPort: http
|
|
protocol: TCP
|