aboutsummaryrefslogtreecommitdiff
path: root/grumpy/cgit/templates/deployment.yaml
diff options
context:
space:
mode:
authorMax Resnick <max@ofmax.li>2020-01-01 11:08:33 -0800
committerMax Resnick <max@ofmax.li>2020-01-01 11:08:33 -0800
commit584857f515ab6fe30530d25483869ed517e9575d (patch)
treea8da4270005b51100d795c58b9ae24f5fc6d0219 /grumpy/cgit/templates/deployment.yaml
parent479a617193774e2fe88279caa34ae3ff56a35fba (diff)
downloadgrumpy-charts-584857f515ab6fe30530d25483869ed517e9575d.tar.gz
add cgit chart
Diffstat (limited to '')
-rw-r--r--grumpy/cgit/templates/deployment.yaml66
1 files changed, 66 insertions, 0 deletions
diff --git a/grumpy/cgit/templates/deployment.yaml b/grumpy/cgit/templates/deployment.yaml
new file mode 100644
index 0000000..7da67ab
--- /dev/null
+++ b/grumpy/cgit/templates/deployment.yaml
@@ -0,0 +1,66 @@
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: {{ include "cgit.fullname" . }}
+ labels:
+{{ include "cgit.labels" . | indent 4 }}
+spec:
+ replicas: {{ .Values.replicaCount }}
+ selector:
+ matchLabels:
+ app.kubernetes.io/name: {{ include "cgit.name" . }}
+ app.kubernetes.io/instance: {{ .Release.Name }}
+ template:
+ metadata:
+ labels:
+ app.kubernetes.io/name: {{ include "cgit.name" . }}
+ app.kubernetes.io/instance: {{ .Release.Name }}
+ spec:
+ {{- with .Values.imagePullSecrets }}
+ imagePullSecrets:
+ {{- toYaml . | nindent 8 }}
+ {{- end }}
+ serviceAccountName: {{ template "cgit.serviceAccountName" . }}
+ containers:
+ - name: {{ .Chart.Name }}
+ image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
+ imagePullPolicy: {{ .Values.image.pullPolicy }}
+ env:
+ - name: CGIT_HOSTNAME
+ value: "{{ (index .Values.ingress.hosts 0).host }}"
+ - name: CGIT_PORT
+ value: "8080"
+ volumeMounts:
+ - mountPath: /var/lib/git
+ name: gitolite-storage
+ readOnly: false
+ ports:
+ - name: http
+ containerPort: 8080
+ protocol: TCP
+ #livenessProbe:
+ # httpGet:
+ # path: /
+ # port: http
+ #readinessProbe:
+ # httpGet:
+ # path: /
+ # port: http
+ resources:
+ {{- toYaml .Values.resources | nindent 12 }}
+ volumes:
+ - name: gitolite-storage
+ persistentVolumeClaim:
+ claimName: gitolite-storage
+ {{- with .Values.nodeSelector }}
+ nodeSelector:
+ {{- toYaml . | nindent 8 }}
+ {{- end }}
+ {{- with .Values.affinity }}
+ affinity:
+ {{- toYaml . | nindent 8 }}
+ {{- end }}
+ {{- with .Values.tolerations }}
+ tolerations:
+ {{- toYaml . | nindent 8 }}
+ {{- end }}