616211c1bc
I didn't advertise this feature in the deploy README's since (hopefully) not many people will want to use it? Signed-off-by: Andrew Keesler <akeesler@vmware.com>
25 lines
995 B
YAML
25 lines
995 B
YAML
#! Copyright 2020-2021 the Pinniped contributors. All Rights Reserved.
|
|
#! SPDX-License-Identifier: Apache-2.0
|
|
|
|
#@ load("@ytt:overlay", "overlay")
|
|
#@ load("helpers.lib.yaml", "labels", "pinnipedDevAPIGroupWithPrefix")
|
|
#@ load("@ytt:data", "data")
|
|
|
|
#@overlay/match by=overlay.subset({"kind": "CustomResourceDefinition", "metadata":{"name":"federationdomains.config.supervisor.pinniped.dev"}}), expects=1
|
|
---
|
|
metadata:
|
|
#@overlay/match missing_ok=True
|
|
labels: #@ labels()
|
|
name: #@ pinnipedDevAPIGroupWithPrefix("federationdomains.config.supervisor")
|
|
spec:
|
|
group: #@ pinnipedDevAPIGroupWithPrefix("config.supervisor")
|
|
|
|
#@overlay/match by=overlay.subset({"kind": "CustomResourceDefinition", "metadata":{"name":"oidcidentityproviders.idp.supervisor.pinniped.dev"}}), expects=1
|
|
---
|
|
metadata:
|
|
#@overlay/match missing_ok=True
|
|
labels: #@ labels()
|
|
name: #@ pinnipedDevAPIGroupWithPrefix("oidcidentityproviders.idp.supervisor")
|
|
spec:
|
|
group: #@ pinnipedDevAPIGroupWithPrefix("idp.supervisor")
|