enable ipv6 for docker daemon in gitea-act-runner
All checks were successful
Validate Kubernetes Manifests / kubeconform (push) Successful in 9s

This commit is contained in:
2026-01-30 06:04:49 +05:30
parent 70b4bf40c2
commit c5672f2f5e
2 changed files with 17 additions and 0 deletions

View File

@@ -25,6 +25,9 @@ spec:
- name: runner-data - name: runner-data
persistentVolumeClaim: persistentVolumeClaim:
claimName: gitea-act-runner-longhorn claimName: gitea-act-runner-longhorn
- name: docker-ipv6
configMap:
name: docker-daemon-ipv6
containers: containers:
- name: runner - name: runner
image: gitea/act_runner@sha256:8477d5b61b655caad4449888bae39f1f34bebd27db56cb15a62dccb3dcf3a944 image: gitea/act_runner@sha256:8477d5b61b655caad4449888bae39f1f34bebd27db56cb15a62dccb3dcf3a944
@@ -73,3 +76,6 @@ spec:
volumeMounts: volumeMounts:
- name: docker-certs - name: docker-certs
mountPath: /certs mountPath: /certs
- name: docker-ipv6
mountPath: /etc/docker/daemon.json
subPath: daemon.json

View File

@@ -0,0 +1,11 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: docker-daemon-ipv6
namespace: git-ops
data:
daemon.json: |
{
"ipv6": true,
"fixed-cidr-v6": "2001:db8:1::/64"
}