summaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/kafka-config
diff options
context:
space:
mode:
authorDileep Ranganathan <dileep.ranganathan@intel.com>2019-01-25 02:44:36 -0800
committerDileep Ranganathan <dileep.ranganathan@intel.com>2019-01-25 02:49:50 -0800
commitc942e55ceea4ce28e84168bb672a83572d0a6313 (patch)
tree8ef8e93a9d4bbd70c4076338ca5ce2be98990268 /vnfs/DAaaS/kafka-config
parent1b97e2665be03fc518eb11de0863c42b2280149e (diff)
Helm charts for Distributed Edge Analytics.
Initial Helm charts for CollectD, Prometheus Operator, Kafka Strimzi operator, Rook Ceph Operator. Change-Id: I7323029bd0bf1e4b39aac329fc567f705a59bc0c Issue-ID: ONAPARC-366 Signed-off-by: Dileep Ranganathan <dileep.ranganathan@intel.com>
Diffstat (limited to 'vnfs/DAaaS/kafka-config')
-rw-r--r--vnfs/DAaaS/kafka-config/.helmignore22
-rw-r--r--vnfs/DAaaS/kafka-config/Chart.yaml5
-rw-r--r--vnfs/DAaaS/kafka-config/templates/topic.yaml11
-rw-r--r--vnfs/DAaaS/kafka-config/values.yaml10
4 files changed, 48 insertions, 0 deletions
diff --git a/vnfs/DAaaS/kafka-config/.helmignore b/vnfs/DAaaS/kafka-config/.helmignore
new file mode 100644
index 00000000..50af0317
--- /dev/null
+++ b/vnfs/DAaaS/kafka-config/.helmignore
@@ -0,0 +1,22 @@
+# 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-config/Chart.yaml b/vnfs/DAaaS/kafka-config/Chart.yaml
new file mode 100644
index 00000000..dd6f2b4e
--- /dev/null
+++ b/vnfs/DAaaS/kafka-config/Chart.yaml
@@ -0,0 +1,5 @@
+apiVersion: v1
+appVersion: "1.0"
+description: A Helm chart for Kubernetes
+name: kafka-config
+version: 0.1.0
diff --git a/vnfs/DAaaS/kafka-config/templates/topic.yaml b/vnfs/DAaaS/kafka-config/templates/topic.yaml
new file mode 100644
index 00000000..780ed32f
--- /dev/null
+++ b/vnfs/DAaaS/kafka-config/templates/topic.yaml
@@ -0,0 +1,11 @@
+apiVersion: kafka.strimzi.io/v1alpha1
+kind: KafkaTopic
+metadata:
+ name: {{ .Values.topic.name }}
+ labels:
+ strimzi.io/cluster: {{ .Values.topic.cluster }}
+ annotations:
+ "helm.sh/hook": "post-install"
+spec:
+ partitions: {{ .Values.topic.partitions }}
+ replicas: {{ .Values.topic.replicas }}
diff --git a/vnfs/DAaaS/kafka-config/values.yaml b/vnfs/DAaaS/kafka-config/values.yaml
new file mode 100644
index 00000000..e877085c
--- /dev/null
+++ b/vnfs/DAaaS/kafka-config/values.yaml
@@ -0,0 +1,10 @@
+# Default values for kafka.
+# This is a YAML-formatted file.
+# Declare variables to be passed into your templates.
+
+namespace: kafka
+topic:
+ name: orders
+ cluster: my-cluster
+ partitions: 10
+ replicas: 2 \ No newline at end of file