Issue connecting to other containers via HostPath
I'm quite confused how to successfully connect the mount to other pods in a managed Kuberentes cluster in OVH. I've tried mounting the hostpath to other pods through a PV, but to no avail.
Could you add a quick tutorial in the project description explaining how to use the rclone daemonset in other pods? It might be possible to sidecar the whole thing on other pods, but I think this is not in the spirit of the project.
I figured out what was happening. The project config is something like thisfor the hostpath mount:
hostPath:
path: /mnt/dir
However, when deployed, kubernetes automatically adds a line for Type: ""
- name: media
hostPath:
path: /mnt/dir
type: ""
This caused the host to never get the mount. Change default config to include type like so:
- name: media
hostPath:
path: /mnt/dir
type: DirectoryOrCreate
I am having the same challenge. @SaintNick1214 , are you able to share in which file and where you've added that to make it work?
I am having the same challenge. @SaintNick1214 , are you able to share in which file and where you've added that to make it work?
Daemonset.yaml under templates directory.
@simplyzee Is this project Archived or No more maintained ?
If it's the case i have merged actual pull requests and add the availability to add cache on it, however this is my fork. https://github.com/CyberPoison/kube-rclone-docker-build @SaintNick1214 if you are able to explain me step by step how you have achieved the PV for rclone, i will integrate it on my fork README.md