Offline Upgrade¶
The Workbench supports offline upgrades. You need to first load the image from the installation package and then run the corresponding command to upgrade.
After unpacking, you will get a compressed bundle: amamba_x.y.z.bundle.tar
Load Image from Installation Package¶
Support loading images in two ways.
Sync Images via charts-syncer¶
If there is an image repository in the environment, it is recommended to synchronize the images to the image repository through charts-syncer for more efficient and convenient operation.
-
Create
load-image.yaml
with the following content as the configuration file for charts-syncer.All parameters in the
load-image.yaml
file are required. You need a private image repository and refer to the following instructions to modify each configuration. For detailed explanation of the charts-syncer configuration file, refer to its official documentation.If the HARBOR chart repo is already installed in the environment, charts-syncer also supports exporting the chart as a tgz file.
load-image.yamlsource: intermediateBundlesPath: amamba-offline target: containerPrefixRegistry: 10.16.10.111 repo: kind: HARBOR url: http://10.16.10.111/chartrepo/release.daocloud.io auth: username: "admin" password: "Harbor12345" containers: auth: username: "admin" password: "Harbor12345"
If the CHARTMUSEUM chart repo is already installed in the environment, charts-syncer also supports exporting the chart as a tgz file.
load-image.yamlsource: intermediateBundlesPath: amamba-offline target: containerPrefixRegistry: 10.16.10.111 repo: kind: CHARTMUSEUM url: http://10.16.10.111 auth: username: "rootuser" password: "rootpass123" containers: auth: username: "rootuser" password: "rootpass123"
If the chart repo is not installed in the current environment, charts-syncer also supports exporting the chart as a
tgz
file and storing it in a specified path.source: intermediateBundlesPath: amamba-offline target: containerRegistry: 10.16.23.145 containerRepository: release.daocloud.io/amamba repo: kind: LOCAL path: ./local-repo containers: auth: username: "admin" password: "Harbor12345"
-
Place amamba_x.y.z.bundle.tar in the amamba-offline folder.
-
Run the command to sync images.
Load Images Directly via Docker or containerd¶
-
Unpack the
tar
compressed bundle.After successful unpacking, you will get 3 files:
- hints.yaml
- images.tar
- original-chart
-
Run the following command to load the images from the local to Docker or containerd.
Note
- Images need to be loaded via Docker or containerd on each node.
- After loading, the images need to be tagged to match the Registry, Repository, and installation consistency.
Upgrade¶
-
Check if the Workbench helm repository exists.
If the result is empty or shows the following message, proceed to the next step; otherwise, skip the next step.
-
Add the helm repository for Workbench.
-
Update the helm repository for Workbench.
-
Choose the version of the Workbench you want to install (recommended to install the latest version).
NAME CHART VERSION APP VERSION DESCRIPTION amamba-release/amamba 0.24.0 0.24.0 Amamba is the entrypoint to DCE5.0, provides de... amamba-release/amamba 0.23.0 0.23.0 Amamba is the entrypoint to DCE5.0, provides de... amamba-release/amamba 0.22.1 0.22.1 Amamba is the entrypoint to DCE5.0, provides de... amamba-release/amamba 0.22.0 0.22.0 Amamba is the entrypoint to DCE5.0, provides de... amamba-release/amamba 0.21.2 0.21.2 Amamba is the entrypoint to DCE5.0, provides de... amamba-release/amamba 0.21.1 0.21.1 Amamba is the entrypoint to DCE5.0, provides de... amamba-release/amamba 0.21.0 0.21.0 Amamba is the entrypoint to DCE5.0, provides de... ...
-
Back up the
--set
parameters.Before upgrading the Workbench version, it is recommended to run the following command to back up the
--set
parameters of the old version. -
Run
helm upgrade
.Before upgrading, it is recommended to overwrite the
global.imageRegistry
field in bak.yaml with the current image repository address.
-
Prepare the
original-chart
(obtained by unpacking amamba_x.y.z.bundle.tar). -
Back up the
--set
parameters.Before upgrading the Workbench version, it is recommended to run the following command to back up the
--set
parameters of the old version. -
Run
helm upgrade
.Before upgrading, it is recommended to overwrite the
global.imageRegistry
field in bak.yaml with the current image repository address.