update kubeflow dip-catalog

This commit is contained in:
ChanghoWoo
2025-01-13 02:31:27 +00:00
parent 1dc1181a03
commit 5451f16d72
1959 changed files with 602337 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
# 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.