Skip to content

Commit

Permalink
Configure Node Agent DaemonSet for k0s
Browse files Browse the repository at this point in the history
Signed-off-by: Jérémie Lesage <[email protected]>
  • Loading branch information
jeremie-lesage authored Sep 29, 2024
1 parent 42de654 commit 97c325b
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion site/content/docs/main/file-system-backup.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ backup which created the backup repository, then Velero will not be able to conn
### Configure Node Agent DaemonSet spec

After installation, some PaaS/CaaS platforms based on Kubernetes also require modifications the node-agent DaemonSet spec.
The steps in this section are only needed if you are installing on RancherOS, Nutanix, OpenShift, VMware Tanzu Kubernetes Grid
The steps in this section are only needed if you are installing on RancherOS, k0s, Nutanix, OpenShift, VMware Tanzu Kubernetes Grid
Integrated Edition (formerly VMware Enterprise PKS), or Microsoft Azure.


Expand All @@ -100,6 +100,25 @@ hostPath:
path: /opt/rke/var/lib/kubelet/pods
```
**k0s**
Update the host path for volumes in the node-agent DaemonSet in the Velero namespace from `/var/lib/kubelet/pods` to
`/var/lib/k0s/kubelet/pods/`.

```yaml
hostPath:
path: /var/lib/kubelet/pods
```

to

```yaml
hostPath:
path: /var/lib/k0s/kubelet/pods/
```

**Nutanix**


Expand Down

0 comments on commit 97c325b

Please sign in to comment.