mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
GT-233 Fix manual overwrite for ReplicasCount in helm (#1290)
This commit is contained in:
parent
f2791d7e17
commit
f3c0a553f8
2 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
# Change Log
|
||||
|
||||
## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A)
|
||||
- (Bugfix) Fix manual overwrite for ReplicasCount in helm
|
||||
|
||||
## [1.2.25](https://github.com/arangodb/kube-arangodb/tree/1.2.25) (2023-04-07)
|
||||
- (Feature) Add Generics & Drop policy/v1beta1 support
|
||||
|
|
|
@ -105,7 +105,7 @@ spec:
|
|||
{{ if .Values.operator.features.backup }}
|
||||
- --operator.backup
|
||||
{{- end }}
|
||||
{{- if or .Values.operator.debug (eq .Values.operator.replicaCount 1.0) }}
|
||||
{{- if or .Values.operator.debug (eq ( int .Values.operator.replicaCount) 1) }}
|
||||
- --mode.single
|
||||
{{- end }}
|
||||
{{ if .Values.operator.features.apps }}
|
||||
|
|
Loading…
Reference in a new issue