2022-06-06 17:15:25 +00:00
|
|
|
#! Copyright 2020-2022 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-12-16 22:27:09 +00:00
|
|
|
#@overlay/match by=overlay.subset({"kind": "CustomResourceDefinition", "metadata":{"name":"federationdomains.config.supervisor.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("federationdomains.config.supervisor")
|
|
|
|
spec:
|
|
|
|
group: #@ pinnipedDevAPIGroupWithPrefix("config.supervisor")
|
2020-10-23 02:03:46 +00:00
|
|
|
|
2020-12-16 22:27:09 +00:00
|
|
|
#@overlay/match by=overlay.subset({"kind": "CustomResourceDefinition", "metadata":{"name":"oidcidentityproviders.idp.supervisor.pinniped.dev"}}), expects=1
|
2020-10-23 02:03:46 +00:00
|
|
|
---
|
|
|
|
metadata:
|
|
|
|
#@overlay/match missing_ok=True
|
|
|
|
labels: #@ labels()
|
2021-01-19 22:23:06 +00:00
|
|
|
name: #@ pinnipedDevAPIGroupWithPrefix("oidcidentityproviders.idp.supervisor")
|
|
|
|
spec:
|
|
|
|
group: #@ pinnipedDevAPIGroupWithPrefix("idp.supervisor")
|
2021-04-06 17:10:01 +00:00
|
|
|
|
|
|
|
#@overlay/match by=overlay.subset({"kind": "CustomResourceDefinition", "metadata":{"name":"ldapidentityproviders.idp.supervisor.pinniped.dev"}}), expects=1
|
|
|
|
---
|
|
|
|
metadata:
|
|
|
|
#@overlay/match missing_ok=True
|
|
|
|
labels: #@ labels()
|
|
|
|
name: #@ pinnipedDevAPIGroupWithPrefix("ldapidentityproviders.idp.supervisor")
|
|
|
|
spec:
|
|
|
|
group: #@ pinnipedDevAPIGroupWithPrefix("idp.supervisor")
|
2021-07-15 18:32:15 +00:00
|
|
|
|
|
|
|
#@overlay/match by=overlay.subset({"kind": "CustomResourceDefinition", "metadata":{"name":"activedirectoryidentityproviders.idp.supervisor.pinniped.dev"}}), expects=1
|
|
|
|
---
|
|
|
|
metadata:
|
|
|
|
#@overlay/match missing_ok=True
|
|
|
|
labels: #@ labels()
|
|
|
|
name: #@ pinnipedDevAPIGroupWithPrefix("activedirectoryidentityproviders.idp.supervisor")
|
|
|
|
spec:
|
|
|
|
group: #@ pinnipedDevAPIGroupWithPrefix("idp.supervisor")
|
2022-06-06 17:15:25 +00:00
|
|
|
|
2022-06-13 22:48:54 +00:00
|
|
|
#@overlay/match by=overlay.subset({"kind": "CustomResourceDefinition", "metadata":{"name":"oidcclients.config.supervisor.pinniped.dev"}}), expects=1
|
2022-06-06 17:15:25 +00:00
|
|
|
---
|
|
|
|
metadata:
|
|
|
|
#@overlay/match missing_ok=True
|
|
|
|
labels: #@ labels()
|
2022-06-13 22:48:54 +00:00
|
|
|
name: #@ pinnipedDevAPIGroupWithPrefix("oidcclients.config.supervisor")
|
2022-06-06 17:15:25 +00:00
|
|
|
spec:
|
2022-06-13 22:48:54 +00:00
|
|
|
group: #@ pinnipedDevAPIGroupWithPrefix("config.supervisor")
|
2022-06-14 00:06:47 +00:00
|
|
|
versions:
|
|
|
|
#@overlay/match by=overlay.all, expects="1+"
|
|
|
|
- schema:
|
|
|
|
openAPIV3Schema:
|
|
|
|
#@overlay/match by=overlay.subset({"metadata":{"type":"object"}}), expects=1
|
|
|
|
properties:
|
|
|
|
metadata:
|
|
|
|
#@overlay/match missing_ok=True
|
|
|
|
properties:
|
|
|
|
name:
|
|
|
|
pattern: ^client\.oauth\.pinniped\.dev-
|
|
|
|
type: string
|