28 lines
623 B
YAML
28 lines
623 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "sqs.fullname" . }}
|
|
labels:
|
|
{{- include "sqs.labels" . | nindent 4 }}
|
|
data:
|
|
elasticmq.conf: |-
|
|
include classpath("application.conf")
|
|
akka.http.server.request-timeout = 40 s
|
|
|
|
node-address {
|
|
protocol = http
|
|
host = "*"
|
|
port = 9324
|
|
context-path = ""
|
|
}
|
|
|
|
rest-sqs {
|
|
enabled = true
|
|
bind-port = 9324
|
|
bind-hostname = "0.0.0.0"
|
|
// Possible values: relaxed, strict
|
|
sqs-limits = strict
|
|
}
|
|
{{if .Values.queueConfig }}
|
|
{{ .Values.queueConfig | trim | nindent 4 }}
|
|
{{ end }}
|