-
Notifications
You must be signed in to change notification settings - Fork 597
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
operator [R] sn-operator (0.2.0 0.2.0-rc 0.2.0-rc2 0.2.1-rc 0.2.1-rc3…
… 0.2.1-test)
- Loading branch information
1 parent
533e755
commit ed70e6c
Showing
57 changed files
with
163,234 additions
and
11,857 deletions.
There are no files selected for viewing
9,314 changes: 9,314 additions & 0 deletions
9,314
operators/sn-operator/0.2.0-rc/manifests/bookkeeper.streamnative.io_bookkeeperclusters.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
350 changes: 350 additions & 0 deletions
350
operators/sn-operator/0.2.0-rc/manifests/k8s.streamnative.io_apikeys.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
140 changes: 140 additions & 0 deletions
140
operators/sn-operator/0.2.0-rc/manifests/k8s.streamnative.io_connectorcatalogs.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
cert-manager.io/inject-ca-from: sn-operator-system/sn-operator-serving-cert | ||
controller-gen.kubebuilder.io/version: v0.10.0 | ||
creationTimestamp: null | ||
name: connectorcatalogs.k8s.streamnative.io | ||
spec: | ||
conversion: | ||
strategy: Webhook | ||
webhook: | ||
clientConfig: | ||
service: | ||
name: sn-operator-webhook-service | ||
namespace: sn-operator-system | ||
path: /convert | ||
conversionReviewVersions: | ||
- v1 | ||
group: k8s.streamnative.io | ||
names: | ||
kind: ConnectorCatalog | ||
listKind: ConnectorCatalogList | ||
plural: connectorcatalogs | ||
singular: connectorcatalog | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: ConnectorCatalog is the Schema for the connectorcatalogs 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: ConnectorCatalogSpec defines the desired state of ConnectorCatalog | ||
properties: | ||
connectorDefinitions: | ||
items: | ||
properties: | ||
defaultSchemaType: | ||
type: string | ||
defaultSerdeClassName: | ||
type: string | ||
description: | ||
type: string | ||
id: | ||
type: string | ||
imageRegistry: | ||
type: string | ||
imageRepository: | ||
type: string | ||
imageTag: | ||
type: string | ||
jarFullName: | ||
type: string | ||
name: | ||
type: string | ||
sinkClass: | ||
type: string | ||
sinkConfigClass: | ||
type: string | ||
sinkConfigFieldDefinitions: | ||
items: | ||
properties: | ||
attributes: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
fieldName: | ||
type: string | ||
typeName: | ||
type: string | ||
required: | ||
- fieldName | ||
- typeName | ||
type: object | ||
type: array | ||
sinkTypeClassName: | ||
type: string | ||
sourceClass: | ||
type: string | ||
sourceConfigClass: | ||
type: string | ||
sourceConfigFieldDefinitions: | ||
items: | ||
properties: | ||
attributes: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
fieldName: | ||
type: string | ||
typeName: | ||
type: string | ||
required: | ||
- fieldName | ||
- typeName | ||
type: object | ||
type: array | ||
sourceTypeClassName: | ||
type: string | ||
typeClassName: | ||
type: string | ||
version: | ||
type: string | ||
required: | ||
- id | ||
type: object | ||
type: array | ||
x-kubernetes-list-map-keys: | ||
- id | ||
x-kubernetes-list-type: map | ||
required: | ||
- connectorDefinitions | ||
type: object | ||
status: | ||
description: ConnectorCatalogStatus defines the observed state of ConnectorCatalog | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
Oops, something went wrong.