Skip to content
Open
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
4 changes: 2 additions & 2 deletions stable/guardian/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.0
version: 0.2.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.3.0"
appVersion: "0.3.0" # TODO: update with latest version

dependencies:
- name: app
Expand Down
18 changes: 18 additions & 0 deletions stable/guardian/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,22 @@ app:
- job
- run
- appeal_expiration_revocation

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to update the appeal expiration related jobs also to grant related ones.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated

- name: "inactive-user-revocation"
schedule: "0 7 * * *"
restartPolicy: Never
command: []
args:
- job
- run
- revoke_grants_by_user_criteria
- name: "grant-dormancy-check"
schedule: "0 8 * * *"
restartPolicy: Never
command: []
args:
- job
- run
- grant_dormancy_check

ingress:
enabled: true
Expand All @@ -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

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we add grant related flags also here?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

those are optional, we can omit them from here

@bsushmith bsushmith Aug 10, 2023

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The 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:
Expand Down