2022-06-06 10:15:25 -07:00
|
|
|
#! Copyright 2020-2022 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-12-16 14:27:09 -08:00
|
|
|
#@overlay/match by=overlay.subset({"kind": "CustomResourceDefinition", "metadata":{"name":"federationdomains.config.supervisor.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("federationdomains.config.supervisor")
|
|
|
|
spec:
|
|
|
|
group: #@ pinnipedDevAPIGroupWithPrefix("config.supervisor")
|
2020-10-22 21:03:46 -05:00
|
|
|
|
2020-12-16 14:27:09 -08:00
|
|
|
#@overlay/match by=overlay.subset({"kind": "CustomResourceDefinition", "metadata":{"name":"oidcidentityproviders.idp.supervisor.pinniped.dev"}}), expects=1
|
2020-10-22 21:03:46 -05:00
|
|
|
---
|
|
|
|
metadata:
|
|
|
|
#@overlay/match missing_ok=True
|
|
|
|
labels: #@ labels()
|
2021-01-19 17:23:06 -05:00
|
|
|
name: #@ pinnipedDevAPIGroupWithPrefix("oidcidentityproviders.idp.supervisor")
|
|
|
|
spec:
|
|
|
|
group: #@ pinnipedDevAPIGroupWithPrefix("idp.supervisor")
|
2021-04-06 13:10:01 -04: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 11:32:15 -07: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 10:15:25 -07:00
|
|
|
|
2022-06-13 15:48:54 -07:00
|
|
|
#@overlay/match by=overlay.subset({"kind": "CustomResourceDefinition", "metadata":{"name":"oidcclients.config.supervisor.pinniped.dev"}}), expects=1
|
2022-06-06 10:15:25 -07:00
|
|
|
---
|
|
|
|
metadata:
|
|
|
|
#@overlay/match missing_ok=True
|
|
|
|
labels: #@ labels()
|
2022-06-13 15:48:54 -07:00
|
|
|
name: #@ pinnipedDevAPIGroupWithPrefix("oidcclients.config.supervisor")
|
2022-06-06 10:15:25 -07:00
|
|
|
spec:
|
2022-06-13 15:48:54 -07:00
|
|
|
group: #@ pinnipedDevAPIGroupWithPrefix("config.supervisor")
|
2022-06-13 20:06:47 -04: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
|