Skip to content

Commit

Permalink
Streamlining demo 1 (now only simple bucket) - putting public demo to…
Browse files Browse the repository at this point in the history
… No.2 with Composition
  • Loading branch information
jonashackt committed Nov 13, 2024
1 parent 871baac commit e369db3
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,9 @@ kubectl create secret generic aws-creds -n crossplane-system --from-file=creds=.

kubectl apply -f upbound/provider-aws-s3/config/provider-config-aws.yaml

# Create Simple S3 Bucket & public accessible Bucket (based on Crossplane Managed Resources only)
# Create Simple S3 Bucket (based on Crossplane Managed Resources only)
kubectl apply -f upbound/provider-aws-s3/resources/simple-bucket.yaml
kubectl apply -f upbound/provider-aws-s3/resources/public-bucket.yaml

# Upload a static website (e.g. "App")
aws s3 sync static s3://crossplane-meetup-tech-and-talk-ffm --acl public-read
# Open Browser at http://crossplane-meetup-softwerkskammer.s3-website.eu-central-1.amazonaws.com
aws s3 rm s3://crossplane-meetup-tech-and-talk-ffm/index.html

# don't forget to delete both before proceeding
kubectl delete -f upbound/provider-aws-s3/resources/public-bucket.yaml
kubectl delete -f upbound/provider-aws-s3/resources/simple-bucket.yaml



Expand All @@ -87,7 +79,13 @@ kubectl get claim
kubectl get composite
crossplane beta trace objectstorage.crossplane.jonashackt.io/managed-upbound-s3 -o wide

# Delete Claim

# Upload a static website (e.g. "App")
aws s3 sync static s3://techandtalkffm-bucket --acl public-read
# Open Browser at http://crossplane-meetup-softwerkskammer.s3-website.eu-central-1.amazonaws.com
aws s3 rm s3://techandtalkffm-bucket/index.html

# don't forget to delete the Claim
kubectl delete -f upbound/provider-aws-s3/claim.yaml
```

Expand Down

0 comments on commit e369db3

Please sign in to comment.