Fix spacing issues in YAML files in vnfs
[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   tolerations:
12 {{ toYaml .Values.m3dbCluster.tolerations | indent 4 }}
13   namespaces:
14 {{ toYaml .Values.m3dbCluster.namespaces | indent 4 }}
15   configMapName: {{ .Values.m3dbCluster.configMapName }}
16   resources:
17     requests:
18       memory: 4Gi
19       cpu: '1'
20     limits:
21       memory: 12Gi
22       cpu: '4'