aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/deploy/training-core/charts/m3db/templates/m3dbcluster.yaml
blob: fb8aff9acbf92187ca507de42fcb43fdde724f39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 }}
  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'