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

Fix early load exit for unpacked appregistry format #72

Merged
Merged
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
2,957 changes: 2,957 additions & 0 deletions manifests/strimzi-kafka-operator/Kafka-v1beta1.crd.yaml

Large diffs are not rendered by default.

500 changes: 500 additions & 0 deletions manifests/strimzi-kafka-operator/KafkaBridge-v1alpha1.crd.yaml

Large diffs are not rendered by default.

791 changes: 791 additions & 0 deletions manifests/strimzi-kafka-operator/KafkaConnect-v1beta1.crd.yaml

Large diffs are not rendered by default.

793 changes: 793 additions & 0 deletions manifests/strimzi-kafka-operator/KafkaConnectS2I-v1beta1.crd.yaml

Large diffs are not rendered by default.

755 changes: 755 additions & 0 deletions manifests/strimzi-kafka-operator/KafkaMirrorMaker-v1beta1.crd.yaml

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions manifests/strimzi-kafka-operator/KafkaTopic-v1beta1.crd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
creationTimestamp: null
labels:
app: strimzi
name: kafkatopics.kafka.strimzi.io
spec:
additionalPrinterColumns:
- JSONPath: .spec.partitions
description: The desired number of partitions in the topic
name: Partitions
type: integer
- JSONPath: .spec.replicas
description: The desired number of replicas of each partition
name: Replication factor
type: integer
group: kafka.strimzi.io
names:
kind: KafkaTopic
listKind: KafkaTopicList
plural: kafkatopics
shortNames:
- kt
singular: kafkatopic
scope: Namespaced
validation:
openAPIV3Schema:
properties:
spec:
properties:
config:
type: object
partitions:
minimum: 1
type: integer
replicas:
maximum: 32767
minimum: 1
type: integer
topicName:
type: string
required:
- partitions
- replicas
type: object
version: v1beta1
versions:
- name: v1beta1
served: true
storage: true
- name: v1alpha1
served: true
storage: false
status:
acceptedNames:
kind: ""
plural: ""
conditions: null
storedVersions: null
116 changes: 116 additions & 0 deletions manifests/strimzi-kafka-operator/KafkaUser-v1beta1.crd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
creationTimestamp: null
labels:
app: strimzi
name: kafkausers.kafka.strimzi.io
spec:
additionalPrinterColumns:
- JSONPath: .spec.authentication.type
description: How the user is authenticated
name: Authentication
type: string
- JSONPath: .spec.authorization.type
description: How the user is authorised
name: Authorization
type: string
group: kafka.strimzi.io
names:
kind: KafkaUser
listKind: KafkaUserList
plural: kafkausers
shortNames:
- ku
singular: kafkauser
scope: Namespaced
validation:
openAPIV3Schema:
properties:
spec:
properties:
authentication:
properties:
type:
enum:
- tls
- scram-sha-512
type: string
required:
- type
type: object
authorization:
properties:
acls:
items:
properties:
host:
type: string
operation:
enum:
- Read
- Write
- Create
- Delete
- Alter
- Describe
- ClusterAction
- AlterConfigs
- DescribeConfigs
- IdempotentWrite
- All
type: string
resource:
properties:
name:
type: string
patternType:
enum:
- literal
- prefix
type: string
type:
enum:
- topic
- group
- cluster
- transactionalId
type: string
required:
- type
type: object
type:
enum:
- allow
- deny
type: string
required:
- operation
- resource
type: object
type: array
type:
enum:
- simple
type: string
required:
- acls
- type
type: object
required:
- authentication
type: object
version: v1beta1
versions:
- name: v1beta1
served: true
storage: true
- name: v1alpha1
served: true
storage: false
status:
acceptedNames:
kind: ""
plural: ""
conditions: null
storedVersions: null
Loading