diff --git a/modules/installing-oadp-rosa-sts.adoc b/modules/installing-oadp-rosa-sts.adoc index fd73b0faaa3b..f8926d64aef8 100644 --- a/modules/installing-oadp-rosa-sts.adoc +++ b/modules/installing-oadp-rosa-sts.adoc @@ -46,7 +46,7 @@ $ cat < ${SCRATCH}/credentials [default] role_arn = ${ROLE_ARN} web_identity_token_file = /var/run/secrets/openshift/serviceaccount/token - region = <1> + region = # <1> EOF ---- <1> Replace `` with the AWS region to use for the {sts-short} endpoint. @@ -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 @@ -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: @@ -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 ----