This message was deleted.
# rke
a
This message was deleted.
b
We’ve used terraform to spin up the cluster and we managed to get the static pods with the below snippet:
Copy code
services {
  kubelet {
    extra_args = {
      pod-manifest-path = "/etc/kubelet.d/"
    }
    extra_binds = [
      "/etc/kubelet.d/:/etc/kubelet.d/"
    ]
  }
}
🙌 1