Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added option for authenticated webhooks #648

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chart/keel/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: keel
description: Open source, tool for automating Kubernetes deployment updates. Keel is stateless, robust and lightweight.
version: 0.9.10
version: 0.9.11
# Note that we use appVersion to get images tag, so make sure this is correct.
appVersion: 0.16.1
keywords:
Expand Down
4 changes: 4 additions & 0 deletions chart/keel/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@ spec:
- name: AWS_REGION
value: "{{ .Values.aws.region }}"
{{- end }}
{{- if .Values.webhook.authenticated }}
- name: AUTHENTICATED_WEBHOOKS
value: "{{ .Values.webhook.authenticated }}"
{{- end }}
{{- if or .Values.secret.create .Values.secret.name }}
envFrom:
- secretRef:
Expand Down
1 change: 1 addition & 0 deletions chart/keel/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ ecr:
webhook:
enabled: false
endpoint: ""
authenticated: false

# Slack Notification
# bot name (default keel) must exist!
Expand Down