Skip to content

Commit 67fb9f7

Browse files
authored
[Bugfix] Helm Lint Indent fix (#1954)
1 parent 918996c commit 67fb9f7

File tree

13 files changed

+37
-36
lines changed

13 files changed

+37
-36
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- (Documentation) Add ArangoPlatformStorage Docs & Examples
55
- (Feature) Enable ML Operator and add required Platform Roles
66
- (Feature) Helm Lint
7+
- (Bugfix) Helm Lint Indent fix
78

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

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ metadata:
1515
namespace: {{ .Release.Namespace }}
1616
{{- if .Values.operator.annotations }}
1717
annotations:
18-
{{ toYaml .Values.operator.annotations | indent 8 }}
18+
{{ toYaml .Values.operator.annotations | indent 4 }}
1919
{{- end }}
2020
labels:
2121
app.kubernetes.io/name: {{ template "kube-arangodb.name" . }}
@@ -30,7 +30,7 @@ spec:
3030
replicas: {{ .Values.operator.replicaCount }}
3131
{{- end }}
3232
strategy:
33-
{{ toYaml .Values.operator.updateStrategy | indent 8 }}
33+
{{ toYaml .Values.operator.updateStrategy | indent 4 }}
3434
selector:
3535
matchLabels:
3636
app.kubernetes.io/name: {{ template "kube-arangodb.name" . }}
@@ -47,12 +47,12 @@ spec:
4747
release: {{ .Release.Name }}
4848
{{- if .Values.operator.annotations }}
4949
annotations:
50-
{{ toYaml .Values.operator.annotations | indent 16 }}
50+
{{ toYaml .Values.operator.annotations | indent 8 }}
5151
{{- end }}
5252
spec:
5353
{{- if .Values.operator.nodeSelector }}
5454
nodeSelector:
55-
{{ toYaml .Values.operator.nodeSelector | indent 16 }}
55+
{{ toYaml .Values.operator.nodeSelector | indent 8 }}
5656
{{- end }}
5757
serviceAccountName: {{ template "kube-arangodb.operatorName" . }}
5858
affinity:
@@ -176,7 +176,7 @@ spec:
176176
{{- end }}
177177
{{- if .Values.operator.resources }}
178178
resources:
179-
{{ toYaml .Values.operator.resources | indent 22 }}
179+
{{ toYaml .Values.operator.resources | indent 10 }}
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 22 }}
239+
{{ toYaml .Values.webhooks.resources | indent 10 }}
240240
{{- end }}
241241
{{- if not .Values.webhooks.debug }}
242242
livenessProbe:
@@ -265,5 +265,5 @@ spec:
265265
effect: "NoExecute"
266266
tolerationSeconds: 5
267267
{{- if .Values.operator.tolerations }}
268-
{{ toYaml .Values.operator.tolerations | indent 16 }}
268+
{{ toYaml .Values.operator.tolerations | indent 8 }}
269269
{{- end }}

chart/kube-arangodb-arm64/templates/service-webhooks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
namespace: {{ .Release.Namespace }}
88
{{- if .Values.operator.annotations }}
99
annotations:
10-
{{ toYaml .Values.operator.annotations | indent 8 }}
10+
{{ toYaml .Values.operator.annotations | indent 4 }}
1111
{{- end }}
1212
labels:
1313
app.kubernetes.io/name: {{ template "kube-arangodb.name" . }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
namespace: {{ .Release.Namespace }}
66
{{- if .Values.operator.annotations }}
77
annotations:
8-
{{ toYaml .Values.operator.annotations | indent 8 }}
8+
{{ toYaml .Values.operator.annotations | indent 4 }}
99
{{- end }}
1010
labels:
1111
app.kubernetes.io/name: {{ template "kube-arangodb.name" . }}

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ metadata:
1515
namespace: {{ .Release.Namespace }}
1616
{{- if .Values.operator.annotations }}
1717
annotations:
18-
{{ toYaml .Values.operator.annotations | indent 8 }}
18+
{{ toYaml .Values.operator.annotations | indent 4 }}
1919
{{- end }}
2020
labels:
2121
app.kubernetes.io/name: {{ template "kube-arangodb.name" . }}
@@ -30,7 +30,7 @@ spec:
3030
replicas: {{ .Values.operator.replicaCount }}
3131
{{- end }}
3232
strategy:
33-
{{ toYaml .Values.operator.updateStrategy | indent 8 }}
33+
{{ toYaml .Values.operator.updateStrategy | indent 4 }}
3434
selector:
3535
matchLabels:
3636
app.kubernetes.io/name: {{ template "kube-arangodb.name" . }}
@@ -47,12 +47,12 @@ spec:
4747
release: {{ .Release.Name }}
4848
{{- if .Values.operator.annotations }}
4949
annotations:
50-
{{ toYaml .Values.operator.annotations | indent 16 }}
50+
{{ toYaml .Values.operator.annotations | indent 8 }}
5151
{{- end }}
5252
spec:
5353
{{- if .Values.operator.nodeSelector }}
5454
nodeSelector:
55-
{{ toYaml .Values.operator.nodeSelector | indent 16 }}
55+
{{ toYaml .Values.operator.nodeSelector | indent 8 }}
5656
{{- end }}
5757
serviceAccountName: {{ template "kube-arangodb.operatorName" . }}
5858
affinity:
@@ -176,7 +176,7 @@ spec:
176176
{{- end }}
177177
{{- if .Values.operator.resources }}
178178
resources:
179-
{{ toYaml .Values.operator.resources | indent 22 }}
179+
{{ toYaml .Values.operator.resources | indent 10 }}
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 22 }}
239+
{{ toYaml .Values.webhooks.resources | indent 10 }}
240240
{{- end }}
241241
{{- if not .Values.webhooks.debug }}
242242
livenessProbe:
@@ -265,5 +265,5 @@ spec:
265265
effect: "NoExecute"
266266
tolerationSeconds: 5
267267
{{- if .Values.operator.tolerations }}
268-
{{ toYaml .Values.operator.tolerations | indent 16 }}
268+
{{ toYaml .Values.operator.tolerations | indent 8 }}
269269
{{- end }}

