docs(nx-cloud): add release notes (#30611)

<!-- Please make sure you have read the submission guidelines before
posting an PR -->
<!--
https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr
-->

<!-- Please make sure that your commit message follows our format -->
<!-- Example: `fix(nx): must begin with lowercase` -->

<!-- If this is a particularly complex change or feature addition, you
can request a dedicated Nx release for this pull request branch. Mention
someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they
will confirm if the PR warrants its own release for testing purposes,
and generate it for you if appropriate. -->

## Current Behavior
<!-- This is the behavior we have today -->

## Expected Behavior
<!-- This is the behavior we should expect with the changes in this PR
-->

## Related Issue(s)
<!-- Please link the issue being fixed so it gets closed when this is
merged. -->

Fixes #
This commit is contained in:
Rares Matei 2025-04-04 14:29:30 +01:00 committed by GitHub
parent 074da70ada
commit 4015d4cfe2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,30 @@
# Enterprise Release Notes # Enterprise Release Notes
### 2025.03.2
- Feat: Nx Agents "bundled executors"
- up until now, the "executor" binaries that run on each Nx Agent (and know how to parse your agents.yaml and run each step) had to be downloaded separately from an external bucket
- this made the on-prem upgrade process more difficult, as it required a separate step to download the executor and then upload it in the correct folder on an internally available repository
- now, the executors are available as Docker images that can be imported alongside all your other NxCloud images
- to get started:
- when upgrading to this version, make sure you also pull in the executor image `nxprivatecloud/nx-cloud-workflow-executor:2025.03.2`([link](https://hub.docker.com/repository/docker/nxprivatecloud/nx-cloud-workflow-executor/tags/2025.03.2/sha256-a42835a3126f21178af87f02b68d68fec1ff0654d37a57855a762c01e7795a6b))
- as part of your controller [args](https://github.com/nrwl/nx-cloud-helm/blob/main/charts/nx-agents/values.yaml#L76) pass this option:
```
args:
# pass the internal image registry where the pods can pull the executor images from
# for example: image-registry: us-east1-docker.pkg.dev/nxcloudoperations/nx-cloud-enterprise-public
image-registry=<registry-where-nxcloud-images-are-hosted>
# you can REMOVE the below option, as it's not needed anymore
# kube-unix-init-container-name=...
```
- you no longer need to upload the executor binary separately to a bucket
- now whenever you start your agent pods, they will load the above image and copy the executor from there
### 2025.03.1 ### 2025.03.1
- Fix: use custom "github URL" (if defined) when checking out the repo on Nx Agents - Fix: use custom "github URL" (if defined) when checking out the repo on Nx Agents