Make server component replicas configurable (#225)
The official Argo-CD HA manifests do not scale the dex server or the application controller past 1 because they still have local caches and cannot support more than one pod at a time Signed-off-by: Carson Anderson <ca@carsonoid.net>
This commit is contained in:
parent
6c6564e302
commit
209bd150cc
4 changed files with 7 additions and 3 deletions
|
|
@ -16,7 +16,7 @@ spec:
|
|||
app.kubernetes.io/name: {{ include "argo-cd.name" . }}-{{ .Values.repoServer.name }}
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
revisionHistoryLimit: 5
|
||||
replicas: 1
|
||||
replicas: {{ .Values.repoServer.replicas }}
|
||||
template:
|
||||
metadata:
|
||||
{{- if .Values.repoServer.podAnnotations }}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ spec:
|
|||
app.kubernetes.io/name: {{ include "argo-cd.name" . }}-{{ .Values.server.name }}
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
revisionHistoryLimit: 5
|
||||
replicas: 1
|
||||
replicas: {{ .Values.server.replicas }}
|
||||
template:
|
||||
metadata:
|
||||
{{- if .Values.server.podAnnotations }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue