Skip to content

Commit

Permalink
Allow override of entrypoint to set open file descritors (#104)
Browse files Browse the repository at this point in the history
* Add command to override the entrypoint in order to set open file descrioptor limits

* remove comment
  • Loading branch information
cabeaulac authored Jan 11, 2024
1 parent 700eac4 commit 2b4c109
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions charts/localstack/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ spec:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
{{- if $.Values.command }}
command:
{{ toYaml .Values.command.cmd | nindent 12 }}
{{- end }}
ports:
- name: {{ .Values.service.edgeService.name }}
containerPort: {{ .Values.service.edgeService.targetPort }}
Expand Down
2 changes: 1 addition & 1 deletion charts/localstack/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ service:
externalServicePorts:
start: 4510
end: 4560
# dnsService: true
# dnsService: true

ingress:
enabled: false
Expand Down

0 comments on commit 2b4c109

Please sign in to comment.