Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update cron yml so that script can properly reference config #61

Merged
merged 21 commits into from
Apr 19, 2024
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
7367cfa
update comments on backfill scripts to give context of what previous …
yuenmichelle1 Mar 15, 2024
ace522e
adding comments for context on old scripts
yuenmichelle1 Mar 26, 2024
2827e81
update backfill script in ruby
yuenmichelle1 Apr 10, 2024
82a65c6
Merge branch 'main' into add-cron-scripts
yuenmichelle1 Apr 10, 2024
4b8f5ea
update env variables to use Rails.app.credentials. attempt at cron jo…
yuenmichelle1 Apr 10, 2024
f29f610
Update cron_sync.yml
yuenmichelle1 Apr 10, 2024
0d4e2a6
Update user_group_membership_classification_backfill.py
yuenmichelle1 Apr 10, 2024
2c335ad
update panoptes_membership_client.rb to create insert query using arr…
yuenmichelle1 Apr 10, 2024
bf12607
adding a more descriptive comment insert query
yuenmichelle1 Apr 10, 2024
f06f187
add manual sync
yuenmichelle1 Apr 15, 2024
fe179a9
Update .github/workflows/manual_corp_user_group_sync.yml
yuenmichelle1 Apr 18, 2024
a5ed815
Update .github/workflows/manual_corp_user_group_sync.yml
yuenmichelle1 Apr 18, 2024
83739df
Update .github/workflows/manual_corp_user_group_sync.yml
yuenmichelle1 Apr 18, 2024
85453a9
Update .github/workflows/manual_corp_user_group_sync.yml
yuenmichelle1 Apr 18, 2024
90d15c5
Update .github/workflows/manual_corp_user_group_sync.yml
yuenmichelle1 Apr 18, 2024
9d335c3
Update manual_corp_user_group_sync.yml
yuenmichelle1 Apr 19, 2024
7b6927e
Merge branch 'main' into add-cron-scripts
yuenmichelle1 Apr 19, 2024
63db193
Update manual_corp_user_group_sync.yml
yuenmichelle1 Apr 19, 2024
fe8cdad
Merge branch 'main' into add-cron-scripts
yuenmichelle1 Apr 19, 2024
47c6cac
update cron yml to properly pull config
yuenmichelle1 Apr 19, 2024
dbbd6f4
Merge branch 'main' into add-cron-scripts
yuenmichelle1 Apr 19, 2024
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
5 changes: 4 additions & 1 deletion kubernetes/corp_user_groups_cron_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ spec:
secretKeyRef:
name: eras-production
key: rails-master-key
command: ['ruby', './scripts/user_group_membership_classification_backfill.rb']
command:
- /bin/sh
- -c
- cd scripts; ruby user_group_membership_classification_backfill.rb
restartPolicy: Never
backoffLimit: 2
Loading