Skip to content

Commit 3e36dea

Browse files
authored
Merge pull request #86780 from anarnold97/OADP-5354-Backup-is-failing-on-validation-PartiallyFailed
OADP-5354: Backup is failing on validation PartiallyFailed
2 parents c2a660c + c5862af commit 3e36dea

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

cloud_experts_tutorials/cloud-experts-deploy-api-data-protection.adoc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,11 +160,13 @@ $ cat <<EOF > ${SCRATCH}/credentials
160160
[default]
161161
role_arn = ${ROLE_ARN}
162162
web_identity_token_file = /var/run/secrets/openshift/serviceaccount/token
163+
region=<aws_region> # <1>
163164
EOF
164165
$ oc -n openshift-adp create secret generic cloud-credentials \
165166
--from-file=${SCRATCH}/credentials
166167
----
167-
168+
+
169+
<1> Replace `<aws_region>` with the AWS region to use for the {sts-first} endpoint.
168170
. Deploy the OADP Operator:
169171
+
170172
[NOTE]
@@ -606,4 +608,4 @@ $ aws iam detach-role-policy --role-name "${ROLE_NAME}" \
606608
[source,terminal]
607609
----
608610
$ aws iam delete-role --role-name "${ROLE_NAME}"
609-
----
611+
----

modules/installing-oadp-rosa-sts.adoc

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ $ cat <<EOF > ${SCRATCH}/credentials
4949
region = <aws_region> <1>
5050
EOF
5151
----
52-
<1> The AWS region in which the cloud resources have been created.
53-
52+
<1> Replace `<aws_region>` with the AWS region to use for the {sts-short} endpoint.
5453
.. Create a namespace for OADP:
5554
+
5655
[source,terminal]
@@ -185,11 +184,14 @@ $ cat << EOF | oc create -f -
185184
- openshift
186185
- aws
187186
- csi
188-
restic:
187+
nodeAgent: # <2>
189188
enable: false
189+
uploaderType: kopia # <3>
190190
EOF
191191
----
192192
<1> ROSA supports internal image backup. Set this field to `false` if you do not want to use image backup.
193+
<2> See the important note regarding the `nodeAgent` attribute.
194+
<3> The type of uploader. The possible values are `restic` or `kopia`. The built-in Data Mover uses Kopia as the default uploader mechanism regardless of the value of the `uploaderType` field.
193195

194196
// . Create the `DataProtectionApplication` resource, which is used to configure the connection to the storage where the backups and volume snapshots are stored:
195197

@@ -205,9 +207,6 @@ $ cat << EOF | oc create -f -
205207
namespace: openshift-adp
206208
spec:
207209
backupImages: true <1>
208-
features:
209-
dataMover:
210-
enable: false
211210
backupLocations:
212211
- bucket:
213212
cloudStorageRef:

0 commit comments

Comments
 (0)