Merge pull request #8069 from msfrucht/openshift_ibm_cloud_doc_update
Documentation Update for OpenShift IBM Cloud for CSI snapshot data movementpull/8081/head
commit
1a6750c025
|
@ -41,7 +41,7 @@ velero install --use-node-agent
|
|||
### 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, Nutanix, OpenShift, OpenShift on IBM Cloud, VMware Tanzu Kubernetes Grid
|
||||
Integrated Edition (formerly VMware Enterprise PKS), or Microsoft Azure.
|
||||
|
||||
|
||||
|
@ -121,6 +121,24 @@ oc annotate namespace <velero namespace> openshift.io/node-selector=""
|
|||
oc create -n <velero namespace> -f ds.yaml
|
||||
```
|
||||
|
||||
**OpenShift on IBM Cloud**
|
||||
|
||||
|
||||
Update the host path for volumes in the node-agent DaemonSet in the Velero namespace from `/var/lib/kubelet/pods` to
|
||||
`/var/data/kubelet/pods`.
|
||||
|
||||
```yaml
|
||||
hostPath:
|
||||
path: /var/lib/kubelet/pods
|
||||
```
|
||||
|
||||
to
|
||||
|
||||
```yaml
|
||||
hostPath:
|
||||
path: /var/data/kubelet/pods
|
||||
```
|
||||
|
||||
**VMware Tanzu Kubernetes Grid Integrated Edition (formerly VMware Enterprise PKS)**
|
||||
|
||||
You need to enable the `Allow Privileged` option in your plan configuration so that Velero is able to mount the hostpath.
|
||||
|
|
|
@ -41,7 +41,7 @@ velero install --use-node-agent
|
|||
### 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, Nutanix, OpenShift, OpenShift on IBM Cloud, VMware Tanzu Kubernetes Grid
|
||||
Integrated Edition (formerly VMware Enterprise PKS), or Microsoft Azure.
|
||||
|
||||
|
||||
|
@ -121,6 +121,24 @@ oc annotate namespace <velero namespace> openshift.io/node-selector=""
|
|||
oc create -n <velero namespace> -f ds.yaml
|
||||
```
|
||||
|
||||
**OpenShift on IBM Cloud**
|
||||
|
||||
|
||||
Update the host path for volumes in the node-agent DaemonSet in the Velero namespace from `/var/lib/kubelet/pods` to
|
||||
`/var/data/kubelet/pods`.
|
||||
|
||||
```yaml
|
||||
hostPath:
|
||||
path: /var/lib/kubelet/pods
|
||||
```
|
||||
|
||||
to
|
||||
|
||||
```yaml
|
||||
hostPath:
|
||||
path: /var/data/kubelet/pods
|
||||
```
|
||||
|
||||
**VMware Tanzu Kubernetes Grid Integrated Edition (formerly VMware Enterprise PKS)**
|
||||
|
||||
You need to enable the `Allow Privileged` option in your plan configuration so that Velero is able to mount the hostpath.
|
||||
|
|
|
@ -41,7 +41,7 @@ velero install --use-node-agent
|
|||
### 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, Nutanix, OpenShift, OpenShift on IBM Cloud, VMware Tanzu Kubernetes Grid
|
||||
Integrated Edition (formerly VMware Enterprise PKS), or Microsoft Azure.
|
||||
|
||||
|
||||
|
@ -121,6 +121,24 @@ oc annotate namespace <velero namespace> openshift.io/node-selector=""
|
|||
oc create -n <velero namespace> -f ds.yaml
|
||||
```
|
||||
|
||||
**OpenShift on IBM Cloud**
|
||||
|
||||
|
||||
Update the host path for volumes in the node-agent DaemonSet in the Velero namespace from `/var/lib/kubelet/pods` to
|
||||
`/var/data/kubelet/pods`.
|
||||
|
||||
```yaml
|
||||
hostPath:
|
||||
path: /var/lib/kubelet/pods
|
||||
```
|
||||
|
||||
to
|
||||
|
||||
```yaml
|
||||
hostPath:
|
||||
path: /var/data/kubelet/pods
|
||||
```
|
||||
|
||||
**VMware Tanzu Kubernetes Grid Integrated Edition (formerly VMware Enterprise PKS)**
|
||||
|
||||
You need to enable the `Allow Privileged` option in your plan configuration so that Velero is able to mount the hostpath.
|
||||
|
|
Loading…
Reference in New Issue