Forum Discussion
rsal_79565
Jun 30, 2017Historic F5 Account
Does Rancher deploy kube-proxy as a DaemonSet? Here are the important volume-mounts and host paths that our kube-proxy needs:
volumeMounts:
- mountPath: /var/run/kubernetes/proxy-plugin
name: proxy-plugin
- mountPath: /run/kubeconfig
name: kubeconfig
volumes:
- hostPath:
path: /etc/kubernetes/kubelet.conf
name: kubeconfig
- hostPath:
path: /etc/kubernetes/proxy-plugin
name: proxy-plugin
You should be able to match there Rancher has the kubelet.conf file. You can use the same directory for the proxy-plugin volume which we need to be able to write to.