mirror of
https://github.com/bakito/adguardhome-sync.git
synced 2024-11-15 20:44:14 +08:00
31d91adb42
* use helm for e2e test * wait for pods * update action
17 lines
552 B
YAML
17 lines
552 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: sync-conf
|
|
namespace: {{ .Release.Namespace }}
|
|
data:
|
|
API_PORT: "0"
|
|
LOG_LEVEL: info
|
|
ORIGIN_URL: http://service-origin.{{ $.Release.Namespace }}.svc.cluster.local:3000
|
|
ORIGIN_PASSWORD: password
|
|
ORIGIN_USERNAME: username
|
|
{{ range $i,$_ := .Values.replica.versions }}
|
|
REPLICA{{ $i }}_AUTOSETUP: "true"
|
|
REPLICA{{ $i }}_URL: http://service-replica-{{ $i }}.{{ $.Release.Namespace }}.svc.cluster.local:3000
|
|
REPLICA{{ $i }}_PASSWORD: password
|
|
REPLICA{{ $i }}_USERNAME: username
|
|
{{- end }}
|