K8s readOnlyRootFilesystem

Thanks for the tip! I can’t grant permissions in the container, but I looked up that $HOME is /home/temporal and added this to the helm-chart and it worked:

volumes:

  • name: builder-volume
    emptyDir: {}

volumeMounts:

  • name: builder-volume
    mountPath: /home/temporal

Thank you.