Merge pull request #225 from mgk/master

allow keel-webhookrelay secret to be external
feature/registry_cfg
Karolis Rusenas 2018-06-09 15:39:52 +01:00 committed by GitHub
commit 763dfc320b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{{- if .Values.webhookRelay.enabled }}
{{- if (and .Values.webhookRelay.enabled .Values.webhookRelay.key .Values.webhookRelay.secret) }}
apiVersion: v1
kind: Secret
metadata:

View File

@ -70,10 +70,12 @@ service:
# which can deliver webhooks to your internal Keel service through Keel sidecar container.
webhookRelay:
enabled: false
bucket: ""
# webhookrelay.com credentials
# Set the key and secret values here to create the keel-webhookrelay secret with this
# chart -or- leave key and secret blank and create the keel-webhookrelay secret separately.
key: ""
secret: ""
bucket: ""
# webhookrelay docker image
image:
repository: webhookrelay/webhookrelayd