Skip to content

Commit f3c0a55

Browse files
authored
GT-233 Fix manual overwrite for ReplicasCount in helm (#1290)
1 parent f2791d7 commit f3c0a55

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Change Log
22

33
## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A)
4+
- (Bugfix) Fix manual overwrite for ReplicasCount in helm
45

56
## [1.2.25](https://github.com/arangodb/kube-arangodb/tree/1.2.25) (2023-04-07)
67
- (Feature) Add Generics & Drop policy/v1beta1 support

chart/kube-arangodb/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ spec:
105105
{{ if .Values.operator.features.backup }}
106106
- --operator.backup
107107
{{- end }}
108-
{{- if or .Values.operator.debug (eq .Values.operator.replicaCount 1.0) }}
108+
{{- if or .Values.operator.debug (eq ( int .Values.operator.replicaCount) 1) }}
109109
- --mode.single
110110
{{- end }}
111111
{{ if .Values.operator.features.apps }}

0 commit comments

Comments
 (0)