2021-01-19 17:23:06 -05:00
|
|
|
#! Copyright 2020-2021 the Pinniped contributors. All Rights Reserved.
|
2020-10-14 15:05:42 -07:00
|
|
|
#! SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
#@ load("@ytt:overlay", "overlay")
|
2021-01-19 17:23:06 -05:00
|
|
|
#@ load("helpers.lib.yaml", "labels", "pinnipedDevAPIGroupWithPrefix")
|
|
|
|
#@ load("@ytt:data", "data")
|
2020-10-14 15:05:42 -07:00
|
|
|
|
2020-11-02 15:39:43 -06:00
|
|
|
#@overlay/match by=overlay.subset({"kind": "CustomResourceDefinition", "metadata":{"name":"credentialissuers.config.concierge.pinniped.dev"}}), expects=1
|
2020-10-14 15:05:42 -07:00
|
|
|
---
|
|
|
|
metadata:
|
|
|
|
#@overlay/match missing_ok=True
|
|
|
|
labels: #@ labels()
|
2021-01-19 17:23:06 -05:00
|
|
|
name: #@ pinnipedDevAPIGroupWithPrefix("credentialissuers.config.concierge")
|
|
|
|
spec:
|
|
|
|
group: #@ pinnipedDevAPIGroupWithPrefix("config.concierge")
|
2020-10-14 15:05:42 -07:00
|
|
|
|
2020-10-30 11:39:26 -05:00
|
|
|
#@overlay/match by=overlay.subset({"kind": "CustomResourceDefinition", "metadata":{"name":"webhookauthenticators.authentication.concierge.pinniped.dev"}}), expects=1
|
2020-10-14 15:05:42 -07:00
|
|
|
---
|
|
|
|
metadata:
|
|
|
|
#@overlay/match missing_ok=True
|
|
|
|
labels: #@ labels()
|
2021-01-19 17:23:06 -05:00
|
|
|
name: #@ pinnipedDevAPIGroupWithPrefix("webhookauthenticators.authentication.concierge")
|
|
|
|
spec:
|
|
|
|
group: #@ pinnipedDevAPIGroupWithPrefix("authentication.concierge")
|
2020-12-07 20:37:43 -05:00
|
|
|
|
|
|
|
#@overlay/match by=overlay.subset({"kind": "CustomResourceDefinition", "metadata":{"name":"jwtauthenticators.authentication.concierge.pinniped.dev"}}), expects=1
|
|
|
|
---
|
|
|
|
metadata:
|
|
|
|
#@overlay/match missing_ok=True
|
|
|
|
labels: #@ labels()
|
2021-01-19 17:23:06 -05:00
|
|
|
name: #@ pinnipedDevAPIGroupWithPrefix("jwtauthenticators.authentication.concierge")
|
|
|
|
spec:
|
|
|
|
group: #@ pinnipedDevAPIGroupWithPrefix("authentication.concierge")
|