diff --git a/docs/aws-config.md b/docs/aws-config.md index cdacbdc4e..ecd1e339d 100644 --- a/docs/aws-config.md +++ b/docs/aws-config.md @@ -147,15 +147,18 @@ Install Velero, including all prerequisites, into the cluster and start the depl velero install \ --provider aws \ --bucket $BUCKET \ + --secret-file ./credentials-velero \ --backup-location-config region=$REGION \ - --snapshot-location-config region=$REGION \ - --secret-file ./credentials-velero + --snapshot-location-config region=$REGION ``` Additionally, you can specify `--use-restic` to enable restic support, and `--wait` to wait for the deployment to be ready. -For more complex installation needs, use either the Helm chart, or add `--dry-run -o yaml` options for generating the YAML representation for the installation. +(Optional) Specify [additional configurable parameters][21] for the `--backup-location-config` flag. +(Optional) Specify [additional configurable parameters][6] for the `--snapshot-location-config` flag. + +For more complex installation needs, use either the Helm chart, or add `--dry-run -o yaml` options for generating the YAML representation for the installation. ## Setting AWS_CLUSTER_NAME (Optional) diff --git a/docs/azure-config.md b/docs/azure-config.md index 92d42b2ee..12f37f651 100644 --- a/docs/azure-config.md +++ b/docs/azure-config.md @@ -147,6 +147,10 @@ velero install \ Additionally, you can specify `--use-restic` to enable restic support, and `--wait` to wait for the deployment to be ready. +(Optional) Specify [additional configurable parameters][21] for the `--backup-location-config` flag. + +(Optional) Specify [additional configurable parameters][8] for the `--snapshot-location-config` flag. + For more complex installation needs, use either the Helm chart, or add `--dry-run -o yaml` options for generating the YAML representation for the installation. ## Installing the nginx example (optional) diff --git a/docs/gcp-config.md b/docs/gcp-config.md index 35a47462f..f7cd723bd 100644 --- a/docs/gcp-config.md +++ b/docs/gcp-config.md @@ -126,6 +126,10 @@ Additionally, you can specify `--use-restic` to enable restic support, and `--wa (Optional) Specify `--snapshot-location-config snapshotLocation=` to keep snapshots in a specific availability zone. See the [VolumeSnapshotLocation definition][8] for details. +(Optional) Specify [additional configurable parameters][7] for the `--backup-location-config` flag. + +(Optional) Specify [additional configurable parameters][8] for the `--snapshot-location-config` flag. + For more complex installation needs, use either the Helm chart, or add `--dry-run -o yaml` options for generating the YAML representation for the installation. ## Installing the nginx example (optional) diff --git a/docs/get-started.md b/docs/get-started.md index 2fb92f9c5..73193cc85 100644 --- a/docs/get-started.md +++ b/docs/get-started.md @@ -61,7 +61,7 @@ These instructions start the Velero server and a Minio instance that is accessib --provider aws \ --bucket velero \ --secret-file ./credentials-velero \ - --backup-location-config region=minio,s3ForcePathStyle="true",s3Url=http://minio.velero.svc:9000 \ + --backup-location-config region=minio,s3ForcePathStyle="true",s3Url=http://minio.velero.svc:9000 ``` Additionally, you can specify `--use-restic` to enable restic support, and `--wait` to wait for the deployment to be ready.