mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-04 00:09:06 +00:00
a037936b3e
Co-authored-by: Devin Buhl <onedr0p@users.noreply.github.com>
16 lines
364 B
YAML
16 lines
364 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "statping.fullname" . }}
|
|
labels:
|
|
{{- include "statping.labels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "statping.selectorLabels" . | nindent 4 }}
|