github.com/1aal/kubeblocks@v0.0.0-20231107070852-e1c03e598921/deploy/postgresql-cluster/templates/_helpers.tpl (about)

     1  {{/*
     2  Define replica count.
     3  standalone mode: 1
     4  replication mode: 2
     5  */}}
     6  {{- define "postgresql-cluster.replicaCount" }}
     7  {{- if eq .Values.mode "standalone" }}
     8  replicas: 1
     9  {{- else if eq .Values.mode "replication" }}
    10  replicas: {{ max .Values.replicas 2 }}
    11  {{- end }}
    12  {{- end }}