From 83177c808303291f4e2308808540ff282b23411d Mon Sep 17 00:00:00 2001 From: Steve Mattar Date: Wed, 24 Feb 2021 12:21:57 +0200 Subject: [PATCH] fix(crd): add the broker crd Signed-off-by: Steve Mattar --- submariner-operator/crds/crd.yaml | 66 +++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/submariner-operator/crds/crd.yaml b/submariner-operator/crds/crd.yaml index 73b7ff8..f6bb90a 100644 --- a/submariner-operator/crds/crd.yaml +++ b/submariner-operator/crds/crd.yaml @@ -720,3 +720,69 @@ status: plural: "" conditions: [] storedVersions: [] +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.3.0 + creationTimestamp: null + name: brokers.submariner.io +spec: + group: submariner.io + names: + kind: Broker + listKind: BrokerList + plural: brokers + singular: broker + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + description: Broker is the Schema for the brokers API + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: BrokerSpec defines the desired state of Broker + properties: + components: + items: + type: string + type: array + defaultCustomDomains: + items: + type: string + type: array + defaultGlobalnetClusterSize: + type: integer + globalnetCIDRRange: + type: string + globalnetEnabled: + type: boolean + type: object + status: + description: BrokerStatus defines the observed state of Broker + type: object + type: object + served: true + storage: true + subresources: + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] \ No newline at end of file