diff --git a/README.md b/README.md index 7776167..02c10bd 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,16 @@ Teardown is **`make destroy-dr`**, which runs `ansible/crossplane-destroy.yaml` ## Quick start (Crossplane + pattern) ```bash +# Define a s3 bucket name for the appVault +vi values-global.yaml +tridentProtect: + appVault: + enabled: true + name: s3-appvault + s3: + bucketName: '' # must provide a bucketName - if it doesn't exist, crossplane will create it. + region: us-west-1 # region in which the bucket resides + # Discover both clusters and update Helm values in this repository ./pattern.sh make crossplane-setup \ PROD_KUBECONFIG="${HOME}/.kube/kubeconfig-prod" \ @@ -58,16 +68,6 @@ cp values-secret.yaml.template ~/values-secret-netapp-dr-starter-kit.yaml printf '%s\n' 'YourSecurePassword' > ~/.fsx chmod 600 ~/.fsx -# Define a s3 bucket name for the appVault -vi values-global.yaml -tridentProtect: - appVault: - enabled: true - name: s3-appvault - s3: - bucketName: '' # must provide a bucketName - if it doesn't exist, crossplane will create it. - region: us-west-1 # region in which the bucket resides - # Install the Validated Pattern on a target cluster (from Makefile-common; uses Podman) ./pattern.sh make install ```