mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 17:49:59 +00:00
19 lines
501 B
YAML
19 lines
501 B
YAML
# Note: apiextensions.k8s.io/v1beta1 is deprecated, and won't be served
|
|
# in Kubernetes 1.22 and later versions. This YAML manifest is here just
|
|
# for reference, but it's not intended to be used in modern trainings.
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: coffees.container.training
|
|
spec:
|
|
group: container.training
|
|
version: v1alpha1
|
|
scope: Namespaced
|
|
names:
|
|
plural: coffees
|
|
singular: coffee
|
|
kind: Coffee
|
|
shortNames:
|
|
- cof
|
|
|