We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6638b3 commit f1df40fCopy full SHA for f1df40f
mybinder/templates/buildkit-pruner.yaml
@@ -23,12 +23,11 @@ spec:
23
- name: DOCKER_HOST
24
value: "unix:///var/run/dind/docker.sock"
25
command:
26
- - docker
27
- - builder
28
- - prune
29
- - --force
30
- - --all
31
- - --keep-storage={{ .Values.buildkitPruner.buildkitCacheSize }}
+ - /bin/sh
+ - -c
+ - |
+ docker builder prune --force --all --keep-storage={{ .Values.buildkitPruner.buildkitCacheSize }} && \
+ docker system df
32
volumeMounts:
33
- name: dind-socket
34
mountPath: /var/run/dind/docker.sock
0 commit comments