Simplify kubernetes dind example allowing for default docker config in workflows (#709)

With this docker clients in workflows can connect on the default socket without needing to change DOCKER_HOST. Startup probe also removes the need for custom shell command.

Co-authored-by: silverwind <me@silverwind.io>
Reviewed-on: https://gitea.com/gitea/runner/pulls/709
Co-authored-by: thisisqasim <40013+thisisqasim@noreply.gitea.com>
Co-committed-by: thisisqasim <40013+thisisqasim@noreply.gitea.com>
This commit is contained in:
thisisqasim
2026-05-14 05:52:41 +00:00
committed by silverwind
parent dda5841af8
commit 00b7fec80f
3 changed files with 24 additions and 25 deletions

View File

@@ -4,7 +4,7 @@ metadata:
name: runner-vol
spec:
accessModes:
- ReadWriteOnce
- ReadWriteOnce
resources:
requests:
storage: 1Gi
@@ -35,7 +35,6 @@ spec:
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
app: runner
spec:
@@ -50,7 +49,6 @@ spec:
- name: runner
image: gitea/runner:nightly-dind-rootless
imagePullPolicy: Always
# command: ["sh", "-c", "while ! nc -z localhost 2376 </dev/null; do echo 'waiting for docker daemon...'; sleep 5; done; /sbin/tini -- run.sh"]
env:
- name: DOCKER_HOST
value: tcp://localhost:2376