Skip to content

Commit 76b8958

Browse files
committed
moving where the bucket definition is in regards to everything else during quickstart
1 parent cce4c09 commit 76b8958

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,16 @@ Teardown is **`make destroy-dr`**, which runs `ansible/crossplane-destroy.yaml`
4242
## Quick start (Crossplane + pattern)
4343

4444
```bash
45+
# Define a s3 bucket name for the appVault
46+
vi values-global.yaml
47+
tridentProtect:
48+
appVault:
49+
enabled: true
50+
name: s3-appvault
51+
s3:
52+
bucketName: '' # must provide a bucketName - if it doesn't exist, crossplane will create it.
53+
region: us-west-1 # region in which the bucket resides
54+
4555
# Discover both clusters and update Helm values in this repository
4656
./pattern.sh make crossplane-setup \
4757
PROD_KUBECONFIG="${HOME}/.kube/kubeconfig-prod" \
@@ -58,16 +68,6 @@ cp values-secret.yaml.template ~/values-secret-netapp-dr-starter-kit.yaml
5868
printf '%s\n' 'YourSecurePassword' > ~/.fsx
5969
chmod 600 ~/.fsx
6070

61-
# Define a s3 bucket name for the appVault
62-
vi values-global.yaml
63-
tridentProtect:
64-
appVault:
65-
enabled: true
66-
name: s3-appvault
67-
s3:
68-
bucketName: '' # must provide a bucketName - if it doesn't exist, crossplane will create it.
69-
region: us-west-1 # region in which the bucket resides
70-
7171
# Install the Validated Pattern on a target cluster (from Makefile-common; uses Podman)
7272
./pattern.sh make install
7373
```

0 commit comments

Comments
 (0)