This message was deleted.
# general
s
This message was deleted.
m
Hi @Javid Aslanov, yes this has changed in the meantime. We now use an
emptyDir
volume mounted at
/data/conf
and an initcontainer that additionally mounts the secret and then copies it over
Copy code
initContainers:
   - command:
     - sh
     - -ce
     - cp /tmp/config.yaml /data/conf/config.yaml
     image: busybox:1.33.0
     imagePullPolicy: IfNotPresent
     name: config-mounter
     volumeMounts:
     - mountPath: /tmp
       name: tmp-build-cache-config-file
     - mountPath: /data/conf
       name: build-cache-config-file
j
@Mario Fredenhagen thank you very much for the help and example, just wondering whether this is noted in documentation or release notes, maybe I missed something, I was refering to this one https://docs.gradle.com/build-cache-node/#version_history
r
j
thanks a lot @Ryan Nett