aboutsummaryrefslogtreecommitdiffstats
path: root/kud/tests/vnfs/comp-app/collection/app3/helm/m3db/templates/m3dbcluster.yaml
diff options
context:
space:
mode:
authorRitu Sood <Ritu.Sood@intel.com>2020-06-26 19:29:26 +0000
committerGerrit Code Review <gerrit@onap.org>2020-06-26 19:29:26 +0000
commit45270cad1aa53056360e870fa026dea01c00d51f (patch)
tree704dd1622b8babe780ddd32268b5c276e1ef884d /kud/tests/vnfs/comp-app/collection/app3/helm/m3db/templates/m3dbcluster.yaml
parent7696e3865b96f0bb49333fbdf68c03057df8c74b (diff)
parent27b59a675fa767ad91239d89528a90e515539595 (diff)
Merge "Integrate M3DB and prometheus & enable remoteWrite"
Diffstat (limited to 'kud/tests/vnfs/comp-app/collection/app3/helm/m3db/templates/m3dbcluster.yaml')
-rw-r--r--kud/tests/vnfs/comp-app/collection/app3/helm/m3db/templates/m3dbcluster.yaml26
1 files changed, 26 insertions, 0 deletions
diff --git a/kud/tests/vnfs/comp-app/collection/app3/helm/m3db/templates/m3dbcluster.yaml b/kud/tests/vnfs/comp-app/collection/app3/helm/m3db/templates/m3dbcluster.yaml
new file mode 100644
index 00000000..8ce16a74
--- /dev/null
+++ b/kud/tests/vnfs/comp-app/collection/app3/helm/m3db/templates/m3dbcluster.yaml
@@ -0,0 +1,26 @@
+apiVersion: operator.m3db.io/v1alpha1
+kind: M3DBCluster
+metadata:
+ name: {{ .Values.m3dbCluster.name }}
+spec:
+ image: {{ .Values.m3dbCluster.image.repository }}:{{ .Values.m3dbCluster.image.tag }}
+ replicationFactor: {{ .Values.m3dbCluster.replicationFactor }}
+ numberOfShards: {{ .Values.m3dbCluster.numberOfShards }}
+ etcdEndpoints:
+ - http://{{ .Release.Name }}-{{ .Values.etcdCluster.name }}:2379
+ isolationGroups:
+{{ toYaml .Values.m3dbCluster.isolationGroups | indent 4 }}
+ tolerations:
+{{ toYaml .Values.m3dbCluster.tolerations | indent 4 }}
+ namespaces:
+{{ toYaml .Values.m3dbCluster.namespaces | indent 4 }}
+ configMapName: {{ .Values.m3dbCluster.configMapName }}
+ resources:
+ requests:
+ memory: 4Gi
+ cpu: '1'
+ limits:
+ memory: 12Gi
+ cpu: '4'
+
+