summaryrefslogtreecommitdiff
path: root/chart/templates/service.yaml
diff options
context:
space:
mode:
authorakiyamn2022-07-19 10:46:27 +1000
committerakiyamn2022-07-19 10:46:27 +1000
commit1c7fb64ff23b7ba12d4d5ed8d8ec6bb01f876ec0 (patch)
treebb5a2157d1cf4f03c92468a0538d41945ad9d257 /chart/templates/service.yaml
downloadhelm-test-master.tar.gz
helm-test-master.zip
InitialHEADmaster
Diffstat (limited to 'chart/templates/service.yaml')
-rw-r--r--chart/templates/service.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/chart/templates/service.yaml b/chart/templates/service.yaml
new file mode 100644
index 0000000..dfc5b3a
--- /dev/null
+++ b/chart/templates/service.yaml
@@ -0,0 +1,15 @@
+apiVersion: v1
+kind: Service
+metadata:
+ name: {{ include "chart.fullname" . }}
+ labels:
+ {{- include "chart.labels" . | nindent 4 }}
+spec:
+ type: {{ .Values.service.type }}
+ ports:
+ - port: {{ .Values.service.port }}
+ targetPort: http
+ protocol: TCP
+ name: http
+ selector:
+ {{- include "chart.selectorLabels" . | nindent 4 }}