Skip to content

Commit

Permalink
fix: pin DinD version to prevent iptables issue (#32)
Browse files Browse the repository at this point in the history
It looks like the latest version of dind is causing issues in certain hosting environments. It may be due to this issue: docker-library/docker#467.

Let's pin to a known-working version of `dind`.
  • Loading branch information
adamconnelly authored Jan 12, 2024
1 parent a6a4aad commit 9c1b648
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spacelift-worker-pool/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ dind:
# repository specifies the docker repository containing the dind image.
repository: "docker"
# pullPolicy defines the pull policy for the image.
pullPolicy: "Always"
pullPolicy: "IfNotPresent"
# tag specifies the image tag to use.
tag: "dind"
tag: "23.0.6-dind"
# (optional) digest specifies the image digest to use.
# digest: "sha256:84a6bcc230a55058ba27c72a29903557c5bcf1c805f9360391e8fafaf4edaca4"
resources: {}
Expand Down

0 comments on commit 9c1b648

Please sign in to comment.