Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions chart/templates/crons/deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{{- if .Values.general.crons.enabled }}
apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down Expand Up @@ -151,4 +150,4 @@ spec:
affinity:
{{ toYaml .Values.deployments.crons.affinity | nindent 8 }}
{{- end }}
{{- end }}

2 changes: 1 addition & 1 deletion chart/templates/crons/serviceaccount.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.general.crons.enabled .Values.serviceAccount.create -}}
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
Expand Down
9 changes: 0 additions & 9 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,15 +141,6 @@ general:
## List of response status codes upon which the data streamer will not retry
- 403

#####################
## Crons
#####################
crons:
enabled: false
## If set to `true`, will deploy a crons service for processing crons and other background operations
## This service runs the same application as the backend but with crons profiles activated
## It does not expose any external ports and focuses on background processing to improve backend performance

################################################
## Enable TLS communication between pods
################################################
Expand Down
Loading