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

chore(charts): bump defaut kaniko version #968

Merged
merged 2 commits into from
Sep 13, 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
7 changes: 6 additions & 1 deletion charts/substra-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,19 @@

<!-- towncrier release notes start -->

## [26.10.1] - 2024-09-13

# Changed

Upgrade default version for kaniko executor and warmer.

## [26.10.0] - 2024-09-13

### Changed

- Docker registry update strategy is now `Recreate` to avoid race condition on the attached PVC during upgrade
- Server update strategy is now configurable and set to `Recreate` by default to avoid race condition on the attached PVC during upgrade


## [26.9.1] - 2024-09-12

### Changed
Expand Down
2 changes: 1 addition & 1 deletion charts/substra-backend/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: substra-backend
home: https://github.com/Substra
version: 26.10.0
version: 26.10.1
appVersion: 0.48.0
kubeVersion: '>= 1.19.0-0'
description: Main package for Substra
Expand Down
4 changes: 2 additions & 2 deletions charts/substra-backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,15 +318,15 @@ See [UPGRADE.md](https://github.com/Substra/substra-backend/blob/main/charts/sub
| --------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------- |
| `kaniko.image.registry` | Kaniko image registry | `gcr.io` |
| `kaniko.image.repository` | Kaniko image repository | `kaniko-project/executor` |
| `kaniko.image.tag` | Kaniko image tag | `v1.8.1` |
| `kaniko.image.tag` | Kaniko image tag | `v1.23.2` |
| `kaniko.resources.requests.cpu` | Kaniko container cpu request | `1000m` |
| `kaniko.resources.requests.memory` | Kaniko container memory request | `4Gi` |
| `kaniko.resources.limits.memory` | Kaniko container memory limit | `32Gi` |
| `kaniko.mirror` | If set to `true` pull base images from the local registry. | `false` |
| `kaniko.dockerConfigSecretName` | A Docker config to use for pulling base images | `nil` |
| `kaniko.cache.warmer.image.registry` | Kaniko cache warmer registry | `gcr.io` |
| `kaniko.cache.warmer.image.repository` | Kaniko cache warmer repository | `kaniko-project/warmer` |
| `kaniko.cache.warmer.image.tag` | Kaniko cache warmer image tag | `v1.8.1` |
| `kaniko.cache.warmer.image.tag` | Kaniko cache warmer image tag | `v1.23.2` |
| `kaniko.cache.warmer.cachedImages` | A list of docker images to warmup the Kaniko cache | `[]` |
| `kaniko.cache.persistence.storageClass` | Specify the _StorageClass_ used to provision the volume. Or the default _StorageClass_ will be used. Set it to `-` to disable dynamic provisioning | `""` |
| `kaniko.cache.persistence.size` | The size of the volume. | `10Gi` |
Expand Down
4 changes: 2 additions & 2 deletions charts/substra-backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ kaniko:
image:
registry: gcr.io
repository: kaniko-project/executor
tag: v1.8.1
tag: &kanikoVersion v1.23.2
## @param kaniko.resources.requests.cpu Kaniko container cpu request
## @param kaniko.resources.requests.memory Kaniko container memory request
## @param kaniko.resources.limits.memory Kaniko container memory limit
Expand All @@ -830,7 +830,7 @@ kaniko:
image:
registry: gcr.io
repository: kaniko-project/warmer
tag: v1.8.1
tag: *kanikoVersion
## @param kaniko.cache.warmer.cachedImages A list of docker images to warmup the Kaniko cache
## e.g:
## - ghcr.io/substra-314908/substra-tools:0.9.0-minimal
Expand Down
Loading