Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cleanup command, dnsService, and docs #107

Merged
merged 3 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/localstack/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
{{- if $.Values.command }}
command:
{{ toYaml .Values.command.cmd | nindent 12 }}
{{ toYaml .Values.command | nindent 12 }}
{{- end }}
ports:
- name: {{ .Values.service.edgeService.name }}
Expand Down
8 changes: 5 additions & 3 deletions charts/localstack/test-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
# enable debugging
debug: true


# enable eager service loading with dynamodb
startServices: "dynamodb"
# modify the command to set the ulimit
command:
- /bin/bash
- -c
- echo 'ulimit -Sn 32767' >> /root/.bashrc && echo 'ulimit -Su 16383' >> /root/.bashrc && docker-entrypoint.sh


# enable startup scripts, create a startup script which creates an SQS queue
Expand Down
10 changes: 8 additions & 2 deletions charts/localstack/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,13 @@ securityContext: {}

debug: false

## @param command Allows you to set an arbitrary command on startup (instead of the default entrypoint script)
##
command: []


startServices: ""
# Comma-separated list of AWS CLI service names which should be loaded right when starting LocalStack. If not set, each service is loaded and started on the first request for that service.
# Comma-separated list of AWS CLI service names which are the only ones allowed to be used (other services will then by default be prevented from being loaded).

# kinesisErrorProbability: 0.0

Expand Down Expand Up @@ -114,7 +118,9 @@ service:
externalServicePorts:
start: 4510
end: 4560
# dnsService: true
## @param service.dnsService Enables or disables the exposure of the LocalStack DNS
##
dnsService: false

ingress:
enabled: false
Expand Down