Skip to content

Commit

Permalink
chore(charts): bump defaut kaniko version (#968)
Browse files Browse the repository at this point in the history
* chore(charts): bump defaut kaniko version

Signed-off-by: Thibault Camalon <135698225+thbcmlowk@users.noreply.github.com>

* docs(charts): update README

Signed-off-by: Thibault Camalon <135698225+thbcmlowk@users.noreply.github.com>

---------

Signed-off-by: Thibault Camalon <135698225+thbcmlowk@users.noreply.github.com>
  • Loading branch information
thbcmlowk authored Sep 13, 2024
1 parent 37c437d commit 3ff7c51
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
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

0 comments on commit 3ff7c51

Please sign in to comment.