Upgrading Spiderpool Versions
This document describes breaking changes, as well as how to fix them, that have occurred at given releases. Please consult the segments from your current release until now before upgrading your spiderpool.
Upgrade to 0.3.6 from (<=0.3.5)
Description
- There's a design flaw for SpiderSubnet feature in auto-created IPPool label.
The previous label
ipam.spidernet.io/owner-application
corresponding value uses '-' as separative sign. For example, we have deploymentns398-174835790/deploy398-82311862
and the corresponding label value isDeployment-ns398-174835790-deploy398-82311862
. It's very hard to unpack it to trace back what the application namespace and name is.
Now, we use '_' rather than '-' as slash for SpiderSubnet feature labelipam.spidernet.io/owner-application
, and the upper case will be likeDeployment_ns398-174835790_deploy398-82311862
.
Reference PR: #1162 - In order to support multiple interfaces with SpiderSubnet feature, we also add one more label for auto-created IPPool.
The key is
ipam.spidernet.io/interface
, and the value is the corresponding interface name.
Operation steps
-
Find all auto-created IPPools, their name format is
auto-${appKind}-${appNS}-${appName}-v${ipVersion}-${uid}
such asauto-deployment-default-demo-deploy-subnet-v4-69d041b98b41
. -
Replace their label, just like this:
kubectl patch sp ${auto-pool} --type merge --patch '{"metadata": {"labels": {"ipam.spidernet.io/owner-application": ${AppLabelValue}}}}'
-
Add one more label
kubectl patch sp ${auto-pool} --type merge --patch '{"metadata": {"labels": {"ipam.spidernet.io/interface": "eth0"}}}}'
-
Update your Spiderpool components version and restart them all.
Upgrade to 0.4.0 from (<0.4.0)
Description
Due to the architecture adjustment, the SpiderEndpoint.Status.OwnerControllerType property is changed from None
to Pod
.
Operation steps
-
Find all SpiderEndpoint objects that their Status OwnerControllerType is
None
-
Replace the subresource SpiderEndpoint.Status.OwnerControllerType property from
None
toPod