This commit is contained in:
2024-08-23 13:03:51 +02:00
parent 20ebb398ec
commit 0d7bcbc1c3
14 changed files with 506 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "url-shortener.fullname" . }}
labels:
{{- include "url-shortener.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "url-shortener.selectorLabels" . | nindent 4 }}