chart/kube-arangodb-enterprise-arm64/templates/service-webhooks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
namespace: {{ .Release.Namespace }}
88
{{- if .Values.operator.annotations }}
99
annotations:
10-
{{ toYaml .Values.operator.annotations | indent 8 }}
10+
{{ toYaml .Values.operator.annotations | indent 4 }}
1111
{{- end }}
1212
labels:
1313
app.kubernetes.io/name: {{ template "kube-arangodb.name" . }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
namespace: {{ .Release.Namespace }}
66
{{- if .Values.operator.annotations }}
77
annotations:
8-
{{ toYaml .Values.operator.annotations | indent 8 }}
8+
{{ toYaml .Values.operator.annotations | indent 4 }}
99
{{- end }}
1010
labels:
1111
app.kubernetes.io/name: {{ template "kube-arangodb.name" . }}

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ metadata:
1515
namespace: {{ .Release.Namespace }}
1616
{{- if .Values.operator.annotations }}
1717
annotations:
18-
{{ toYaml .Values.operator.annotations | indent 8 }}
18+
{{ toYaml .Values.operator.annotations | indent 4 }}
1919
{{- end }}
2020
labels:
2121
app.kubernetes.io/name: {{ template "kube-arangodb.name" . }}
@@ -30,7 +30,7 @@ spec:
3030
replicas: {{ .Values.operator.replicaCount }}
3131
{{- end }}
3232
strategy:
33-
{{ toYaml .Values.operator.updateStrategy | indent 8 }}
33+
{{ toYaml .Values.operator.updateStrategy | indent 4 }}
3434
selector:
3535
matchLabels:
3636
app.kubernetes.io/name: {{ template "kube-arangodb.name" . }}
@@ -47,12 +47,12 @@ spec:
4747
release: {{ .Release.Name }}
4848
{{- if .Values.operator.annotations }}
4949
annotations:
50-
{{ toYaml .Values.operator.annotations | indent 16 }}
50+
{{ toYaml .Values.operator.annotations | indent 8 }}
5151
{{- end }}
5252
spec:
5353
{{- if .Values.operator.nodeSelector }}
5454
nodeSelector:
55-
{{ toYaml .Values.operator.nodeSelector | indent 16 }}
55+
{{ toYaml .Values.operator.nodeSelector | indent 8 }}
5656
{{- end }}
5757
serviceAccountName: {{ template "kube-arangodb.operatorName" . }}
5858
affinity:
@@ -176,7 +176,7 @@ spec:
176176
{{- end }}
177177
{{- if .Values.operator.resources }}
178178
resources:
179-
{{ toYaml .Values.operator.resources | indent 22 }}
179+
{{ toYaml .Values.operator.resources | indent 10 }}
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 22 }}
239+
{{ toYaml .Values.webhooks.resources | indent 10 }}
240240
{{- end }}
241241
{{- if not .Values.webhooks.debug }}
242242
livenessProbe:
@@ -265,5 +265,5 @@ spec:
265265
effect: "NoExecute"
266266
tolerationSeconds: 5
267267
{{- if .Values.operator.tolerations }}
268-
{{ toYaml .Values.operator.tolerations | indent 16 }}
268+
{{ toYaml .Values.operator.tolerations | indent 8 }}
269269
{{- end }}

chart/kube-arangodb-enterprise/templates/service-webhooks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
namespace: {{ .Release.Namespace }}
88
{{- if .Values.operator.annotations }}
99
annotations:
10-
{{ toYaml .Values.operator.annotations | indent 8 }}
10+
{{ toYaml .Values.operator.annotations | indent 4 }}
1111
{{- end }}
1212
labels:
1313
app.kubernetes.io/name: {{ template "kube-arangodb.name" . }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
namespace: {{ .Release.Namespace }}
66
{{- if .Values.operator.annotations }}
77
annotations:
8-
{{ toYaml .Values.operator.annotations | indent 8 }}
8+
{{ toYaml .Values.operator.annotations | indent 4 }}
99
{{- end }}
1010
labels:
1111
app.kubernetes.io/name: {{ template "kube-arangodb.name" . }}

0 commit comments

Comments
 (0)