e7b389ae6c
Signed-off-by: Andrew Keesler <akeesler@vmware.com>
17 lines
455 B
YAML
17 lines
455 B
YAML
#! Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
#! SPDX-License-Identifier: Apache-2.0
|
|
|
|
#@ load("@ytt:data", "data")
|
|
|
|
apiVersion: idp.pinniped.dev/v1alpha1
|
|
kind: WebhookIdentityProvider
|
|
metadata:
|
|
name: #@ data.values.app_name + "-webhook"
|
|
namespace: #@ data.values.namespace
|
|
labels:
|
|
app: #@ data.values.app_name
|
|
spec:
|
|
endpoint: #@ data.values.webhook_url
|
|
tls:
|
|
certificateAuthorityData: #@ data.values.webhook_ca_bundle
|