-
Notifications
You must be signed in to change notification settings - Fork 600
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Strimzi 0.44.0 release to Operator Hub
Signed-off-by: Jakub Scholz <[email protected]>
- Loading branch information
Showing
17 changed files
with
20,915 additions
and
0 deletions.
There are no files selected for viewing
1,531 changes: 1,531 additions & 0 deletions
1,531
operators/strimzi-kafka-operator/0.44.0/manifests/kafkabridges.kafka.strimzi.io.crd.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
171 changes: 171 additions & 0 deletions
171
operators/strimzi-kafka-operator/0.44.0/manifests/kafkaconnectors.kafka.strimzi.io.crd.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,171 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: kafkaconnectors.kafka.strimzi.io | ||
labels: | ||
app: strimzi | ||
strimzi.io/crd-install: "true" | ||
spec: | ||
group: kafka.strimzi.io | ||
names: | ||
kind: KafkaConnector | ||
listKind: KafkaConnectorList | ||
singular: kafkaconnector | ||
plural: kafkaconnectors | ||
shortNames: | ||
- kctr | ||
categories: | ||
- strimzi | ||
scope: Namespaced | ||
conversion: | ||
strategy: None | ||
versions: | ||
- name: v1beta2 | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
scale: | ||
specReplicasPath: .spec.tasksMax | ||
statusReplicasPath: .status.tasksMax | ||
additionalPrinterColumns: | ||
- name: Cluster | ||
description: The name of the Kafka Connect cluster this connector belongs to | ||
jsonPath: .metadata.labels.strimzi\.io/cluster | ||
type: string | ||
- name: Connector class | ||
description: The class used by this connector | ||
jsonPath: .spec.class | ||
type: string | ||
- name: Max Tasks | ||
description: Maximum number of tasks | ||
jsonPath: .spec.tasksMax | ||
type: integer | ||
- name: Ready | ||
description: The state of the custom resource | ||
jsonPath: ".status.conditions[?(@.type==\"Ready\")].status" | ||
type: string | ||
schema: | ||
openAPIV3Schema: | ||
type: object | ||
properties: | ||
apiVersion: | ||
type: string | ||
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" | ||
kind: | ||
type: string | ||
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" | ||
metadata: | ||
type: object | ||
spec: | ||
type: object | ||
properties: | ||
class: | ||
type: string | ||
description: The Class for the Kafka Connector. | ||
tasksMax: | ||
type: integer | ||
minimum: 1 | ||
description: The maximum number of tasks for the Kafka Connector. | ||
autoRestart: | ||
type: object | ||
properties: | ||
enabled: | ||
type: boolean | ||
description: Whether automatic restart for failed connectors and tasks should be enabled or disabled. | ||
maxRestarts: | ||
type: integer | ||
description: "The maximum number of connector restarts that the operator will try. If the connector remains in a failed state after reaching this limit, it must be restarted manually by the user. Defaults to an unlimited number of restarts." | ||
description: Automatic restart of connector and tasks configuration. | ||
config: | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
description: "The Kafka Connector configuration. The following properties cannot be set: name, connector.class, tasks.max." | ||
pause: | ||
type: boolean | ||
description: Whether the connector should be paused. Defaults to false. | ||
state: | ||
type: string | ||
enum: | ||
- paused | ||
- stopped | ||
- running | ||
description: The state the connector should be in. Defaults to running. | ||
listOffsets: | ||
type: object | ||
properties: | ||
toConfigMap: | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
description: Reference to the ConfigMap where the list of offsets will be written to. | ||
required: | ||
- toConfigMap | ||
description: Configuration for listing offsets. | ||
alterOffsets: | ||
type: object | ||
properties: | ||
fromConfigMap: | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
description: Reference to the ConfigMap where the new offsets are stored. | ||
required: | ||
- fromConfigMap | ||
description: Configuration for altering offsets. | ||
description: The specification of the Kafka Connector. | ||
status: | ||
type: object | ||
properties: | ||
conditions: | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
type: | ||
type: string | ||
description: "The unique identifier of a condition, used to distinguish between other conditions in the resource." | ||
status: | ||
type: string | ||
description: "The status of the condition, either True, False or Unknown." | ||
lastTransitionTime: | ||
type: string | ||
description: "Last time the condition of a type changed from one status to another. The required format is 'yyyy-MM-ddTHH:mm:ssZ', in the UTC time zone." | ||
reason: | ||
type: string | ||
description: The reason for the condition's last transition (a single word in CamelCase). | ||
message: | ||
type: string | ||
description: Human-readable message indicating details about the condition's last transition. | ||
description: List of status conditions. | ||
observedGeneration: | ||
type: integer | ||
description: The generation of the CRD that was last reconciled by the operator. | ||
autoRestart: | ||
type: object | ||
properties: | ||
count: | ||
type: integer | ||
description: The number of times the connector or task is restarted. | ||
connectorName: | ||
type: string | ||
description: The name of the connector being restarted. | ||
lastRestartTimestamp: | ||
type: string | ||
description: The last time the automatic restart was attempted. The required format is 'yyyy-MM-ddTHH:mm:ssZ' in the UTC time zone. | ||
description: The auto restart status. | ||
connectorStatus: | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
description: "The connector status, as reported by the Kafka Connect REST API." | ||
tasksMax: | ||
type: integer | ||
description: The maximum number of tasks for the Kafka Connector. | ||
topics: | ||
type: array | ||
items: | ||
type: string | ||
description: The list of topics used by the Kafka Connector. | ||
description: The status of the Kafka Connector. |
Oops, something went wrong.