Skip to content

Commit 9a477a3

Browse files
authored
[Bugfix] Fix Resources Indent (#1965)
1 parent 64a257f commit 9a477a3

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
- (Feature) Add Arch Tolerations
1313
- (Bugfix) Enable Platform Operator on EE Chart
1414
- (Feature) Improve GRPC JSON Handling
15+
- (Bugfix) Fix Operator Pod Resources
1516

1617
## [1.3.0](https://github.com/arangodb/kube-arangodb/tree/1.3.0) (2025-08-01)
1718
- (Feature) (Platform) Storage Debug

chart/kube-arangodb-arm64/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ spec:
176176
{{- end }}
177177
{{- if .Values.operator.resources }}
178178
resources:
179-
{{ toYaml .Values.operator.resources | indent 10 }}
179+
{{ toYaml .Values.operator.resources | indent 12 }}
180180
{{- end }}
181181
{{- if not .Values.operator.debug }}
182182
livenessProbe:
@@ -236,7 +236,7 @@ spec:
236236
- 'ALL'
237237
{{- if .Values.webhooks.resources }}
238238
resources:
239-
{{ toYaml .Values.webhooks.resources | indent 10 }}
239+
{{ toYaml .Values.webhooks.resources | indent 12 }}
240240
{{- end }}
241241
{{- if not .Values.webhooks.debug }}
242242
livenessProbe:

chart/kube-arangodb-enterprise-arm64/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ spec:
176176
{{- end }}
177177
{{- if .Values.operator.resources }}
178178
resources:
179-
{{ toYaml .Values.operator.resources | indent 10 }}
179+
{{ toYaml .Values.operator.resources | indent 12 }}
180180
{{- end }}
181181
{{- if not .Values.operator.debug }}
182182
livenessProbe:
@@ -236,7 +236,7 @@ spec:
236236
- 'ALL'
237237
{{- if .Values.webhooks.resources }}
238238
resources:
239-
{{ toYaml .Values.webhooks.resources | indent 10 }}
239+
{{ toYaml .Values.webhooks.resources | indent 12 }}
240240
{{- end }}
241241
{{- if not .Values.webhooks.debug }}
242242
livenessProbe:

chart/kube-arangodb-enterprise/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ spec:
176176
{{- end }}
177177
{{- if .Values.operator.resources }}
178178
resources:
179-
{{ toYaml .Values.operator.resources | indent 10 }}
179+
{{ toYaml .Values.operator.resources | indent 12 }}
180180
{{- end }}
181181
{{- if not .Values.operator.debug }}
182182
livenessProbe:
@@ -236,7 +236,7 @@ spec:
236236
- 'ALL'
237237
{{- if .Values.webhooks.resources }}
238238
resources:
239-
{{ toYaml .Values.webhooks.resources | indent 10 }}
239+
{{ toYaml .Values.webhooks.resources | indent 12 }}
240240
{{- end }}
241241
{{- if not .Values.webhooks.debug }}
242242
livenessProbe:

chart/kube-arangodb/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ spec:
176176
{{- end }}
177177
{{- if .Values.operator.resources }}
178178
resources:
179-
{{ toYaml .Values.operator.resources | indent 10 }}
179+
{{ toYaml .Values.operator.resources | indent 12 }}
180180
{{- end }}
181181
{{- if not .Values.operator.debug }}
182182
livenessProbe:
@@ -236,7 +236,7 @@ spec:
236236
- 'ALL'
237237
{{- if .Values.webhooks.resources }}
238238
resources:
239-
{{ toYaml .Values.webhooks.resources | indent 10 }}
239+
{{ toYaml .Values.webhooks.resources | indent 12 }}
240240
{{- end }}
241241
{{- if not .Values.webhooks.debug }}
242242
livenessProbe:

0 commit comments

Comments
 (0)