34 lines
886 B
Markdown
34 lines
886 B
Markdown
# Upgrading Documentation
|
|
|
|
## Updating manifests
|
|
|
|
In order to update manifests make sure you are running the commands in linux.
|
|
|
|
If you are running in another OS, please make sure to update the Makefile commands.
|
|
|
|
You can refresh the configuration by running:
|
|
|
|
```
|
|
make seldon-core-operator/base
|
|
```
|
|
|
|
## Updating to specific version
|
|
|
|
Upgrading the version can be done by setting the `SELDON_VERSION` environment variable, such as:
|
|
|
|
```
|
|
# Set the desired version
|
|
export SELDON_VERSION=1.14.0
|
|
|
|
# Rebuild the kustomize base
|
|
make seldon-core-operator/base
|
|
|
|
# Run new manifests against cluster
|
|
kustomize build seldon-core-operator/base | kubectl apply -f -
|
|
```
|
|
|
|
## Instructions for breaking changes
|
|
|
|
The [core upgrading docs](https://docs.seldon.io/projects/seldon-core/en/latest/reference/upgrading.html.) provide step by step overview of breaking changes across minor and patch versions.
|
|
|