You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,8 +34,7 @@
34
34
35
35
[LocalStack 💻](https://localstack.cloud) is a cloud service emulator that runs in a single container on your laptop or in your CI environment. With LocalStack, you can run your AWS applications or Lambdas entirely on your local machine without connecting to a remote cloud provider! Whether you are testing complex CDK applications or Terraform configurations, or just beginning to learn about AWS services, LocalStack helps speed up and simplify your testing and development workflow.
36
36
37
-
LocalStack supports a growing number of AWS services, like AWS Lambda, S3, Dynamodb, Kinesis, SQS, SNS, and **many** more! The [**Pro version** of LocalStack](https://localstack.cloud/pricing) supports additional APIs and advanced features. You can find a comprehensive list of supported APIs on our [☑️ Feature Coverage](https://docs.localstack.cloud/aws/feature-coverage/) page.
38
-
37
+
LocalStack for AWS supports a bunch of AWS services, like AWS Lambda, S3, Dynamodb, Kinesis, SQS, SNS, and **many** more!
39
38
LocalStack also provides additional features to make your life as a cloud developer easier! Check out LocalStack's [Cloud Developer Tools](https://docs.localstack.cloud/tools/) for more information.
**Important:** LocalStack requires an auth token for all installations. You must configure your auth token as described in the [Authentication](#authentication) section below before installing the chart.
40
+
27
41
These commands deploy LocalStack on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
28
42
29
43
> **Tip**: List all releases using `helm list`
@@ -38,37 +52,28 @@ $ helm delete my-release
38
52
39
53
The command removes all the Kubernetes components associated with the chart and deletes the release.
40
54
41
-
## LocalStack Pro
42
-
43
-
You can use this chart with LocalStack Pro by:
44
-
1. Changing the image to `localstack/localstack-pro`.
45
-
2. Providing your Auth Token as an environment variable.
46
-
_(API keys are deprecated by Localstack v3.0)_
47
-
48
-
You can set these values in a YAML file (in this example `pro-values.yaml`):
55
+
## Authentication
56
+
You can set the auth token in a YAML file (in this example `values.yaml`):
49
57
```yaml
50
-
image:
51
-
repository: localstack/localstack-pro
52
-
53
58
extraEnvVars:
54
59
- name: LOCALSTACK_AUTH_TOKEN
55
60
value: "<your auth token>"
56
61
```
57
62
58
63
If you have the LocalStack Auth Token in a secret, you can also reference it directly with `extraEnvVars`:
59
-
```
64
+
```yaml
60
65
extraEnvVars:
61
66
- name: LOCALSTACK_AUTH_TOKEN
62
67
valueFrom:
63
68
secretKeyRef:
64
69
name: <name of the secret>
65
-
key: <nameofthekeyinthesecretcontainingtheAPIkey>
70
+
key: <name of the key in the secret containing the auth token>
66
71
```
67
72
68
-
And you can use these values when installing the chart in your cluster:
73
+
Then use these values when installing the chart in your cluster:
0 commit comments