Skip to content
Merged
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
16 changes: 8 additions & 8 deletions modules/installing-oadp-rosa-sts.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ $ cat <<EOF > ${SCRATCH}/credentials
[default]
role_arn = ${ROLE_ARN}
web_identity_token_file = /var/run/secrets/openshift/serviceaccount/token
region = <aws_region> <1>
region = <aws_region> # <1>
EOF
----
<1> Replace `<aws_region>` with the AWS region to use for the {sts-short} endpoint.
Expand Down Expand Up @@ -163,7 +163,7 @@ $ cat << EOF | oc create -f -
name: ${CLUSTER_NAME}-dpa
namespace: openshift-adp
spec:
backupImages: true <1>
backupImages: true # <1>
features:
dataMover:
enable: false
Expand Down Expand Up @@ -206,7 +206,7 @@ $ cat << EOF | oc create -f -
name: ${CLUSTER_NAME}-dpa
namespace: openshift-adp
spec:
backupImages: true <1>
backupImages: true # <1>
backupLocations:
- bucket:
cloudStorageRef:
Expand All @@ -223,16 +223,16 @@ $ cat << EOF | oc create -f -
defaultPlugins:
- openshift
- aws
nodeAgent: <2>
nodeAgent: # <2>
enable: false
uploaderType: restic
snapshotLocations:
- velero:
config:
credentialsFile: /tmp/credentials/openshift-adp/cloud-credentials-credentials <3>
enableSharedConfig: "true" <4>
profile: default <5>
region: ${REGION} <6>
credentialsFile: /tmp/credentials/openshift-adp/cloud-credentials-credentials # <3>
enableSharedConfig: "true" # <4>
profile: default # <5>
region: ${REGION} # <6>
provider: aws
EOF
----
Expand Down