Skip to content

Commit

Permalink
updated upgrading.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jamie zieziula committed Feb 25, 2025
1 parent fd6c450 commit 4ba2064
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions charts/prefect-worker/UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
...
Expand All @@ -20,10 +28,12 @@ worker:
worker:
apiConfig: selfHostedServer
selfHostedServerApiConfig:
...
basicAuth:
...
```
### Self Managed Cloud Configuration
**Before**
```yaml
Expand Down

0 comments on commit 4ba2064

Please sign in to comment.