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

fix: 🐛 console default backup cron #40

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion charts/dso-console/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: cpn-console
description: A Helm chart to deploy Cloud Pi Native Console
type: application
version: 1.5.0
version: 1.5.1
appVersion: 8.8.1
keywords: []
home: https://cloud-pi-native.fr
Expand Down
4 changes: 2 additions & 2 deletions charts/dso-console/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cpn-console

![Version: 1.5.0](https://img.shields.io/badge/Version-1.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.8.1](https://img.shields.io/badge/AppVersion-8.8.1-informational?style=flat-square)
![Version: 1.5.1](https://img.shields.io/badge/Version-1.5.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.8.1](https://img.shields.io/badge/AppVersion-8.8.1-informational?style=flat-square)

A Helm chart to deploy Cloud Pi Native Console

Expand Down Expand Up @@ -82,7 +82,7 @@ A Helm chart to deploy Cloud Pi Native Console
| client.strategy.type | string | `"RollingUpdate"` | Strategy type used to replace old Pods by new ones, can be "Recreate" or "RollingUpdate". |
| client.tolerations | list | `[]` | Default tolerations for Console CPN client. |
| cnpg.annotations | object | `{}` | Additional cnpg cluster annotations. |
| cnpg.backup.cron | string | `"0 */6 * * * *"` | The cron rule used for cnpg backups. By default it runs every 6 hours. |
| cnpg.backup.cron | string | `"0 0 */6 * * *"` | The cron rule used for cnpg backups. By default it runs every 6 hours. |
| cnpg.backup.destinationPath | string | `""` | S3 destination path for cnpg backups (it should be set like `s3://<bucket_name>/<path>`). |
| cnpg.backup.enabled | bool | `false` | Whether or not cnpg cluster deployment should be enabled. |
| cnpg.backup.endpointCA.key | string | `""` | The secret key containing S3 CA for cnpg backups. |
Expand Down
2 changes: 1 addition & 1 deletion charts/dso-console/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ cnpg:
# -- S3 secretAccessKey value used for cnpg backups.
value: ""
# -- The cron rule used for cnpg backups. By default it runs every 6 hours.
cron: "0 */6 * * * *"
cron: "0 0 */6 * * *"
# -- Retention policy for cnpg backups recurrences.
retentionPolicy: "30d"

Expand Down