-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat(guardian): introduce new guardian jobs #32
base: main
Are you sure you want to change the base?
Changes from all commits
5f18834
fe4800b
b5fd987
f9e6e51
e29eddf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,22 +43,38 @@ app: | |
- job | ||
- run | ||
- fetch_resources | ||
- name: "appeal-expiration-reminder" | ||
- name: "expiring-grant-notification" | ||
schedule: "0 9 * * *" | ||
restartPolicy: Never | ||
command: [] | ||
args: | ||
- job | ||
- run | ||
- appeal_expiration_reminder | ||
- name: "appeal-expiration-revocation" | ||
- expiring_grant_notification | ||
- name: "revoke-expired-grants" | ||
schedule: "*/20 * * * *" | ||
restartPolicy: Never | ||
command: [] | ||
args: | ||
- job | ||
- run | ||
- appeal_expiration_revocation | ||
- revoke_expired_grants | ||
- name: "inactive-revocation" | ||
schedule: "0 7 * * *" | ||
restartPolicy: Never | ||
command: [] | ||
args: | ||
- job | ||
- run | ||
- revoke_grants_by_user_criteria | ||
- name: "dormancy-check" | ||
schedule: "0 8 * * *" | ||
restartPolicy: Never | ||
command: [] | ||
args: | ||
- job | ||
- run | ||
- grant_dormancy_check | ||
|
||
ingress: | ||
enabled: true | ||
|
@@ -85,6 +101,8 @@ app: | |
JOBS_REVOKE_EXPIRED_ACCESS_INTERVAL: "*/20 * * * *" | ||
JOBS_EXPIRING_ACCESS_NOTIFICATION_ENABLED: false | ||
JOBS_EXPIRING_ACCESS_NOTIFICATION_INTERVAL: "0 9 * * *" | ||
Comment on lines
101
to
103
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can we add grant related flags also here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. those are optional, we can omit them from here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure. Some of these existing ones are deprecated if I recall correctly. Can we remove the deprecated ones also. |
||
JOBS_REVOKE_GRANTS_BY_USER_CRITERIA_CONFIG: '{"dry_run":true}' | ||
JOBS_GRANT_DORMANCY_CHECK_CONFIG: '{"dry_run":true}' | ||
|
||
|
||
secretConfig: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we include the latest stable release instead of -beta version one?