add first and second services

This commit is contained in:
Vbarinov
2023-04-13 14:40:25 +03:00
parent 0088a0ee52
commit 1a9731974a
22 changed files with 813 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "first-service.fullname" . }}
labels:
{{- include "first-service.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "first-service.selectorLabels" . | nindent 4 }}