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