[stable/openebs]: make webhook failurePolicy configurable (#16659)

- Update values.yaml with default failurePolicy as `Ignore`

Signed-off-by: prateekpandey14 <prateek.pandey@openebs.io>
This commit is contained in:
Prateek Pandey
2019-08-28 09:27:12 -07:00
committed by Kubernetes Prow Robot
parent 2e2e6d275c
commit 99ce30e8d6
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
apiVersion: v1
version: 1.1.2
version: 1.1.3
name: openebs
appVersion: 1.1.0
description: Containerized Storage for Containers
@@ -18,7 +18,7 @@ metadata:
webhooks:
# failurePolicy Fail means that an error calling the webhook causes the admission to fail.
- name: admission-webhook.openebs.io
failurePolicy: Fail
failurePolicy: {{ .Values.webhook.failurePolicy }}
clientConfig:
service:
name: admission-server-svc
+1
View File
@@ -113,6 +113,7 @@ webhook:
image: "quay.io/openebs/admission-server"
imageTag: "1.1.0"
generateTLS: true
failurePolicy: Ignore
replicas: 1
nodeSelector: {}
tolerations: []