gitea-act-runner: bump to v0.2.5, helm chart v0.1.6
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
kind: PersistentVolumeClaim
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: {{ template "gitea-act-runner.fullname" . }}
|
||||
name: {{ template "gitea-act-runner.fullname" . }}-data
|
||||
labels:
|
||||
app: {{ template "gitea-act-runner.name" . }}
|
||||
chart: {{ template "gitea-act-runner.chart" . }}
|
||||
|
@ -88,8 +88,10 @@ spec:
|
||||
securityContext:
|
||||
privileged: true
|
||||
volumeMounts:
|
||||
- name: docker-certs
|
||||
mountPath: /certs
|
||||
- name: gitea-act-runner-data
|
||||
mountPath: /data
|
||||
- name: docker-certs
|
||||
mountPath: /certs
|
||||
resources:
|
||||
{{- toYaml .Values.resources | nindent 12 }}
|
||||
volumes:
|
||||
@ -98,7 +100,7 @@ spec:
|
||||
- name: gitea-act-runner-data
|
||||
{{- if .Values.persistence.enabled }}
|
||||
persistentVolumeClaim:
|
||||
claimName: {{ .Values.persistence.existingClaim | default (include "gitea-act-runner.fullname" .) }}
|
||||
claimName: {{ .Values.persistence.existingClaim | default (include "gitea-act-runner.fullname" .) }}-data
|
||||
{{- else }}
|
||||
emptyDir: {}
|
||||
{{- end }}
|
||||
|
Reference in New Issue
Block a user