Skip to content

Commit f6a46f9

Browse files
committed
Enabled crons service by default
1 parent 432bb50 commit f6a46f9

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

chart/templates/crons/deployment.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
{{- if .Values.general.crons.enabled }}
21
apiVersion: apps/v1
32
kind: Deployment
43
metadata:
@@ -151,4 +150,4 @@ spec:
151150
affinity:
152151
{{ toYaml .Values.deployments.crons.affinity | nindent 8 }}
153152
{{- end }}
154-
{{- end }}
153+

chart/templates/crons/serviceaccount.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{- if and .Values.general.crons.enabled .Values.serviceAccount.create -}}
1+
{{- if .Values.serviceAccount.create -}}
22
apiVersion: v1
33
kind: ServiceAccount
44
metadata:

chart/values.yaml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -141,15 +141,6 @@ general:
141141
## List of response status codes upon which the data streamer will not retry
142142
- 403
143143

144-
#####################
145-
## Crons
146-
#####################
147-
crons:
148-
enabled: false
149-
## If set to `true`, will deploy a crons service for processing crons and other background operations
150-
## This service runs the same application as the backend but with crons profiles activated
151-
## It does not expose any external ports and focuses on background processing to improve backend performance
152-
153144
################################################
154145
## Enable TLS communication between pods
155146
################################################

0 commit comments

Comments
 (0)