diff --git a/apps/forgejo/runner-deployment.yaml b/apps/forgejo/runner-deployment.yaml index 1ff5401..03b0432 100644 --- a/apps/forgejo/runner-deployment.yaml +++ b/apps/forgejo/runner-deployment.yaml @@ -53,6 +53,10 @@ spec: volumeMounts: - name: dind-storage mountPath: /var/lib/docker + - name: registry-docker-config + mountPath: /root/.docker/config.json + subPath: config.json + readOnly: true resources: requests: cpu: 250m @@ -77,7 +81,13 @@ spec: fieldRef: fieldPath: spec.nodeName - name: FORGEJO_RUNNER_LABELS - value: "self-hosted:docker://ghcr.io/catthehacker/ubuntu:act-latest,linux:docker://ghcr.io/catthehacker/ubuntu:act-latest,ubuntu-latest:docker://ghcr.io/catthehacker/ubuntu:act-latest,ubuntu-22.04:docker://ghcr.io/catthehacker/ubuntu:act-latest,ubuntu-24.04:docker://ghcr.io/catthehacker/ubuntu:act-latest,debian-12:docker://ghcr.io/catthehacker/ubuntu:act-latest" + value: "self-hosted:docker://ghcr.io/catthehacker/ubuntu:act-latest,linux:docker://ghcr.io/catthehacker/ubuntu:act-latest,ubuntu-latest:docker://ghcr.io/catthehacker/ubuntu:act-latest,ubuntu-22.04:docker://ghcr.io/catthehacker/ubuntu:act-latest,ubuntu-24.04:docker://ghcr.io/catthehacker/ubuntu:act-latest,debian-12:docker://ghcr.io/catthehacker/ubuntu:act-latest,docker-ready:docker://ghcr.io/catthehacker/ubuntu:act-latest" + - name: REGISTRY_HOSTPORT + value: "registry.nxtgauge.com" + - name: REGISTRY_USERNAME + value: "admin" + - name: REGISTRY_PASSWORD + value: "Ashwin@2026" volumeMounts: - name: runner-config mountPath: /data @@ -126,6 +136,9 @@ spec: type: DirectoryOrCreate - name: dind-storage emptyDir: {} + - name: registry-docker-config + secret: + secretName: registry-docker-config --- apiVersion: v1 kind: Secret