Skip to content

Commit

Permalink
Merge pull request #14 from Onlineberatung/OB-ToolsInxmail
Browse files Browse the repository at this point in the history
feat: inxmail
  • Loading branch information
web-mi authored Jul 26, 2023
2 parents 5fff80c + 2882fb2 commit f789a0e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions charts/integritychecks/templates/integritychecks-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ metadata:
type: Opaque
data:
TEAMS_WEBHOOK_URL: {{ .Values.teams.webhookUrl | default "" | b64enc | quote }}
INXMAIL_API_URL: {{ .Values.inxmail.api.url | default "https://{spaceid}.api.inxmail-commerce.com/api-service/v1" | b64enc | quote }}
INXMAIL_API_ID: {{ .Values.inxmail.api.id | default "" | b64enc | quote }}
INXMAIL_API_KEY: {{ .Values.inxmail.api.key | default "" | b64enc | quote }}
{{- range $path, $config := .Values.mysql -}}
{{- if and $config (eq $path "password") -}}
{{- printf "MYSQL_%s" (upper $path) | nindent 2 }}: {{ $config | b64enc | quote -}}
Expand Down
5 changes: 5 additions & 0 deletions charts/integritychecks/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ force: 'false'
logPath:
jobs: []
services: []
inxmail:
api:
url: 'https://{spaceid}.api.inxmail-commerce.com/api-service/v1'
id: ''
key: ''
mysql:
user: 'root'
password: 'root'
Expand Down

0 comments on commit f789a0e

Please sign in to comment.