Alex Vi
Alex Vi
It seems, that you're trying to run your pod in read-only mode. It is not an option with Cattr. Or you should set up write-allowed folders for storage. At least:...
Read the note about s6 I've attached above. It can run with read-only root when ENV variable set + add smth like: ``` ... volumeMounts: - mountPath: /run name: app-run...
For the sake of the experiment try: ``` apiVersion: apps/v1 kind: Deployment metadata: name: cattr-app-deployment namespace: cattr labels: app: cattr spec: selector: matchLabels: app: cattr template: metadata: labels: app: cattr...
Okay. Let's try another option. I see - you use your registry. Can you build and push an image with that Dockerfile and try to use it? ``` FROM registry.git.amazingcat.net/cattr/core/app:latest...
Misspelled params for ln... Can we try: ``` FROM registry.git.amazingcat.net/cattr/core/app:latest RUN rm -rf /var/run && ln -s /run /var/run ```
Great! This error happens because `/app/storage/framework/views` does not exist because we've mounted /app/storage as volume. It seems my access to the repo hasn't been revoked. Can you try to build...
Provide full error message plz.
About first log. Do you persist your application encryption key? As I see - cron job can't decode info, that already stored in db. Mostly i happens because encryption key...
About timeout we can use `timeout-up`, `timeout-down` files as described at https://skarnet.org/software/s6-rc/s6-rc-compile.html
About cache-clear - the best option is to create helm bundle with all necessary commands and configs. To separate ENV to kube secrets, for example. To generate encryption key in...