Skip to content

Commit

Permalink
chore(timed): update backend to v3.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
c0rydoras committed Apr 12, 2024
1 parent e201f10 commit e66ab1e
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 25 deletions.
8 changes: 5 additions & 3 deletions charts/timed/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: timed
description: Chart for Timed application
type: application
version: 0.16.32
version: 0.16.33
keywords:
- timed
- tracking
Expand All @@ -23,7 +23,9 @@ dependencies:
annotations:
artifacthub.io/changes: |
- kind: changed
description: "update timed-frontend to v3.5.0"
description: "update timed-backend to v3.0.9"
links:
- name: GitHub Release
url: https://github.com/adfinis/timed-frontend/releases/tag/v3.5.0
url: https://github.com/adfinis/timed-backend/releases/tag/v3.0.8
- name: GitHub Release
url: https://github.com/adfinis/timed-backend/releases/tag/v3.0.9
22 changes: 11 additions & 11 deletions charts/timed/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion charts/timed/templates/job-dbmigrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ spec:
name: {{ include "timed.fullname" . }}-backend
- configMapRef:
name: {{ include "timed.fullname" . }}-backend
command: ["./manage.py", "migrate"]
command: ["manage.py", "migrate"]
{{- end }}
20 changes: 10 additions & 10 deletions charts/timed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ backend:
# -- Backend image name
repository: ghcr.io/adfinis/timed-backend
# -- Backend version.
tag: v3.0.7
tag: v3.0.9
# -- Backend image pull policy
pullPolicy: IfNotPresent
service:
Expand Down Expand Up @@ -128,13 +128,13 @@ backend:
notifySupervisors:
schedule: "0 8 * * 4"
command:
- "./manage.py"
- "manage.py"
- "notify_supervisors_shorttime"
# -- Notify reviewers first stage
notifyReviewersFirst:
schedule: "0 8 4 * *"
command:
- "./manage.py"
- "manage.py"
- "notify_reviewers_unverified"
- "--offset"
# -- Period will end today minus given offset
Expand All @@ -143,7 +143,7 @@ backend:
notifyReviewersSecond:
schedule: "0 8 11 * *"
command:
- "./manage.py"
- "manage.py"
- "notify_reviewers_unverified"
- "--offset"
# -- Period will end today minus given offset
Expand All @@ -155,7 +155,7 @@ backend:
notifyReviewersThird:
schedule: "0 8 18 * *"
command:
- "./manage.py"
- "manage.py"
- "notify_reviewers_unverified"
- "--offset"
# -- Period will end today minus given offset
Expand All @@ -167,31 +167,31 @@ backend:
redmineReport:
schedule: "0 1 * * 1"
command:
- "./manage.py"
- "manage.py"
- "redmine_report"
# -- Notify changed employments
notifyChangedEmployments:
schedule: "0 2 * * 1"
command:
- "./manage.py"
- "manage.py"
- "notify_changed_employments"
# -- Budget Check
budgetCheck:
schedule: "0 3 * * *"
command:
- "./manage.py"
- "manage.py"
- "budget_check"
# -- Update project expanditure in redmine first time
updateProjectExpanditureFirst:
schedule: "0 8 * * 3"
command:
- "./manage.py"
- "manage.py"
- "update_project_expenditure"
# -- Update project expanditure in redmine second time
updateProjectExpanditureSecond:
schedule: "0 8 * * 0"
command:
- "./manage.py"
- "manage.py"
- "update_project_expenditure"

frontend:
Expand Down

0 comments on commit e66ab1e

Please sign in to comment.