forgejo-runner helm

No introduction found. Create it?

More popular helm chart found

forgejo-runner from bjw-s-labs/charts/ is more popular with 10 repositories.

Install

Install with:

helm repo add forgejo-runner oci://ghcr.io/bjw-s-labs/charts/
helm install forgejo-runner forgejo-runner/forgejo-runner -f values.yaml

Examples

See examples from other people.

Top Repositories (2 out of 8)

NameRepoStarsVersionTimestamp
forgejo-runnerbjw-s-labs/home-ops8254.6.24 days ago
forgejo-runnerbjw-s/home-ops3954.6.24 days ago

Values

See the most popular values for this chart:

KeyTypes
string
number
number
string
number
boolean
number
string
string
string
string
string
string
controllers.forgejo-runner.containers.runner.command[] (5)
- /bin/forgejo-runner
- daemon
- --config
- /config/runner.yaml
string
string
controllers.forgejo-runner.containers.runner.image.tag (5)
latest@sha256:89fe80f4d772de476482e12ddcdfc86e767cd250cb3d8054da178a4964c02a70
string
string
string
boolean
string
boolean
controllers.forgejo-runner.containers.app.command[] (3)
- sh
- -c
- while ! nc -z localhost 2376 </dev/null; do echo 'waiting for docker daemon...'; sleep 5; done; forgejo-runner --config /data/config.yml daemon
string
controllers.forgejo-runner.containers.app.env[].name (3)
DOCKER_HOST
DOCKER_CERT_PATH
DOCKER_TLS_VERIFY
string
string
string
controllers.forgejo-runner.containers.app.image.tag (3)
12.9.0@sha256:2860af6a7fa5521b2cdb26a14545c083ffd06b2528dbfc470cfec39a0b6bde39
string
boolean
string
string
string
string
string
string
controllers.forgejo-runner.containers.daemon.image.tag (3)
29.4.0-dind@sha256:a6dd5322747a95cd8e3207bd8d415a8fd20ec34e9c00f06dc019cbd912013489
string
boolean
string
string
string
controllers.forgejo-runner.initContainers.register-runner.command[] (5)
- sh
- -c
- if [ -f /persistent/.runner ]; then echo "Runner already registered, skipping" exit 0 fi echo "Registering runner..." cd /persistent && forgejo-runner register \ --instance http://forgejo-http.dev.svc.cluster.local:3000 \ --token "${RUNNER_TOKEN}" \ --name k8s-runner \ --labels "default:k8spod:/config/podspec-default.yaml" \ --no-interactive
string
string
controllers.forgejo-runner.initContainers.register-runner.image.tag (5)
latest@sha256:89fe80f4d772de476482e12ddcdfc86e767cd250cb3d8054da178a4964c02a70
string
string
string
string
string
controllers.forgejo-runner.initContainers.runner-register.args[] (2)
- forgejo-runner register --no-interactive --token $(RUNNER_TOKEN) --name $(RUNNER_NAME) --instance $(FORGEJO_INSTANCE_URL) --labels self-hosted:host,docker:docker://ghcr.io/catthehacker/ubuntu:act-24.04,ubuntu-latest:docker://ghcr.io/catthehacker/ubuntu:act-24.04,ubuntu-24.04:docker://ghcr.io/catthehacker/ubuntu:act-24.04,renovate:docker://ghcr.io/catthehacker/ubuntu:act-24.04 ; forgejo-runner generate-config > /data/config.yml ; sed -i -e "s|network: .*|network: host|" /data/config.yml ; sed -i -e "s|^ envs:$| envs:\n DOCKER_HOST: tcp://localhost:2376\n DOCKER_TLS_VERIFY: 1\n DOCKER_CERT_PATH: /certs/client|" /data/config.yml ; sed -i -e "s|^ options:| options: -v /certs/client:/certs/client|" /data/config.yml ; sed -i -e "s| valid_volumes: \[\]$| valid_volumes:\n - /certs/client|" /data/config.yml ;
string
string
string
string
string
string
string
controllers.forgejo-runner.initContainers.runner-register.image.tag (2)
12.8.2@sha256:afeaf4c2bd52d9cc2c42090ce559c1f4b7061ded7afd7023c089a5b3b7109025
string
controllers.forgejo-runner.initContainers.copy-k8s-plugin.command[] (1)
- sh
- -c
- cp /usr/local/bin/forgejo-runner-k8s /plugins/forgejo-runner-k8s
string
controllers.forgejo-runner.initContainers.copy-k8s-plugin.image.repository (1)
git.erwanleboucher.dev/eleboucher/runner-k8s-plugin-v2
string
string
boolean
string
boolean
controllers.forgejo-runner.initContainers.register.command[] (1)
- sh
- -c
- if [ ! -f /data/.runner ]; then echo "Registering runner..."; forgejo-runner register --no-interactive \ --token $(RUNNER_TOKEN) \ --name $(RUNNER_NAME) \ --instance $(FORGEJO_INSTANCE_URL) \ --labels "$(LABELS)"; else echo "Runner already registered, skipping."; fi
string
string
controllers.forgejo-runner.initContainers.register.env.LABELS (1)
ubuntu-latest:docker://ghcr.io/catthehacker/ubuntu:act-latest
string
string
string
controllers.forgejo-runner.initContainers.register.image.tag (1)
12.9.0@sha256:2860af6a7fa5521b2cdb26a14545c083ffd06b2528dbfc470cfec39a0b6bde39
string
string
boolean
string
string
string
persistence.config.name (2)
forgejo-runner-configmap
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
string
rbac.roles.forgejo-runner.rules[].verbs[] (5)
- list
- watch
- create
- get
- delete
- create
- get
- list
- watch
- get
string
string
configMaps.config.data."podspec-default.yaml" (4)
containers: - env: - name: DEBIAN_FRONTEND value: noninteractive image: ghcr.io/bjw-s-labs/forgejo-runner:ubuntu-24.04@sha256:cbcf25eee3ccd1b5491cd74ec3ae57a5c1dbcf7012ae1bbf53723f08c79676e2 imagePullPolicy: IfNotPresent name: main resources: limits: memory: 2Gi requests: cpu: 100m memory: 256Mi restartPolicy: Never
string
configMaps.config.data."podspec-dind.yaml" (4)
initContainers: - name: dind image: docker:29-dind securityContext: privileged: true restartPolicy: Always env: - name: DOCKER_TLS_CERTDIR value: /certs resources: requests: cpu: 100m memory: 256Mi limits: memory: 4Gi volumeMounts: - name: docker-storage mountPath: /var/lib/docker - name: docker-certs mountPath: /certs readinessProbe: exec: command: - sh - -c - test -f /certs/client/ca.pem && test -f /certs/client/cert.pem && test -f /certs/client/key.pem initialDelaySeconds: 2 periodSeconds: 1 containers: - env: - name: DEBIAN_FRONTEND value: noninteractive - name: DOCKER_HOST value: tcp://localhost:2376 - name: DOCKER_TLS_VERIFY value: "1" - name: DOCKER_CERT_PATH value: /certs/client image: ghcr.io/bjw-s-labs/forgejo-runner:ubuntu-24.04@sha256:cbcf25eee3ccd1b5491cd74ec3ae57a5c1dbcf7012ae1bbf53723f08c79676e2 imagePullPolicy: IfNotPresent name: main resources: limits: memory: 2Gi requests: cpu: 100m memory: 256Mi volumeMounts: - name: docker-certs mountPath: /certs readOnly: true volumes: - name: docker-storage emptyDir: {} - name: docker-certs emptyDir: {} restartPolicy: Never
string
configMaps.config.data."runner.yaml" (4)
cache: enabled: true dir: /data/cache container: docker_host: "-" workdir_parent: shared/workdir kubernetes: namespace: dev poll_timeout: 10m log: level: info runner: capacity: 4 file: /persistent/.runner labels: - ubuntu-latest:k8spod:/config/podspec-default.yaml - ubuntu-24.04:k8spod:/config/podspec-default.yaml - default:k8spod:/config/podspec-default.yaml - docker:k8spod:/config/podspec-dind.yaml timeout: 3h
string
string
string
number