From 4ba2064ab03f35e098d0d91b550cf3cdfe38b04a Mon Sep 17 00:00:00 2001 From: jamie zieziula Date: Mon, 24 Feb 2025 21:09:39 -0500 Subject: [PATCH] updated upgrading.md --- charts/prefect-worker/UPGRADING.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/charts/prefect-worker/UPGRADING.md b/charts/prefect-worker/UPGRADING.md index 8021669c..8637b448 100644 --- a/charts/prefect-worker/UPGRADING.md +++ b/charts/prefect-worker/UPGRADING.md @@ -2,13 +2,21 @@ ## > TBD -After version TBD, the `prefect-worker` chart renamed the `server` key to `selfHostedServer`. Also, the allowed values for the `apiConfig` key changed from `cloud`, `server`, or `selfManaged` to `cloud`, `selfManagedCloud`, or `selfHostedServer`. +After version TBD, there have been several breaking changes to the `prefect-worker` chart: +- The allowed values for the `apiConfig` key changed from `cloud`, `server`, or `selfManaged` to `cloud`, `selfHostedServer`, and `selfManagedCloud`. +- `.Values.worker.server` => `.Values.worker.selfHostedServerApiConfig` +- `.Values.worker.basicAuth` => `.Values.worker.selfHostedServerApiConfig.basicAuth` + +### Adjusting Your Configuration + +#### Self Hosted Server Configuration -### Self Hosted Server Configuration **Before** ```yaml worker: + basicAuth: + ... apiConfig: server server: ... @@ -20,10 +28,12 @@ worker: worker: apiConfig: selfHostedServer selfHostedServerApiConfig: - ... + basicAuth: + ... ``` ### Self Managed Cloud Configuration + **Before** ```yaml