Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correcting OpenShift on IBM Documentation Error #8077

Merged
merged 2 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 18 additions & 4 deletions site/content/docs/main/csi-snapshot-data-movement.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,19 +124,33 @@ 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`.
Update the host path and mount path for volumes in the node-agent DaemonSet in the Velero namespace from `/var/lib/kubelet/plugins` to
`/var/data/kubelet/plugins`.

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

to

```yaml
hostPath:
path: /var/data/kubelet/pods
path: /var/data/kubelet/plugins
```

and

```yaml
- name: host-plugins
mountPath: /var/lib/kubelet/plugins
```

to

```yaml
- name: host-plugins
mountPath: /var/data/kubelet/plugins
```

**VMware Tanzu Kubernetes Grid Integrated Edition (formerly VMware Enterprise PKS)**
Expand Down
22 changes: 18 additions & 4 deletions site/content/docs/v1.13/csi-snapshot-data-movement.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,19 +124,33 @@ 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`.
Update the host path and mount path for volumes in the node-agent DaemonSet in the Velero namespace from `/var/lib/kubelet/plugins` to
`/var/data/kubelet/plugins`.

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

to

```yaml
hostPath:
path: /var/data/kubelet/pods
path: /var/data/kubelet/plugins
```

and

```yaml
- name: host-plugins
mountPath: /var/lib/kubelet/plugins
```

to

```yaml
- name: host-plugins
mountPath: /var/data/kubelet/plugins
```

**VMware Tanzu Kubernetes Grid Integrated Edition (formerly VMware Enterprise PKS)**
Expand Down
24 changes: 19 additions & 5 deletions site/content/docs/v1.14/csi-snapshot-data-movement.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
`---
title: "CSI Snapshot Data Movement"
layout: docs
---
Expand Down Expand Up @@ -124,19 +124,33 @@ 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`.
Update the host path and mount path for volumes in the node-agent DaemonSet in the Velero namespace from `/var/lib/kubelet/plugins` to
`/var/data/kubelet/plugins`.

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

to

```yaml
hostPath:
path: /var/data/kubelet/pods
path: /var/data/kubelet/plugins
```

and

```yaml
- name: host-plugins
mountPath: /var/lib/kubelet/plugins
```

to

```yaml
- name: host-plugins
mountPath: /var/data/kubelet/plugins
```

**VMware Tanzu Kubernetes Grid Integrated Edition (formerly VMware Enterprise PKS)**
Expand Down
Loading