Offline Upgrade of Cloud Native Network¶
The modules in DCE 5.0 are loosely coupled, allowing for independent installation and upgrading of each module. This document provides instructions for offline upgrading of the cloud native network module Spidernet.
Spidernet is a cloud native network management engine that primarily manages functionalities such as Spidernet, Multus CR, and Egress IP.
Load images from the downloaded installation Package¶
You can load the images in one of the following two ways. When an image repository exists in the environment, it is recommended to use chart-syncer to synchronize the images to the image repository, as it is more efficient and convenient.
Method 1: synchronize images using chart-syncer¶
Using chart-syncer, you can upload the charts and their dependent image packages from the downloaded package to the image repository and helm repository used by the installer when deploying DCE.
First, find a node (e.g., Spark Node) that can connect to the image repository and helm repository. Create a load-image.yaml configuration file on the node and fill in the configuration information for the image repository and helm repository.
-
Create load-image.yaml
Note
All parameters in this YAML file are required.
If the chart repo is already installed in the current environment, chart-syncer also supports exporting charts as tgz files.
load-image.yamlsource: intermediateBundlesPath: spidernet-offline # (1)! target: containerRegistry: 10.16.23.145 # (2)! containerRepository: release.daocloud.io/spidernet # (3)! repo: kind: HARBOR # (4)! url: http://10.16.23.145/chartrepo/release.daocloud.io # (5)! auth: username: "admin" # (6)! password: "Harbor12345" # (7)! containers: auth: username: "admin" # (8)! password: "Harbor12345" # (9)!
- Path where the load-image.yaml file is executed on the node
- Image repository address
- Image repository path
- Helm Chart repository type
- Helm repository address
- Image repository username
- Image repository password
- Helm repository username
- Helm repository password
If the helm repo is not added on the current node, chart-syncer also supports exporting charts as tgz files and storing them in the specified path.
load-image.yamlsource: intermediateBundlesPath: spidernet-offline # (1)! target: containerRegistry: 10.16.23.145 # (2)! containerRepository: release.daocloud.io/spidernet # (3)! repo: kind: LOCAL path: ./local-repo # (4)! containers: auth: username: "admin" # (5)! password: "Harbor12345" # (6)!
- Path where the load-image.yaml file is executed on the node
- Image repository url
- Image repository path
- Local path of the chart
- Image repository username
- Image repository password
-
Run the image synchronization command.
Method 2: load images using Docker or containerd¶
Unpack and load the image files.
-
Unpack the tar compressed file.
After successful unpacking, you will get 3 files:
- hints.yaml
- images.tar
- original-chart
-
Load the images from the local file to Docker or containerd.
Note
Each node needs to perform the Docker or containerd image loading operation. After loading is complete, tag the images to keep the Registry and Repository consistent with the installation.
Upgrade¶
There are two ways to upgrade. You can choose the corresponding upgrade method based on the pre-operation:
-
Check if the network engine's helm repository exists.
If the result is empty or displays the following prompt, proceed to the next step; otherwise, skip the next step.
-
Add the network engine's helm repository.
-
Update the network engine's helm repository.
-
In case of a failure during the upgrade process due to an outdated Helm version, please attempt to resolve the issue by executing the command of helm update repo.
-
Select the version of the network module you want to install (it is recommended to install the latest version).
-
Backup the
--set
parameters.Before upgrading the network module, it is recommended to run the following command to backup the
--set
parameters of the old version. -
Run
helm upgrade
。Before upgrading, it is recommended to replace the fields
spidernet.image.registry
andui.image.registry
in bak.yaml with the image repository address you are currently using.
-
Backup the
--set
parameters.Before upgrading the container management module, it is recommended to run the following command to backup the
--set
parameters of the old version. -
Run
helm upgrade
。Before upgrading, it is recommended to replace the fields
spidernet.image.registry
andui.image.registry
in bak.yaml with the image repository address you are currently using.