Skip to content

Commit

Permalink
fix: correct schedeule and command
Browse files Browse the repository at this point in the history
  • Loading branch information
kirinnee committed Dec 31, 2023
1 parent afd5e05 commit f67655c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 5 additions & 1 deletion infra/root_chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ Root Chart to a single Service
| bromine.rootSecret.ref | string | `"NITROSO_HELIUM"` | DOPPLER Token Reference |
| bromine.storeName | string | `"nitroso-helium"` | Store name to create |
| bromine.target | string | `"nitroso-helium"` | |
| scheduler.command[0] | string | `"bun"` | |
| scheduler.command[1] | string | `"run"` | |
| scheduler.command[2] | string | `"index.js"` | |
| scheduler.command[3] | string | `"schedule"` | |
| scheduler.envFromSecret | string | `"nitroso-helium"` | |
| scheduler.restartPolicy | string | `"Never"` | |
| scheduler.schedule | string | `"35 16 * * *"` | |
| scheduler.schedule | string | `"0 16 * * *"` | |
| scheduler.serviceTree.<<.landscape | string | `"lapras"` | |
| scheduler.serviceTree.<<.layer | string | `"2"` | |
| scheduler.serviceTree.<<.module | string | `"pollee"` | |
Expand Down
7 changes: 6 additions & 1 deletion infra/root_chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ scheduler:
<<: *serviceTree
module: scheduler

schedule: "35 16 * * *"
schedule: "0 16 * * *"
command:
- "bun"
- "run"
- "index.js"
- "schedule"

restartPolicy: "Never"

Expand Down

0 comments on commit f67655c

Please sign in to comment.