diff --git a/CRD-Template.yml b/CRD-Template.yml new file mode 100644 index 0000000000..0c80ab57d5 --- /dev/null +++ b/CRD-Template.yml @@ -0,0 +1,47 @@ +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.4.1 + creationTimestamp: null + name: newkinds.my.group.com +spec: + group: my.group.com + names: + kind: NewKind + listKind: NewKindList + plural: newkinds + singular: newkind + scope: Namespaced + versions: + - name: v1 + schema: + openAPIV3Schema: + description: NewKind is the Schema for the NewKind API + properties: + apiVersion: + description: 'agones.dev/v1' + type: string + kind: + description: 'Fleet' + type: string + metadata: + type: object + spec: + description: NewKind defines the desired state of NewKind + properties: + key: + description: key value which generated using a hash method + type: string + type: object + type: object + served: true + storage: true + subresources: + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] \ No newline at end of file