summaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/kafka
diff options
context:
space:
mode:
authorSrivahni <srivahni.chivukula@intel.com>2019-03-08 10:29:07 -0800
committerSrivahni <srivahni.chivukula@intel.com>2019-03-08 11:34:05 -0800
commit6d7c9539bb348af48f6c3d109c46f6f22d927be0 (patch)
treee352fb0361dd7b2de9e8d115a92bdf835d3c420e /vnfs/DAaaS/kafka
parentafddb9a1dd8cc82a02c09ac790bf19afbe01ebba (diff)
Remove redundant directories
Change-Id: I0b39b22d0cf4dba0c1bee6b142b95b78e697b569 Issue-ID: ONAPARC-393 Signed-off-by: Srivahni Chivukula <srivahni.chivukula@intel.com>
Diffstat (limited to 'vnfs/DAaaS/kafka')
-rw-r--r--vnfs/DAaaS/kafka/.helmignore22
-rw-r--r--vnfs/DAaaS/kafka/Chart.yaml5
-rw-r--r--vnfs/DAaaS/kafka/templates/kafka-cluster.yaml28
-rw-r--r--vnfs/DAaaS/kafka/templates/kafka-test-client.yaml17
-rw-r--r--vnfs/DAaaS/kafka/templates/strimzi-cluster-operator-0.9.0.yaml3315
-rw-r--r--vnfs/DAaaS/kafka/values.yaml23
6 files changed, 0 insertions, 3410 deletions
diff --git a/vnfs/DAaaS/kafka/.helmignore b/vnfs/DAaaS/kafka/.helmignore
deleted file mode 100644
index 50af0317..00000000
--- a/vnfs/DAaaS/kafka/.helmignore
+++ /dev/null
@@ -1,22 +0,0 @@
-# Patterns to ignore when building packages.
-# This supports shell glob matching, relative path matching, and
-# negation (prefixed with !). Only one pattern per line.
-.DS_Store
-# Common VCS dirs
-.git/
-.gitignore
-.bzr/
-.bzrignore
-.hg/
-.hgignore
-.svn/
-# Common backup files
-*.swp
-*.bak
-*.tmp
-*~
-# Various IDEs
-.project
-.idea/
-*.tmproj
-.vscode/
diff --git a/vnfs/DAaaS/kafka/Chart.yaml b/vnfs/DAaaS/kafka/Chart.yaml
deleted file mode 100644
index b0558bb8..00000000
--- a/vnfs/DAaaS/kafka/Chart.yaml
+++ /dev/null
@@ -1,5 +0,0 @@
-apiVersion: v1
-appVersion: "1.0"
-description: Helm chart for kafka operator
-name: kafka
-version: 0.1.0
diff --git a/vnfs/DAaaS/kafka/templates/kafka-cluster.yaml b/vnfs/DAaaS/kafka/templates/kafka-cluster.yaml
deleted file mode 100644
index 16198c82..00000000
--- a/vnfs/DAaaS/kafka/templates/kafka-cluster.yaml
+++ /dev/null
@@ -1,28 +0,0 @@
-apiVersion: kafka.strimzi.io/v1alpha1
-kind: Kafka
-metadata:
- name: {{ .Values.cluster_name }}
-spec:
- kafka:
- replicas: 3
- listeners:
- plain: {}
- tls: {}
- config:
- offsets.topic.replication.factor: 3
- transaction.state.log.replication.factor: 3
- transaction.state.log.min.isr: 2
- storage:
- type: persistent-claim
- size: 1Gi
- deleteClaim: false
- zookeeper:
- replicas: 3
- storage:
- type: persistent-claim
- size: 1Gi
- deleteClaim: false
- entityOperator:
- topicOperator: {}
- userOperator: {}
-
diff --git a/vnfs/DAaaS/kafka/templates/kafka-test-client.yaml b/vnfs/DAaaS/kafka/templates/kafka-test-client.yaml
deleted file mode 100644
index 00553e5a..00000000
--- a/vnfs/DAaaS/kafka/templates/kafka-test-client.yaml
+++ /dev/null
@@ -1,17 +0,0 @@
-apiVersion: v1
-kind: Pod
-metadata:
- name: kafka-test-client
- namespace: {{ .Values.namespace}}
-spec:
- containers:
- - command:
- - sh
- - -c
- - exec tail -f /dev/null
- image: confluentinc/cp-kafka:4.1.2-2
- imagePullPolicy: IfNotPresent
- name: kafka
- resources: {}
- terminationMessagePath: /dev/termination-log
- terminationMessagePolicy: File \ No newline at end of file
diff --git a/vnfs/DAaaS/kafka/templates/strimzi-cluster-operator-0.9.0.yaml b/vnfs/DAaaS/kafka/templates/strimzi-cluster-operator-0.9.0.yaml
deleted file mode 100644
index 0419b59b..00000000
--- a/vnfs/DAaaS/kafka/templates/strimzi-cluster-operator-0.9.0.yaml
+++ /dev/null
@@ -1,3315 +0,0 @@
-apiVersion: apiextensions.k8s.io/v1beta1
-kind: CustomResourceDefinition
-metadata:
- name: kafkas.kafka.strimzi.io
- labels:
- app: strimzi
- annotations:
- "helm.sh/hook": "crd-install"
-spec:
- group: kafka.strimzi.io
- version: v1alpha1
- scope: Namespaced
- names:
- kind: Kafka
- listKind: KafkaList
- singular: kafka
- plural: kafkas
- shortNames:
- - k
- validation:
- openAPIV3Schema:
- properties:
- spec:
- type: object
- properties:
- kafka:
- type: object
- properties:
- replicas:
- type: integer
- minimum: 1
- image:
- type: string
- storage:
- type: object
- properties:
- class:
- type: string
- deleteClaim:
- type: boolean
- selector:
- type: object
- size:
- type: string
- type:
- type: string
- enum:
- - ephemeral
- - persistent-claim
- required:
- - type
- listeners:
- type: object
- properties:
- plain:
- type: object
- properties:
- authentication:
- type: object
- properties:
- type:
- type: string
- enum:
- - tls
- - scram-sha-512
- required:
- - type
- tls:
- type: object
- properties:
- authentication:
- type: object
- properties:
- type:
- type: string
- enum:
- - tls
- - scram-sha-512
- required:
- - type
- external:
- type: object
- properties:
- authentication:
- type: object
- properties:
- type:
- type: string
- enum:
- - tls
- - scram-sha-512
- required:
- - type
- tls:
- type: boolean
- type:
- type: string
- enum:
- - route
- - loadbalancer
- - nodeport
- required:
- - type
- authorization:
- type: object
- properties:
- superUsers:
- type: array
- items:
- type: string
- type:
- type: string
- enum:
- - simple
- required:
- - type
- config:
- type: object
- rack:
- type: object
- properties:
- topologyKey:
- type: string
- example: failure-domain.beta.kubernetes.io/zone
- required:
- - topologyKey
- brokerRackInitImage:
- type: string
- affinity:
- type: object
- properties:
- nodeAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- preference:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: object
- properties:
- nodeSelectorTerms:
- type: array
- items:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- podAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- podAffinityTerm:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- podAntiAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- podAffinityTerm:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- tolerations:
- type: array
- items:
- type: object
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- type: integer
- value:
- type: string
- livenessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- readinessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- jvmOptions:
- type: object
- properties:
- -XX:
- type: object
- -Xms:
- type: string
- pattern: '[0-9]+[mMgG]?'
- -Xmx:
- type: string
- pattern: '[0-9]+[mMgG]?'
- resources:
- type: object
- properties:
- limits:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- requests:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- metrics:
- type: object
- logging:
- type: object
- properties:
- loggers:
- type: object
- name:
- type: string
- type:
- type: string
- enum:
- - inline
- - external
- required:
- - type
- tlsSidecar:
- type: object
- properties:
- image:
- type: string
- livenessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- logLevel:
- type: string
- enum:
- - emerg
- - alert
- - crit
- - err
- - warning
- - notice
- - info
- - debug
- readinessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- resources:
- type: object
- properties:
- limits:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- requests:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- template:
- type: object
- properties:
- statefulset:
- type: object
- properties: {}
- pod:
- type: object
- properties: {}
- bootstrapService:
- type: object
- properties: {}
- brokersService:
- type: object
- properties: {}
- externalBootstrapRoute:
- type: object
- properties: {}
- externalBootstrapService:
- type: object
- properties: {}
- perPodRoute:
- type: object
- properties: {}
- perPodService:
- type: object
- properties: {}
- required:
- - replicas
- - storage
- - listeners
- zookeeper:
- type: object
- properties:
- replicas:
- type: integer
- minimum: 1
- image:
- type: string
- storage:
- type: object
- properties:
- class:
- type: string
- deleteClaim:
- type: boolean
- selector:
- type: object
- size:
- type: string
- type:
- type: string
- enum:
- - ephemeral
- - persistent-claim
- required:
- - type
- config:
- type: object
- affinity:
- type: object
- properties:
- nodeAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- preference:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: object
- properties:
- nodeSelectorTerms:
- type: array
- items:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- podAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- podAffinityTerm:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- podAntiAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- podAffinityTerm:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- tolerations:
- type: array
- items:
- type: object
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- type: integer
- value:
- type: string
- livenessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- readinessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- jvmOptions:
- type: object
- properties:
- -XX:
- type: object
- -Xms:
- type: string
- pattern: '[0-9]+[mMgG]?'
- -Xmx:
- type: string
- pattern: '[0-9]+[mMgG]?'
- resources:
- type: object
- properties:
- limits:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- requests:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- metrics:
- type: object
- logging:
- type: object
- properties:
- loggers:
- type: object
- name:
- type: string
- type:
- type: string
- enum:
- - inline
- - external
- required:
- - type
- tlsSidecar:
- type: object
- properties:
- image:
- type: string
- livenessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- logLevel:
- type: string
- enum:
- - emerg
- - alert
- - crit
- - err
- - warning
- - notice
- - info
- - debug
- readinessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- resources:
- type: object
- properties:
- limits:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- requests:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- template:
- type: object
- properties:
- statefulset:
- type: object
- properties: {}
- pod:
- type: object
- properties: {}
- clientService:
- type: object
- properties: {}
- nodesService:
- type: object
- properties: {}
- required:
- - replicas
- - storage
- topicOperator:
- type: object
- properties:
- watchedNamespace:
- type: string
- image:
- type: string
- reconciliationIntervalSeconds:
- type: integer
- minimum: 0
- zookeeperSessionTimeoutSeconds:
- type: integer
- minimum: 0
- affinity:
- type: object
- properties:
- nodeAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- preference:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: object
- properties:
- nodeSelectorTerms:
- type: array
- items:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- podAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- podAffinityTerm:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- podAntiAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- podAffinityTerm:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- resources:
- type: object
- properties:
- limits:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- requests:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- topicMetadataMaxAttempts:
- type: integer
- minimum: 0
- tlsSidecar:
- type: object
- properties:
- image:
- type: string
- livenessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- logLevel:
- type: string
- enum:
- - emerg
- - alert
- - crit
- - err
- - warning
- - notice
- - info
- - debug
- readinessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- resources:
- type: object
- properties:
- limits:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- requests:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- logging:
- type: object
- properties:
- loggers:
- type: object
- name:
- type: string
- type:
- type: string
- enum:
- - inline
- - external
- required:
- - type
- entityOperator:
- type: object
- properties:
- topicOperator:
- type: object
- properties:
- watchedNamespace:
- type: string
- image:
- type: string
- reconciliationIntervalSeconds:
- type: integer
- minimum: 0
- zookeeperSessionTimeoutSeconds:
- type: integer
- minimum: 0
- resources:
- type: object
- properties:
- limits:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- requests:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- topicMetadataMaxAttempts:
- type: integer
- minimum: 0
- logging:
- type: object
- properties:
- loggers:
- type: object
- name:
- type: string
- type:
- type: string
- enum:
- - inline
- - external
- required:
- - type
- userOperator:
- type: object
- properties:
- watchedNamespace:
- type: string
- image:
- type: string
- reconciliationIntervalSeconds:
- type: integer
- minimum: 0
- zookeeperSessionTimeoutSeconds:
- type: integer
- minimum: 0
- resources:
- type: object
- properties:
- limits:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- requests:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- logging:
- type: object
- properties:
- loggers:
- type: object
- name:
- type: string
- type:
- type: string
- enum:
- - inline
- - external
- required:
- - type
- affinity:
- type: object
- properties:
- nodeAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- preference:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: object
- properties:
- nodeSelectorTerms:
- type: array
- items:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- podAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- podAffinityTerm:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- podAntiAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- podAffinityTerm:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- tolerations:
- type: array
- items:
- type: object
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- type: integer
- value:
- type: string
- tlsSidecar:
- type: object
- properties:
- image:
- type: string
- livenessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- logLevel:
- type: string
- enum:
- - emerg
- - alert
- - crit
- - err
- - warning
- - notice
- - info
- - debug
- readinessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- resources:
- type: object
- properties:
- limits:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- requests:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- template:
- type: object
- properties:
- deployment:
- type: object
- properties: {}
- pod:
- type: object
- properties: {}
- clusterCa:
- type: object
- properties:
- generateCertificateAuthority:
- type: boolean
- validityDays:
- type: integer
- minimum: 1
- renewalDays:
- type: integer
- minimum: 1
- clientsCa:
- type: object
- properties:
- generateCertificateAuthority:
- type: boolean
- validityDays:
- type: integer
- minimum: 1
- renewalDays:
- type: integer
- minimum: 1
- maintenanceTimeWindows:
- type: array
- items:
- type: string
- required:
- - kafka
- - zookeeper
-
----
-apiVersion: rbac.authorization.k8s.io/v1beta1
-kind: RoleBinding
-metadata:
- name: strimzi-cluster-operator-entity-operator-delegation
- labels:
- app: strimzi
-subjects:
-- kind: ServiceAccount
- name: strimzi-cluster-operator
- namespace: {{ .Values.namespace }}
-roleRef:
- kind: ClusterRole
- name: strimzi-entity-operator
- apiGroup: rbac.authorization.k8s.io
-
----
-apiVersion: rbac.authorization.k8s.io/v1beta1
-kind: ClusterRoleBinding
-metadata:
- name: strimzi-cluster-operator
- labels:
- app: strimzi
-subjects:
-- kind: ServiceAccount
- name: strimzi-cluster-operator
- namespace: {{ .Values.namespace }}
-roleRef:
- kind: ClusterRole
- name: strimzi-cluster-operator-global
- apiGroup: rbac.authorization.k8s.io
-
----
-apiVersion: rbac.authorization.k8s.io/v1beta1
-kind: RoleBinding
-metadata:
- name: strimzi-cluster-operator-topic-operator-delegation
- labels:
- app: strimzi
-subjects:
-- kind: ServiceAccount
- name: strimzi-cluster-operator
- namespace: {{ .Values.namespace }}
-roleRef:
- kind: ClusterRole
- name: strimzi-topic-operator
- apiGroup: rbac.authorization.k8s.io
-
----
-apiVersion: apiextensions.k8s.io/v1beta1
-kind: CustomResourceDefinition
-metadata:
- name: kafkausers.kafka.strimzi.io
- labels:
- app: strimzi
- annotations:
- "helm.sh/hook": "crd-install"
-spec:
- group: kafka.strimzi.io
- version: v1alpha1
- scope: Namespaced
- names:
- kind: KafkaUser
- listKind: KafkaUserList
- singular: kafkauser
- plural: kafkausers
- shortNames:
- - ku
- validation:
- openAPIV3Schema:
- properties:
- spec:
- type: object
- properties:
- authentication:
- type: object
- properties:
- type:
- type: string
- enum:
- - tls
- - scram-sha-512
- required:
- - type
- authorization:
- type: object
- properties:
- acls:
- type: array
- items:
- type: object
- properties:
- host:
- type: string
- operation:
- type: string
- enum:
- - Read
- - Write
- - Create
- - Delete
- - Alter
- - Describe
- - ClusterAction
- - AlterConfigs
- - DescribeConfigs
- - IdempotentWrite
- - All
- resource:
- type: object
- properties:
- name:
- type: string
- patternType:
- type: string
- enum:
- - literal
- - prefix
- type:
- type: string
- enum:
- - topic
- - group
- - cluster
- - transactionalId
- required:
- - type
- type:
- type: string
- enum:
- - allow
- - deny
- required:
- - operation
- - resource
- type:
- type: string
- enum:
- - simple
- required:
- - acls
- - type
- required:
- - authentication
-
----
-apiVersion: rbac.authorization.k8s.io/v1beta1
-kind: ClusterRole
-metadata:
- name: strimzi-entity-operator
- labels:
- app: strimzi
-rules:
-- apiGroups:
- - kafka.strimzi.io
- resources:
- - kafkatopics
- verbs:
- - get
- - list
- - watch
- - create
- - patch
- - update
- - delete
-- apiGroups:
- - ""
- resources:
- - events
- verbs:
- - create
-- apiGroups:
- - kafka.strimzi.io
- resources:
- - kafkausers
- verbs:
- - get
- - list
- - watch
- - create
- - patch
- - update
- - delete
-- apiGroups:
- - ""
- resources:
- - secrets
- verbs:
- - get
- - list
- - create
- - patch
- - update
- - delete
-
----
-apiVersion: rbac.authorization.k8s.io/v1beta1
-kind: ClusterRole
-metadata:
- name: strimzi-cluster-operator-global
- labels:
- app: strimzi
-rules:
-- apiGroups:
- - rbac.authorization.k8s.io
- resources:
- - clusterrolebindings
- verbs:
- - get
- - create
- - delete
- - patch
- - update
-
----
-apiVersion: rbac.authorization.k8s.io/v1beta1
-kind: ClusterRoleBinding
-metadata:
- name: strimzi-cluster-operator-kafka-broker-delegation
- labels:
- app: strimzi
-subjects:
-- kind: ServiceAccount
- name: strimzi-cluster-operator
- namespace: {{ .Values.namespace }}
-roleRef:
- kind: ClusterRole
- name: strimzi-kafka-broker
- apiGroup: rbac.authorization.k8s.io
-
----
-apiVersion: rbac.authorization.k8s.io/v1beta1
-kind: RoleBinding
-metadata:
- name: strimzi-cluster-operator
- labels:
- app: strimzi
-subjects:
-- kind: ServiceAccount
- name: strimzi-cluster-operator
- namespace: {{ .Values.namespace }}
-roleRef:
- kind: ClusterRole
- name: strimzi-cluster-operator-namespaced
- apiGroup: rbac.authorization.k8s.io
-
----
-apiVersion: rbac.authorization.k8s.io/v1beta1
-kind: ClusterRole
-metadata:
- name: strimzi-cluster-operator-namespaced
- labels:
- app: strimzi
-rules:
-- apiGroups:
- - ""
- resources:
- - serviceaccounts
- verbs:
- - get
- - create
- - delete
- - patch
- - update
-- apiGroups:
- - rbac.authorization.k8s.io
- resources:
- - rolebindings
- verbs:
- - get
- - create
- - delete
- - patch
- - update
-- apiGroups:
- - ""
- resources:
- - configmaps
- verbs:
- - get
- - list
- - watch
- - create
- - delete
- - patch
- - update
-- apiGroups:
- - kafka.strimzi.io
- resources:
- - kafkas
- - kafkaconnects
- - kafkaconnects2is
- - kafkamirrormakers
- verbs:
- - get
- - list
- - watch
- - create
- - delete
- - patch
- - update
-- apiGroups:
- - ""
- resources:
- - pods
- verbs:
- - get
- - list
- - watch
- - delete
-- apiGroups:
- - ""
- resources:
- - services
- verbs:
- - get
- - list
- - watch
- - create
- - delete
- - patch
- - update
-- apiGroups:
- - ""
- resources:
- - endpoints
- verbs:
- - get
- - list
- - watch
-- apiGroups:
- - extensions
- resources:
- - deployments
- - deployments/scale
- - replicasets
- verbs:
- - get
- - list
- - watch
- - create
- - delete
- - patch
- - update
-- apiGroups:
- - apps
- resources:
- - deployments
- - deployments/scale
- - deployments/status
- - statefulsets
- verbs:
- - get
- - list
- - watch
- - create
- - delete
- - patch
- - update
-- apiGroups:
- - ""
- resources:
- - events
- verbs:
- - create
-- apiGroups:
- - extensions
- resources:
- - replicationcontrollers
- verbs:
- - get
- - list
- - watch
- - create
- - delete
- - patch
- - update
-- apiGroups:
- - apps.openshift.io
- resources:
- - deploymentconfigs
- - deploymentconfigs/scale
- - deploymentconfigs/status
- - deploymentconfigs/finalizers
- verbs:
- - get
- - list
- - watch
- - create
- - delete
- - patch
- - update
-- apiGroups:
- - build.openshift.io
- resources:
- - buildconfigs
- - builds
- verbs:
- - create
- - delete
- - get
- - list
- - patch
- - watch
- - update
-- apiGroups:
- - image.openshift.io
- resources:
- - imagestreams
- - imagestreams/status
- verbs:
- - create
- - delete
- - get
- - list
- - watch
- - patch
- - update
-- apiGroups:
- - ""
- resources:
- - replicationcontrollers
- verbs:
- - get
- - list
- - watch
- - create
- - delete
- - patch
- - update
-- apiGroups:
- - ""
- resources:
- - secrets
- verbs:
- - get
- - list
- - create
- - delete
- - patch
- - update
-- apiGroups:
- - extensions
- resources:
- - networkpolicies
- verbs:
- - get
- - list
- - watch
- - create
- - delete
- - patch
- - update
-- apiGroups:
- - route.openshift.io
- resources:
- - routes
- verbs:
- - get
- - list
- - create
- - delete
- - patch
- - update
-- apiGroups:
- - ""
- resources:
- - persistentvolumeclaims
- verbs:
- - get
- - list
- - create
- - delete
- - patch
- - update
-
----
-apiVersion: rbac.authorization.k8s.io/v1beta1
-kind: ClusterRole
-metadata:
- name: strimzi-topic-operator
- labels:
- app: strimzi
-rules:
-- apiGroups:
- - kafka.strimzi.io
- resources:
- - kafkatopics
- verbs:
- - get
- - list
- - watch
- - create
- - patch
- - update
- - delete
-- apiGroups:
- - ""
- resources:
- - events
- verbs:
- - create
-
----
-apiVersion: v1
-kind: ServiceAccount
-metadata:
- name: strimzi-cluster-operator
- labels:
- app: strimzi
-
----
-apiVersion: rbac.authorization.k8s.io/v1beta1
-kind: ClusterRole
-metadata:
- name: strimzi-kafka-broker
- labels:
- app: strimzi
-rules:
-- apiGroups:
- - ""
- resources:
- - nodes
- verbs:
- - get
-
----
-apiVersion: apiextensions.k8s.io/v1beta1
-kind: CustomResourceDefinition
-metadata:
- name: kafkatopics.kafka.strimzi.io
- labels:
- app: strimzi
- annotations:
- "helm.sh/hook": "crd-install"
-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
-
----
-apiVersion: extensions/v1beta1
-kind: Deployment
-metadata:
- name: strimzi-cluster-operator
- labels:
- app: strimzi
-spec:
- replicas: 1
- template:
- metadata:
- labels:
- name: strimzi-cluster-operator
- spec:
- serviceAccountName: strimzi-cluster-operator
- containers:
- - name: strimzi-cluster-operator
- image: strimzi/cluster-operator:0.9.0
- imagePullPolicy: IfNotPresent
- env:
- - name: STRIMZI_NAMESPACE
- valueFrom:
- fieldRef:
- fieldPath: metadata.namespace
- - name: STRIMZI_FULL_RECONCILIATION_INTERVAL_MS
- value: "120000"
- - name: STRIMZI_OPERATION_TIMEOUT_MS
- value: "300000"
- - name: STRIMZI_DEFAULT_ZOOKEEPER_IMAGE
- value: strimzi/zookeeper:0.9.0
- - name: STRIMZI_DEFAULT_KAFKA_IMAGE
- value: strimzi/kafka:0.9.0
- - name: STRIMZI_DEFAULT_KAFKA_CONNECT_IMAGE
- value: strimzi/kafka-connect:0.9.0
- - name: STRIMZI_DEFAULT_KAFKA_CONNECT_S2I_IMAGE
- value: strimzi/kafka-connect-s2i:0.9.0
- - name: STRIMZI_DEFAULT_KAFKA_MIRRORMAKER_IMAGE
- value: strimzi/kafka-mirror-maker:0.9.0
- - name: STRIMZI_DEFAULT_TOPIC_OPERATOR_IMAGE
- value: strimzi/topic-operator:0.9.0
- - name: STRIMZI_DEFAULT_USER_OPERATOR_IMAGE
- value: strimzi/user-operator:0.9.0
- - name: STRIMZI_DEFAULT_KAFKA_INIT_IMAGE
- value: strimzi/kafka-init:0.9.0
- - name: STRIMZI_DEFAULT_TLS_SIDECAR_ZOOKEEPER_IMAGE
- value: strimzi/zookeeper-stunnel:0.9.0
- - name: STRIMZI_DEFAULT_TLS_SIDECAR_KAFKA_IMAGE
- value: strimzi/kafka-stunnel:0.9.0
- - name: STRIMZI_DEFAULT_TLS_SIDECAR_ENTITY_OPERATOR_IMAGE
- value: strimzi/entity-operator-stunnel:0.9.0
- - name: STRIMZI_LOG_LEVEL
- value: INFO
- livenessProbe:
- httpGet:
- path: /healthy
- port: 8080
- initialDelaySeconds: 10
- periodSeconds: 30
- readinessProbe:
- httpGet:
- path: /ready
- port: 8080
- initialDelaySeconds: 10
- periodSeconds: 30
- resources:
- limits:
- cpu: 1000m
- memory: 256Mi
- requests:
- cpu: 200m
- memory: 256Mi
- strategy:
- type: Recreate
-
----
-apiVersion: apiextensions.k8s.io/v1beta1
-kind: CustomResourceDefinition
-metadata:
- name: kafkaconnects2is.kafka.strimzi.io
- labels:
- app: strimzi
- annotations:
- "helm.sh/hook": "crd-install"
-spec:
- group: kafka.strimzi.io
- version: v1alpha1
- scope: Namespaced
- names:
- kind: KafkaConnectS2I
- listKind: KafkaConnectS2IList
- singular: kafkaconnects2i
- plural: kafkaconnects2is
- shortNames:
- - kcs2i
- validation:
- openAPIV3Schema:
- properties:
- spec:
- type: object
- properties:
- replicas:
- type: integer
- image:
- type: string
- livenessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- readinessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- jvmOptions:
- type: object
- properties:
- -XX:
- type: object
- -Xms:
- type: string
- pattern: '[0-9]+[mMgG]?'
- -Xmx:
- type: string
- pattern: '[0-9]+[mMgG]?'
- affinity:
- type: object
- properties:
- nodeAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- preference:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: object
- properties:
- nodeSelectorTerms:
- type: array
- items:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- podAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- podAffinityTerm:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- podAntiAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- podAffinityTerm:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- metrics:
- type: object
- template:
- type: object
- properties:
- deployment:
- type: object
- properties: {}
- pod:
- type: object
- properties: {}
- apiService:
- type: object
- properties: {}
- authentication:
- type: object
- properties:
- certificateAndKey:
- type: object
- properties:
- certificate:
- type: string
- key:
- type: string
- secretName:
- type: string
- required:
- - certificate
- - key
- - secretName
- passwordSecret:
- type: object
- properties:
- password:
- type: string
- secretName:
- type: string
- required:
- - password
- - secretName
- type:
- type: string
- enum:
- - tls
- - scram-sha-512
- username:
- type: string
- required:
- - type
- bootstrapServers:
- type: string
- config:
- type: object
- insecureSourceRepository:
- type: boolean
- logging:
- type: object
- properties:
- loggers:
- type: object
- name:
- type: string
- type:
- type: string
- enum:
- - inline
- - external
- required:
- - type
- resources:
- type: object
- properties:
- limits:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- requests:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- tls:
- type: object
- properties:
- trustedCertificates:
- type: array
- items:
- type: object
- properties:
- certificate:
- type: string
- secretName:
- type: string
- required:
- - certificate
- - secretName
- required:
- - trustedCertificates
- tolerations:
- type: array
- items:
- type: object
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- type: integer
- value:
- type: string
- required:
- - bootstrapServers
-
----
-apiVersion: apiextensions.k8s.io/v1beta1
-kind: CustomResourceDefinition
-metadata:
- name: kafkaconnects.kafka.strimzi.io
- labels:
- app: strimzi
- annotations:
- "helm.sh/hook": "crd-install"
-spec:
- group: kafka.strimzi.io
- version: v1alpha1
- scope: Namespaced
- names:
- kind: KafkaConnect
- listKind: KafkaConnectList
- singular: kafkaconnect
- plural: kafkaconnects
- shortNames:
- - kc
- validation:
- openAPIV3Schema:
- properties:
- spec:
- type: object
- properties:
- replicas:
- type: integer
- image:
- type: string
- livenessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- readinessProbe:
- type: object
- properties:
- initialDelaySeconds:
- type: integer
- minimum: 0
- timeoutSeconds:
- type: integer
- minimum: 0
- jvmOptions:
- type: object
- properties:
- -XX:
- type: object
- -Xms:
- type: string
- pattern: '[0-9]+[mMgG]?'
- -Xmx:
- type: string
- pattern: '[0-9]+[mMgG]?'
- affinity:
- type: object
- properties:
- nodeAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- preference:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: object
- properties:
- nodeSelectorTerms:
- type: array
- items:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- podAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- podAffinityTerm:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- podAntiAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- podAffinityTerm:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- tolerations:
- type: array
- items:
- type: object
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- type: integer
- value:
- type: string
- logging:
- type: object
- properties:
- loggers:
- type: object
- name:
- type: string
- type:
- type: string
- enum:
- - inline
- - external
- required:
- - type
- metrics:
- type: object
- template:
- type: object
- properties:
- deployment:
- type: object
- properties: {}
- pod:
- type: object
- properties: {}
- apiService:
- type: object
- properties: {}
- authentication:
- type: object
- properties:
- certificateAndKey:
- type: object
- properties:
- certificate:
- type: string
- key:
- type: string
- secretName:
- type: string
- required:
- - certificate
- - key
- - secretName
- passwordSecret:
- type: object
- properties:
- password:
- type: string
- secretName:
- type: string
- required:
- - password
- - secretName
- type:
- type: string
- enum:
- - tls
- - scram-sha-512
- username:
- type: string
- required:
- - type
- bootstrapServers:
- type: string
- config:
- type: object
- resources:
- type: object
- properties:
- limits:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- requests:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- tls:
- type: object
- properties:
- trustedCertificates:
- type: array
- items:
- type: object
- properties:
- certificate:
- type: string
- secretName:
- type: string
- required:
- - certificate
- - secretName
- required:
- - trustedCertificates
- required:
- - bootstrapServers
-
----
-apiVersion: apiextensions.k8s.io/v1beta1
-kind: CustomResourceDefinition
-metadata:
- name: kafkamirrormakers.kafka.strimzi.io
- labels:
- app: strimzi
- annotations:
- "helm.sh/hook": "crd-install"
-spec:
- group: kafka.strimzi.io
- version: v1alpha1
- scope: Namespaced
- names:
- kind: KafkaMirrorMaker
- listKind: KafkaMirrorMakerList
- singular: kafkamirrormaker
- plural: kafkamirrormakers
- shortNames:
- - kmm
- validation:
- openAPIV3Schema:
- properties:
- spec:
- type: object
- properties:
- replicas:
- type: integer
- minimum: 1
- image:
- type: string
- whitelist:
- type: string
- consumer:
- type: object
- properties:
- numStreams:
- type: integer
- minimum: 1
- groupId:
- type: string
- bootstrapServers:
- type: string
- authentication:
- type: object
- properties:
- certificateAndKey:
- type: object
- properties:
- certificate:
- type: string
- key:
- type: string
- secretName:
- type: string
- required:
- - certificate
- - key
- - secretName
- passwordSecret:
- type: object
- properties:
- password:
- type: string
- secretName:
- type: string
- required:
- - password
- - secretName
- type:
- type: string
- enum:
- - tls
- - scram-sha-512
- username:
- type: string
- required:
- - type
- config:
- type: object
- tls:
- type: object
- properties:
- trustedCertificates:
- type: array
- items:
- type: object
- properties:
- certificate:
- type: string
- secretName:
- type: string
- required:
- - certificate
- - secretName
- required:
- - trustedCertificates
- required:
- - groupId
- - bootstrapServers
- producer:
- type: object
- properties:
- bootstrapServers:
- type: string
- authentication:
- type: object
- properties:
- certificateAndKey:
- type: object
- properties:
- certificate:
- type: string
- key:
- type: string
- secretName:
- type: string
- required:
- - certificate
- - key
- - secretName
- passwordSecret:
- type: object
- properties:
- password:
- type: string
- secretName:
- type: string
- required:
- - password
- - secretName
- type:
- type: string
- enum:
- - tls
- - scram-sha-512
- username:
- type: string
- required:
- - type
- config:
- type: object
- tls:
- type: object
- properties:
- trustedCertificates:
- type: array
- items:
- type: object
- properties:
- certificate:
- type: string
- secretName:
- type: string
- required:
- - certificate
- - secretName
- required:
- - trustedCertificates
- required:
- - bootstrapServers
- resources:
- type: object
- properties:
- limits:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- requests:
- type: object
- properties:
- cpu:
- type: string
- pattern: '[0-9]+m?$'
- memory:
- type: string
- pattern: '[0-9]+([kKmMgGtTpPeE]i?)?$'
- affinity:
- type: object
- properties:
- nodeAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- preference:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: object
- properties:
- nodeSelectorTerms:
- type: array
- items:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- podAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- podAffinityTerm:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- podAntiAffinity:
- type: object
- properties:
- preferredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- podAffinityTerm:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- weight:
- type: integer
- requiredDuringSchedulingIgnoredDuringExecution:
- type: array
- items:
- type: object
- properties:
- labelSelector:
- type: object
- properties:
- matchExpressions:
- type: array
- items:
- type: object
- properties:
- key:
- type: string
- operator:
- type: string
- values:
- type: array
- items:
- type: string
- matchLabels:
- type: object
- namespaces:
- type: array
- items:
- type: string
- topologyKey:
- type: string
- tolerations:
- type: array
- items:
- type: object
- properties:
- effect:
- type: string
- key:
- type: string
- operator:
- type: string
- tolerationSeconds:
- type: integer
- value:
- type: string
- jvmOptions:
- type: object
- properties:
- -XX:
- type: object
- -Xms:
- type: string
- pattern: '[0-9]+[mMgG]?'
- -Xmx:
- type: string
- pattern: '[0-9]+[mMgG]?'
- logging:
- type: object
- properties:
- loggers:
- type: object
- name:
- type: string
- type:
- type: string
- enum:
- - inline
- - external
- required:
- - type
- metrics:
- type: object
- template:
- type: object
- properties:
- deployment:
- type: object
- properties: {}
- pod:
- type: object
- properties: {}
- required:
- - replicas
- - whitelist
- - consumer
- - producer
-
----
diff --git a/vnfs/DAaaS/kafka/values.yaml b/vnfs/DAaaS/kafka/values.yaml
deleted file mode 100644
index 80954fc0..00000000
--- a/vnfs/DAaaS/kafka/values.yaml
+++ /dev/null
@@ -1,23 +0,0 @@
-# Default values for kafka.
-# This is a YAML-formatted file.
-# Declare variables to be passed into your templates.
-
-namespace: kafka
-cluster_name: my-cluster
-resources: {}
- # We usually recommend not to specify default resources and to leave this as a conscious
- # choice for the user. This also increases chances charts run on environments with little
- # resources, such as Minikube. If you do want to specify resources, uncomment the following
- # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
- # limits:
- # cpu: 100m
- # memory: 128Mi
- # requests:
- # cpu: 100m
- # memory: 128Mi
-
-nodeSelector: {}
-
-tolerations: []
-
-affinity: {}