Skip to content

Commit

Permalink
cleanup command, dnsService, and docs (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrashed authored Jan 11, 2024
1 parent dbe811d commit 1e11ab5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
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

0 comments on commit 1e11ab5

Please sign in to comment.