Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add emqx/emqx-operator #64

Merged
merged 1 commit into from
Nov 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,10 @@ Files: crd-catalog/emissary-ingress/emissary/*
Copyright: The emissary-ingress/emissary Authors
License: MIT

Files: crd-catalog/emqx/emqx-operator/*
Copyright: The emqx/emqx-operator Authors
License: Apache-2.0

Files: crd-catalog/external-secrets/external-secrets/*
Copyright: The external-secrets/external-secrets Authors
License: Apache-2.0
Expand Down
11 changes: 11 additions & 0 deletions code-generator/src/catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -763,6 +763,17 @@ pub const CRD_V1_SOURCES: &'static [UpstreamSource] = &[
"https://github.com/emissary-ingress/emissary/blob/master/pkg/api/getambassador.io/crds.yaml",
],
},
UpstreamSource {
project_name: "emqx/emqx-operator",
license: APACHE_V2,
urls: &[
"https://github.com/emqx/emqx-operator/blob/main/config/crd/bases/apps.emqx.io_emqxbrokers.yaml",
"https://github.com/emqx/emqx-operator/blob/main/config/crd/bases/apps.emqx.io_emqxenterprises.yaml",
"https://github.com/emqx/emqx-operator/blob/main/config/crd/bases/apps.emqx.io_emqxes.yaml",
"https://github.com/emqx/emqx-operator/blob/main/config/crd/bases/apps.emqx.io_emqxplugins.yaml",
"https://github.com/emqx/emqx-operator/blob/main/config/crd/bases/apps.emqx.io_rebalances.yaml",
],
},
UpstreamSource {
project_name: "external-secrets/external-secrets",
license: APACHE_V2,
Expand Down
3,009 changes: 3,009 additions & 0 deletions crd-catalog/emqx/emqx-operator/apps.emqx.io/v1beta3/emqxbrokers.yaml

Large diffs are not rendered by default.

3,022 changes: 3,022 additions & 0 deletions crd-catalog/emqx/emqx-operator/apps.emqx.io/v1beta3/emqxenterprises.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.9.2
name: emqxplugins.apps.emqx.io
spec:
group: apps.emqx.io
names:
kind: EmqxPlugin
listKind: EmqxPluginList
plural: emqxplugins
singular: emqxplugin
scope: Namespaced
versions:
- deprecated: true
name: v1beta3
schema:
openAPIV3Schema:
properties:
apiVersion:
type: string
kind:
type: string
metadata:
type: object
spec:
properties:
config:
additionalProperties:
type: string
type: object
pluginName:
type: string
selector:
additionalProperties:
type: string
type: object
type: object
status:
properties:
phase:
type: string
type: object
type: object
served: true
storage: false
subresources:
status: {}
Loading