This repository has been archived by the owner on Feb 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
infosquito.properties.tmpl
27 lines (22 loc) · 2.17 KB
/
infosquito.properties.tmpl
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
{{- with $base := (printf "configs/%s" (env "DE_ENV")) -}}
{{ with $v := (key (printf "%s/elasticsearch/base" $base )) }}infosquito.es.uri = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/elasticsearch/username" $base )) }}infosquito.es.username = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/elasticsearch/password" $base )) }}infosquito.es.password = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/elasticsearch/data-alias" $base )) }}infosquito.es.index = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/elasticsearch/scroll-size" $base )) }}infosquito.es.scroll-size = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/icat/host" $base )) }}infosquito.icat.host = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/icat/port" $base )) }}infosquito.icat.port = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/icat/user" $base )) }}infosquito.icat.user = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/icat/password" $base )) }}infosquito.icat.password = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/icat/db" $base )) }}infosquito.icat.db = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/irods/zone" $base )) }}infosquito.base-collection = /{{ $v }}{{ end }}
{{ with $v := (key (printf "%s/elasticsearch/batch-size" $base )) }}infosquito.index-batch-size = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/amqp/uri" $base )) }}infosquito.amqp.uri = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/infosquito/reindex-queue" $base )) }}infosquito.amqp.reindex-queue = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/amqp/exchange/name" $base )) }}infosquito.amqp.exchange.name = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/amqp/exchange/durable" $base )) }}infosquito.amqp.exchange.durable = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/amqp/exchange/auto-delete" $base )) }}infosquito.amqp.exchange.auto-delete = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/infosquito/notify-enabled" $base )) }}infosquito.notify.enabled = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/infosquito/notify-count" $base )) }}infosquito.notify.count = {{ $v }}{{ end }}
{{ with $v := (key (printf "%s/infosquito/retry-interval" $base )) }}infosquito.retry-interval = {{ $v }}{{ end }}
{{- end -}}