Skip to content

Commit

Permalink
fix alignment/numbering on upgrade instructions
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Kriss <[email protected]>
  • Loading branch information
skriss committed Nov 7, 2019
1 parent 7d27f95 commit b9f4282
Show file tree
Hide file tree
Showing 2 changed files with 120 additions and 116 deletions.
118 changes: 60 additions & 58 deletions site/docs/master/upgrade-to-1.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,91 +6,93 @@
_Note: if you're upgrading from v1.0, follow the [upgrading to v1.1][2] instructions first._

## Instructions

1. Install the Velero v1.2 command-line interface (CLI) by following the [instructions here][3].

Verify that you've properly installed it by running:
Verify that you've properly installed it by running:

```bash
velero version --client-only
```
```bash
velero version --client-only
```

You should see the following output:
```bash
Client:
Version: v1.2.0
Git commit: <git SHA>
```
You should see the following output:

```bash
Client:
Version: v1.2.0
Git commit: <git SHA>
```

1. Scale down the existing Velero deployment:

```bash
kubectl scale deployment/velero \
--namespace velero \
--replicas 0
```
```bash
kubectl scale deployment/velero \
--namespace velero \
--replicas 0
```

1. Update the container image used by the Velero deployment and, optionally, the restic daemon set:

```bash
kubectl set image deployment/velero \
velero=velero/velero:v1.2.0 \
--namespace velero
```bash
kubectl set image deployment/velero \
velero=velero/velero:v1.2.0 \
--namespace velero
# optional, if using the restic daemon set
kubectl set image daemonset/restic \
restic=velero/velero:v1.2.0 \
--namespace velero
```
# optional, if using the restic daemon set
kubectl set image daemonset/restic \
restic=velero/velero:v1.2.0 \
--namespace velero
```

1. If using AWS, Azure, or GCP, add the respective plugin to your Velero deployment:

For AWS:
```bash
velero plugin add velero/velero-plugin-for-aws:v1.0.0
```
For AWS:

```bash
velero plugin add velero/velero-plugin-for-aws:v1.0.0
```

For Azure:
```bash
velero plugin add velero/velero-plugin-for-microsoft-azure:v1.0.0
```
For Azure:

```bash
velero plugin add velero/velero-plugin-for-microsoft-azure:v1.0.0
```

For GCP:
```bash
velero plugin add velero/velero-plugin-for-gcp:v1.0.0
```
For GCP:

```bash
velero plugin add velero/velero-plugin-for-gcp:v1.0.0
```

1. Update the Velero custom resource definitions (CRDs) to include the structural schemas:

```bash
velero install --crds-only --dry-run -o yaml | kubectl apply -f -
```
```bash
velero install --crds-only --dry-run -o yaml | kubectl apply -f -
```

1. Scale back up the existing Velero deployment:

```bash
kubectl scale deployment/velero \
--namespace velero \
--replicas 1
```
```bash
kubectl scale deployment/velero \
--namespace velero \
--replicas 1
```

1. Confirm that the deployment is up and running with the correct version by running:

```bash
velero version
```
```bash
velero version
```

You should see the following output:
You should see the following output:

```bash
Client:
Version: v1.2.0
Git commit: <git SHA>

Server:
Version: v1.2.0
```
```bash
Client:
Version: v1.2.0
Git commit: <git SHA>
Server:
Version: v1.2.0
```


[0]: https://github.com/vmware-tanzu/velero/releases/tag/v1.1.0
Expand Down
118 changes: 60 additions & 58 deletions site/docs/v1.2.0/upgrade-to-1.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,91 +6,93 @@
_Note: if you're upgrading from v1.0, follow the [upgrading to v1.1][2] instructions first._

## Instructions

1. Install the Velero v1.2 command-line interface (CLI) by following the [instructions here][3].

Verify that you've properly installed it by running:
Verify that you've properly installed it by running:

```bash
velero version --client-only
```
```bash
velero version --client-only
```

You should see the following output:
```bash
Client:
Version: v1.2.0
Git commit: <git SHA>
```
You should see the following output:

```bash
Client:
Version: v1.2.0
Git commit: <git SHA>
```

1. Scale down the existing Velero deployment:

```bash
kubectl scale deployment/velero \
--namespace velero \
--replicas 0
```
```bash
kubectl scale deployment/velero \
--namespace velero \
--replicas 0
```

1. Update the container image used by the Velero deployment and, optionally, the restic daemon set:

```bash
kubectl set image deployment/velero \
velero=velero/velero:v1.2.0 \
--namespace velero
```bash
kubectl set image deployment/velero \
velero=velero/velero:v1.2.0 \
--namespace velero
# optional, if using the restic daemon set
kubectl set image daemonset/restic \
restic=velero/velero:v1.2.0 \
--namespace velero
```
# optional, if using the restic daemon set
kubectl set image daemonset/restic \
restic=velero/velero:v1.2.0 \
--namespace velero
```

1. If using AWS, Azure, or GCP, add the respective plugin to your Velero deployment:

For AWS:
```bash
velero plugin add velero/velero-plugin-for-aws:v1.0.0
```
For AWS:

```bash
velero plugin add velero/velero-plugin-for-aws:v1.0.0
```

For Azure:

For Azure:
```bash
velero plugin add velero/velero-plugin-for-microsoft-azure:v1.0.0
```
```bash
velero plugin add velero/velero-plugin-for-microsoft-azure:v1.0.0
```

For GCP:
```bash
velero plugin add velero/velero-plugin-for-gcp:v1.0.0
```
For GCP:

```bash
velero plugin add velero/velero-plugin-for-gcp:v1.0.0
```

1. Update the Velero custom resource definitions (CRDs) to include the structural schemas:

```bash
velero install --crds-only --dry-run -o yaml | kubectl apply -f -
```
```bash
velero install --crds-only --dry-run -o yaml | kubectl apply -f -
```

1. Scale back up the existing Velero deployment:

```bash
kubectl scale deployment/velero \
--namespace velero \
--replicas 1
```
```bash
kubectl scale deployment/velero \
--namespace velero \
--replicas 1
```

1. Confirm that the deployment is up and running with the correct version by running:

```bash
velero version
```
```bash
velero version
```

You should see the following output:
You should see the following output:

```bash
Client:
Version: v1.2.0
Git commit: <git SHA>

Server:
Version: v1.2.0
```
```bash
Client:
Version: v1.2.0
Git commit: <git SHA>
Server:
Version: v1.2.0
```


[0]: https://github.com/vmware-tanzu/velero/releases/tag/v1.1.0
Expand Down

0 comments on commit b9f4282

Please sign in to comment.