diff --git a/submariner-operator/crds/crd.yaml b/submariner-operator/crds/crd.yaml index f6bb90a..4630272 100644 --- a/submariner-operator/crds/crd.yaml +++ b/submariner-operator/crds/crd.yaml @@ -723,6 +723,95 @@ status: --- apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.3.0 + creationTimestamp: null + name: servicediscoveries.submariner.io +spec: + group: submariner.io + names: + kind: ServiceDiscovery + listKind: ServiceDiscoveryList + plural: servicediscoveries + singular: servicediscovery + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + description: ServiceDiscovery is the Schema for the servicediscoveries 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: ServiceDiscoverySpec defines the desired state of ServiceDiscovery + properties: + brokerK8sApiServer: + type: string + brokerK8sApiServerToken: + type: string + brokerK8sCA: + type: string + brokerK8sRemoteNamespace: + type: string + clusterID: + type: string + customDomains: + items: + type: string + type: array + x-kubernetes-list-type: set + debug: + type: boolean + globalnetEnabled: + type: boolean + imageOverrides: + additionalProperties: + type: string + type: object + namespace: + type: string + repository: + type: string + version: + type: string + required: + - brokerK8sApiServer + - brokerK8sApiServerToken + - brokerK8sCA + - brokerK8sRemoteNamespace + - clusterID + - debug + - namespace + type: object + status: + description: ServiceDiscoveryStatus defines the observed state of ServiceDiscovery + type: object + type: object + served: true + storage: true + subresources: + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: [] + storedVersions: [] +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition metadata: annotations: controller-gen.kubebuilder.io/version: v0.3.0