gitea-act-runner: bump to v0.2.5, helm chart v0.1.6

This commit is contained in:
ace
2023-09-15 23:43:34 +03:00
parent a56f5245c7
commit 4a5526183a
4 changed files with 24 additions and 5 deletions

View File

@@ -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 }}