blob: 69bf8efa0d274cebc83061f58ea17025f1f9cd78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: kafkatopics.kafka.strimzi.io
labels:
app: '{{ template "strimzi.name" . }}'
chart: '{{ template "strimzi.chart" . }}'
component: kafkatopics.kafka.strimzi.io-crd
release: '{{ .Release.Name }}'
heritage: '{{ .Release.Service }}'
annotations:
"helm.sh/hook": crd-install
"helm.sh/hook-delete-policy": "before-hook-creation"
spec:
group: kafka.strimzi.io
version: v1alpha1
scope: Namespaced
names:
kind: KafkaTopic
listKind: KafkaTopicList
singular: kafkatopic
plural: kafkatopics
shortNames:
- kt
validation:
openAPIV3Schema:
properties:
spec:
type: object
properties:
partitions:
type: integer
minimum: 1
replicas:
type: integer
minimum: 1
maximum: 32767
config:
type: object
topicName:
type: string
required:
- partitions
- replicas
|