Refactor Distributed Analytics project structure
[demo.git] / vnfs / DAaaS / deploy / training-core / charts / m3db / templates / m3dbcluster.yaml
1 apiVersion: operator.m3db.io/v1alpha1
2 kind: M3DBCluster
3 metadata:
4   name: {{ .Values.m3dbCluster.name }}
5 spec:
6   image: {{ .Values.m3dbCluster.image.repository }}:{{ .Values.m3dbCluster.image.tag }}
7   replicationFactor: {{ .Values.m3dbCluster.replicationFactor }}
8   numberOfShards: {{ .Values.m3dbCluster.numberOfShards }}
9   isolationGroups:
10 {{ toYaml .Values.m3dbCluster.isolationGroups | indent 4 }}
11   namespaces:
12 {{ toYaml .Values.m3dbCluster.namespaces | indent 4 }}
13   configMapName: {{ .Values.m3dbCluster.configMapName }}
14   resources:
15     requests:
16       memory: 4Gi
17       cpu: '1'
18     limits:
19       memory: 12Gi
20       cpu: '4'
21
22