-
Notifications
You must be signed in to change notification settings - Fork 0
/
localstack-values.yaml
40 lines (40 loc) · 1011 Bytes
/
localstack-values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
# Only change the image from `localstack/localstack` to `localstack/localstack-pro
# if you have a pro subscription. Otherwise leave it on the default image.
image:
repository: localstack/localstack-pro
extraEnvVars:
- name: LS_LOG
value: debug
- name: LOCALSTACK_AUTH_TOKEN
valueFrom:
secretKeyRef:
name: localstack-auth-token
key: token
debug: true
mountDind:
enabled: true
forceTLS: true
image: "docker:26-dind"
ingress:
enabled: true
ingressClassName: "nginx"
annotations:
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
nginx.ingress.kubernetes.io/ssl-passthrough: "true"
nginx.ingress.kubernetes.io/ssl-redirect: "true"
hosts:
- host: localhost.localstack.cloud
paths:
- path: /
pathType: ImplementationSpecific
tls: []
lambda:
executor: "kubernetes"
volumes:
- name: docker-sock
hostPath:
path: /var/run/docker.sock
volumeMounts:
- name: docker-sock
mountPath: /var/run/docker.sock