Skip to content

Commit 181d295

Browse files
authored
Update sqs-example.md (#1834)
updating SQS example with the following changes: 1. Upgrading controller version to the latest one 2. Provide more details about the region parameter for the controller installation, and detail on how to deploy to other regions as stated in the other doc Issue #, if available: Description of changes: By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 18fd8f1 commit 181d295

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/content/docs/tutorials/sqs-example.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,18 @@ This guide assumes that you have:
4444

4545
### Install the ACK service controller for SQS
4646

47+
> **_NOTE:_** This guide assumes you're using `us-east-1` as the region where the ACK controller will be deployed, as well as the Amazon SQS resource. If you want to create the object in another resource, simply change the region name to your region of choice.
48+
4749
Log into the Helm registry that stores the ACK charts:
4850
```bash
4951
aws ecr-public get-login-password --region us-east-1 | helm registry login --username AWS --password-stdin public.ecr.aws
5052
```
5153

52-
Deploy the ACK service controller for Amazon SQS using the [sqs-chart Helm chart](https://gallery.ecr.aws/aws-controllers-k8s/sqs-chart). Resources should be created in the `us-east-1` region:
54+
Deploy the ACK service controller for Amazon SQS using the [sqs-chart Helm chart](https://gallery.ecr.aws/aws-controllers-k8s/sqs-chart). If you're looking to deploy resources to multiple regions, please refer to the [Manage Resources In Multiple Regions]([url](https://aws-controllers-k8s.github.io/community/docs/user-docs/multi-region-resource-management/)) documentation.
5355

5456
```bash
55-
helm install --create-namespace -n ack-system oci://public.ecr.aws/aws-controllers-k8s/sqs-chart --version=v0.0.3 --generate-name --set=aws.region=us-east-1
57+
CONTROLLER_REGION=us-east-1
58+
helm install --create-namespace -n ack-system oci://public.ecr.aws/aws-controllers-k8s/sqs-chart --version=1.0.4 --generate-name --set=aws.region=$CONTROLLER_REGION
5659
```
5760

5861
For a full list of available values to the Helm chart, please [review the values.yaml file](https://github.com/aws-controllers-k8s/sqs-controller/blob/main/helm/values.yaml).

0 commit comments

Comments
 (0)