add gitlab ci

This commit is contained in:
ducoterra
2020-10-28 10:14:36 -04:00
parent 68bcbdf7fd
commit c3402af3f0
14 changed files with 254 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
labels:
app: {{ .Release.Name }}
name: {{ .Release.Name }}
spec:
ports:
- port: {{ .Values.port }}
protocol: TCP
name: {{ .Release.Name }}-web
targetPort: {{ .Values.port }}
selector:
app: {{ .Release.Name }} # This selects the pod(s) that match the selector
type: ClusterIP