rcampos87 commented on code in PR #58155:
URL: https://github.com/apache/airflow/pull/58155#discussion_r2519896839
##########
chart/values.schema.json:
##########
@@ -8952,6 +8952,325 @@
}
}
},
+ "databaseCleanup": {
+ "description": "This runs as a CronJob to cleanup the database
after the retention period.",
+ "type": "object",
+ "x-docsSection": "Jobs",
+ "additionalProperties": false,
+ "properties": {
+ "enabled": {
+ "description": "Enable database cleanup.",
+ "type": "boolean",
+ "default": false
+ },
+ "schedule": {
+ "description": "Database cleanup schedule (templated).",
+ "type": "string",
+ "default": "0 0 * * 0"
+ },
+ "retentionDays": {
+ "description": "Number of days to retain records in the
metadata database.",
+ "type": "integer",
+ "default": 90
+ },
+ "command": {
+ "description": "Command to use when running the database
cleanup cronjob (templated).",
+ "type": [
+ "array",
+ "null"
+ ],
+ "items": {
+ "type": "string"
+ },
+ "default": null
Review Comment:
its possible yes
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]