Skip to content

Commit

Permalink
Merge pull request #3175 from minrk/2i2c-push-timeout
Browse files Browse the repository at this point in the history
2i2c: try increasing docker client timeout
  • Loading branch information
minrk authored Jan 21, 2025
2 parents fcd1a10 + 53b7dc4 commit 3eba1ae
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion config/hetzner-2i2c.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ binderhub:
KubernetesBuildExecutor:
memory_request: "2G"
docker_host: /var/run/dind/docker.sock
repo2docker_extra_args:
# try to avoid timeout pushing to local registry
# default is 60
# this must have no spaces to be processed by repo2docker correctly
- '--DockerEngine.extra_init_args={"timeout":120}'

LaunchQuota:
total_quota: 20
Expand All @@ -59,7 +64,14 @@ binderhub:
extraEnv:
GOOGLE_APPLICATION_CREDENTIALS: /secrets/service-account.json

dind: {}
dind:
resources:
requests:
cpu: "2"
memory: 12Gi
limits:
cpu: "6"
memory: 12Gi

ingress:
hosts:
Expand Down

0 comments on commit 3eba1ae

Please sign in to comment.