Skip to content

Offline upgrade Insight

This page explains how to install or upgrade Insight after downloading it from Download Center.

Info

The word insight appearing in the following commands or scripts is the internal development codename of the observability module.

Decompression

tar -xvf insight_v0.25.3_amd64.tar

After decompression, two bundle packages can be obtained, namely insight and insight agent.

$ ll insight_v0.25.3_amd64
总用量 2899996
-rw-r--r-- 1 root root 2367463936 4月   2 18:36 insight_0.25.3.bundle.tar
-rw-r--r-- 1 root root  602125824 4月   2 18:35 insight-agent_0.25.3.bundle.tar

Load the image from the installation package

You can load the image in one of the following two ways. When there is a container registry in the environment, it is recommended to select chart-syncer to synchronize the image to the container registry. This method is more efficient and convenient. Please note that the version of charts-syncer should be greater than or equal to 0.0.22.

chart-syncer synchronously images to the container registry

  1. Create load-image.yaml

    Note

    All parameters in this YAML file are required. You need a private container registry and modify related configurations.

    If the current environment has installed the HARBOR chart repo, chart-syncer also supports exporting the chart as a tgz file.

    source:
      intermediateBundlesPath: insight-offline 
    target:
      containerPrefixRegistry: 10.16.10.111 
      appendOriginRegistry: true
      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 current environment has installed the CHARTMUSEUM chart repo, chart-syncer also supports exporting the chart as a tgz file.

    source:
      intermediateBundlesPath: insight-offline 
    target:
      containerPrefixRegistry: 10.16.10.111 
      appendOriginRegistry: true
      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, chart-syncer also supports exporting the chart as a tgz file and storing it in the specified path.

    source:
      intermediateBundlesPath: insight-offline 
    target:
      containerPrefixRegistry: 10.16.10.111 
      repo:
        kind: LOCAL
        path: ./local-repo 
      containers:
        auth:
          username: "admin" 
          password: "Harbor12345" 
    
  2. Run the synchronous imageing command.

    charts-syncer sync --config load-image.yaml --insecure
    

Docker or containerd direct loading

Unzip and load the image file.

  1. Unzip the tar archive.

    tar -xvf insight_0.25.3.bundle.tar
    

    After successful decompression, you will get 3 files:

    • hints.yaml
    • images.tar
    • original-chart
  2. Load the image locally to Docker or containerd.

    docker load -i images.tar
    
    ctr -n k8s.io image import images.tar
    

Note

Each node needs to perform Docker or containerd loading image operation. After the loading is complete, the tag image is required to keep the Registry and Repository consistent with the installation.

upgrade

There are two ways to upgrade. You can choose the corresponding upgrade plan according to the pre-operations. Before upgrading, please pay attention to the "Upgrade-note"

  1. Check whether the Insight helm repository exists.

    helm repo list | grep insight
    

    If the returned result is empty or as prompted, proceed to the next step; otherwise, skip the next step.

    Error: no repositories to show
    
  2. Add the Insight helm repository.

    helm repo add insight http://{harbor url}/chartrepo/{project} --insecure-skip-tls-verify
    
  3. Update the globally managed helm repository.

    helm repo update insight 
    
  4. Select the version of Insight you want to install (the latest version is recommended).

    helm search repo insight/insight --versions
    helm search repo insight/insight-agent --versions
    
    [root@master ~]# helm search repo insight/insight --versions
    NAME                 CHART VERSION  APP VERSION  DESCRIPTION
    insight/insight        0.25.3         0.25.3       A Helm chart for Insight
    insight/insight-agent  0.25.3         0.25.3       A Helm chart for Insight Agent
    ...
    
  5. Back up the --set parameter.

    Before upgrading the Insight version, it is recommended that you run the following command to back up the --set parameter of the old version.

    helm get values insight -n insight-system -o yaml > insight.yaml
    helm get values insight-agent -n insight-system -o yaml > insight-agent.yaml
    
  6. Run helm upgrade .

    helm upgrade insight insight/insight \
      -n insight-system \
      -f ./insight.yaml \
      --version 0.25.3
    

    as well as

    helm upgrade insight-agent insight/insight-agent \
      -n insight-system \
      -f ./insight-agent.yaml \
      --version 0.25.3
    
  1. Back up the --set parameter.

    Before upgrading the Insight version, it is recommended that you run the following command to back up the --set parameter of the old version.

    helm get values insight -n insight-system -o yaml > insight.yaml
    
  2. Run helm upgrade .

    Before upgrading, it is recommended that you overwrite global.imageRegistry in bak.yaml to the address of the current container registry.

    export imageRegistry={your image registry}
    
    helm upgrade insight . \
      -n insight-system \
      -f ./insight.yaml \
      --set global.imageRegistry=$imageRegistry
    

    as well as

    helm upgrade insight-agent . \
      -n insight-system \
      -f ./insight-agent.yaml \
      --set global.imageRegistry=$imageRegistry
    

Comments