-
I am trying to set up nextcloud. I am following this tutorial and decided to make a kubernetes file and a kube file for easier management and so I could put the config files up on my github. The kubernetes configuration works, but I cannot get the .kube file to work. Here is my file: The .kube file
Here is the output of The generated service file
Here is my repo with the kubernetes file in it and a short readme. No matter what I do, I get errors in the logs like these: Logs
here is a full log for this run. I have tried using the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Welp, I struggled for two evenings on this, but I just figured it out after posting this: |
Beta Was this translation helpful? Give feedback.
Welp, I struggled for two evenings on this, but I just figured it out after posting this:
${HOME}
is not seen as absolute path and/${HOME}
is a non-existent folder. Replacing with the specifier%h
, which I just learned exist, fixes the problem!