You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/openshift/howto-create-a-backup.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@ description: Learn how to create a backup of your Azure Red Hat OpenShift cluste
4
4
ms.service: azure-redhat-openshift
5
5
ms.topic: article
6
6
ms.date: 06/22/2020
7
-
author: georgewallace
8
-
ms.author: gwallace
7
+
author: rahulm23
8
+
ms.author: rahulmehta
9
9
keywords: aro, openshift, az aro, red hat, cli
10
10
ms.custom: mvc, devx-track-azurecli
11
11
#Customer intent: As an operator, I need to create an Azure Red Hat OpenShift cluster application backup
@@ -19,7 +19,7 @@ In this article, you'll prepare your environment to create an Azure Red Hat Open
19
19
> * Setup the prerequisites and install the necessary tools
20
20
> * Create an Azure Red Hat OpenShift 4 application backup
21
21
22
-
If you choose to install and use the CLI locally, this tutorial requires that you are running the Azure CLI version 2.6.0 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI](/cli/azure/install-azure-cli).
22
+
If you choose to install and use the CLI locally, this tutorial requires that you're running the Azure CLI version 2.6.0 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI](/cli/azure/install-azure-cli).
23
23
24
24
## Before you begin
25
25
@@ -86,7 +86,7 @@ EOF
86
86
87
87
## Install Velero on Azure Red Hat OpenShift 4 cluster
88
88
89
-
This step will install Velero into its own project and the [custom resource definitions](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/) necessary to do backups and restores with Velero. Make sure you are successfully logged in to an Azure Red Hat OpenShift v4 cluster.
89
+
This step will install Velero into its own project and the [custom resource definitions](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/) necessary to do backups and restores with Velero. Make sure you're successfully logged in to an Azure Red Hat OpenShift v4 cluster.
90
90
91
91
92
92
```bash
@@ -118,7 +118,7 @@ A successful backup will output `phase:Completed` and the objects will live in t
118
118
119
119
## Create a backup with Velero to include snapshots
120
120
121
-
To create an application backup with Velero to include the persistent volumes of your application, you'll need to include the namespace that the application is in as well as to include the `snapshot-volumes=true` flag when creating the backup
121
+
To create an application backup with Velero to include the persistent volumes of your application, you'll need to include the namespace that the application is in and include the `snapshot-volumes=true` flag when creating the backup.
122
122
123
123
```bash
124
124
velero backup create <name of backup> --include-namespaces=nginx-example --snapshot-volumes=true --include-cluster-resources=true
@@ -132,7 +132,7 @@ oc get backups -n velero <name of backup> -o yaml
132
132
133
133
A successful backup with output `phase:Completed` and the objects will live in the container in the storage account.
134
134
135
-
For more information about how to create backups and restores using Velero see [Backup OpenShift resources the native way](https://www.openshift.com/blog/backup-openshift-resources-the-native-way)
135
+
For more information, see [Backup OpenShift resources the native way](https://www.openshift.com/blog/backup-openshift-resources-the-native-way)
Copy file name to clipboardExpand all lines: articles/openshift/howto-create-a-restore.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@ description: Learn how to create a restore of your Azure Red Hat OpenShift clust
4
4
ms.service: azure-redhat-openshift
5
5
ms.topic: article
6
6
ms.date: 06/22/2020
7
-
author: georgewallace
8
-
ms.author: gwallace
7
+
author: rahulm23
8
+
ms.author: rahulmehta
9
9
keywords: aro, openshift, az aro, red hat, cli
10
10
ms.custom: mvc
11
11
#Customer intent: As an operator, I need to create an Azure Red Hat OpenShift cluster application restore
@@ -19,7 +19,7 @@ In this article, you'll prepare your environment to create an Azure Red Hat Open
19
19
> * Setup the prerequisites and install the necessary tools
20
20
> * Create an Azure Red Hat OpenShift 4 application restore
21
21
22
-
If you choose to install and use the CLI locally, this tutorial requires that you are running the Azure CLI version 2.6.0 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI](/cli/azure/install-azure-cli).
22
+
If you choose to install and use the CLI locally, this tutorial requires that you're running the Azure CLI version 2.6.0 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI](/cli/azure/install-azure-cli).
23
23
24
24
## Before you begin
25
25
@@ -70,7 +70,7 @@ oc get restore -n velero <name of restore created previously> -o yaml
70
70
```
71
71
When the phase says `Completed`, your Azure Red Hat 4 application should be restored.
72
72
73
-
For more information about how to create backups and restores using Velero see [Backup OpenShift resources the native way](https://www.openshift.com/blog/backup-openshift-resources-the-native-way)
73
+
For more information, see [Backup OpenShift resources the native way](https://www.openshift.com/blog/backup-openshift-resources-the-native-way)
0 commit comments