gitea-act-runner: bump to v0.2.11, helm chart v0.1.12

This commit is contained in:
ace 2025-03-02 17:24:07 +03:00
parent 5d77150525
commit 15f9334d28
Signed by: ace
GPG Key ID: F7EC00FB2C3118AD
3 changed files with 12 additions and 7 deletions

View File

@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version. # to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.11 version: 0.1.12
# This is the version number of the application being deployed. This version number should be # This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to # incremented each time you make changes to the application. Versions are not expected to

View File

@ -32,7 +32,7 @@ spec:
- name: {{ .Chart.Name }}-runner - name: {{ .Chart.Name }}-runner
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 12 }} {{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" image: "{{ .Values.image.runner.repository }}:{{ .Values.image.runner.tag | default .Chart.AppVersion }}"
command: ["/bin/sh"] command: ["/bin/sh"]
args: ["-c", "while ! nc -z localhost 2376 </dev/null; do echo 'waiting for docker daemon...'; sleep 5; done; /sbin/tini -- /opt/act/run.sh"] args: ["-c", "while ! nc -z localhost 2376 </dev/null; do echo 'waiting for docker daemon...'; sleep 5; done; /sbin/tini -- /opt/act/run.sh"]
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
@ -81,7 +81,7 @@ spec:
resources: resources:
{{- toYaml .Values.resources | nindent 12 }} {{- toYaml .Values.resources | nindent 12 }}
- name: {{ .Chart.Name }}-daemon - name: {{ .Chart.Name }}-daemon
image: docker:23.0.6-dind image: "{{ .Values.image.daemon.repository }}:{{ .Values.image.daemon.tag | default .Chart.AppVersion }}"
env: env:
- name: DOCKER_TLS_CERTDIR - name: DOCKER_TLS_CERTDIR
value: /certs value: /certs

View File

@ -5,10 +5,15 @@
replicaCount: 1 replicaCount: 1
image: image:
repository: gitea/act_runner runner:
pullPolicy: IfNotPresent repository: gitea/act_runner
# Overrides the image tag whose default is the chart appVersion. pullPolicy: IfNotPresent
tag: "0.2.11" # Overrides the image tag whose default is the chart appVersion.
tag: "0.2.11"
daemon:
repository: docker
pullPolicy: IfNotPresent
tag: "27.5.1-dind"
imagePullSecrets: [] imagePullSecrets: []
nameOverride: "" nameOverride: ""