diff --git a/src/content/release-notes.mdx b/src/content/release-notes.mdx index ab87798cc..a9754ab49 100644 --- a/src/content/release-notes.mdx +++ b/src/content/release-notes.mdx @@ -5,6 +5,43 @@ sidebar_label: Release notes id: release-notes --- +## 1.24 + +9 September 2024 + +This versions is compatible with Kubernetes versions 1.27 to 1.30 + +### New Features + +- Enable [multi-user token authentication](self-hosted/install/auth/token.mdx) +- Added support for [BuildKit Bridge Mode](self-hosted/helm-configuration.mdx#buildkit) to avoid port collisions on parallel builds + +### Improvements + +- Added new [Developer Quickstart Guide to the documentation](get-started/dev-quickstart.mdx) +- Upgraded [ingress-nginx to v1.11.2](https://github.com/kubernetes/ingress-nginx/releases/tag/controller-v1.11.2) adding support for [gRPC timeout settings via annotations](https://github.com/kubernetes/ingress-nginx/pull/11258). This update may introduce a breaking change related to an [uncommon edge case](https://github.com/kubernetes/ingress-nginx/issues/11866) +- Updated the "Want to know more" links in an empty namespace +- Added [tolerations for EventsExporter StatefulSet](self-hosted/helm-configuration.mdx#insights) +- Updated pipeline-runner image to v1.0.5 to update cue to 0.9.2 +- [Okteto CLI 2.31.0 Upgrade Notice](https://github.com/okteto/okteto/releases/tag/2.31.0): To upgrade to new ECDSA keys, all active development containers will be recreated on the first okteto up after upgrading to 2.31.0 +- [Okteto CLI 2.31.0](https://github.com/okteto/okteto/releases/tag/2.31.0): Replaced RSA with ECDSA for SSH keys. This allows the use of debuggers on Visual Studio with Development Containers +- [Okteto CLI 2.31.0](https://github.com/okteto/okteto/releases/tag/2.31.0): Prevent Syncthing from restarting and activating [relay](https://docs.syncthing.net/users/relaying.html) if the Synching configuration is lost + +### Bug Fixes + +- Trimmed .git suffix when extracting repository data +- Fixed Development Environment UI collapse when a nested item is deleted +- Added OKTETO_TOKEN as a [reserved variable name](core/credentials/environment-variables.mdx) in the UI +- Fixed git url parsing for URLs with a trailing slash +- Fixed an overflow issue with long variable values +- Private endpoint cookies now delete upon logout +- Fixed duplicated endpoints in the UI if they're shared by more than one resource +- Fixed GitHub integration configuration issue in Settings view + +### Removal Notice + +- Support for Kubernetes [1.26](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.26.md) has been removed in this release. + ## 1.23.2 16 August 2024 diff --git a/src/content/self-hosted/helm-configuration.mdx b/src/content/self-hosted/helm-configuration.mdx index d186dc27a..84a5e58f9 100644 --- a/src/content/self-hosted/helm-configuration.mdx +++ b/src/content/self-hosted/helm-configuration.mdx @@ -209,6 +209,7 @@ The build service. It's used in combination with `okteto build` to build contain - `persistence.cache`: The size (in Mi) of the buildkit cache to store image caches. It should be around 30Gi smaller than `storage.size`. Defaults to 500Gi. - `tolerations`: List of tolerations to be added to the buildkit service Pods. This list of tolerations will be applied in conjunction with any tolerations set in [`tolerations.buildPool`](self-hosted/helm-configuration.mdx#tolerations) until deprecation of `tolerations.buildPool`. If not set, the buildkit Pods will inherit the tolerations list set in [`globals.tolerations.okteto`](self-hosted/helm-configuration.mdx#globals). - `nodeSelectors`: Dictionary of node selectors to be added to the buildkit service Pods. This helps you match Pods to nodes whose labels match the node selector. This list of node selectors will be applied in conjunction with the node selectors set by [`tolerations.buildPool`](self-hosted/helm-configuration.mdx#tolerations) until deprecation of `tolerations.buildPool`. If not set, the buildkit Pods will inherit the node selectors dictionary set in [`globals.nodeSelectors.okteto`](self-hosted/helm-configuration.mdx#globals). +- `network.mode`: Controls the networking environment for containers during the build process. Defaults to `auto` but can be set to `host`, `none`, or `bridge`. Bridge mode can be useful for preventing port collisions in concurrent builds by isolating network environments. ```yaml buildkit: