Start a Conversation

This post is more than 5 years old

Solved!

Go to Solution

1739

June 27th, 2019 01:00

Can we release an offline installation guide or package for CSI driver?

Dear Support,

You know there are some area has restrict network, it's very slow to pull image from repository or even no access to them. So can team develop an offline installation guide or offline package for CSI driver?

Even though I installed it, but I found most of issue are about network, waste to many time.

Thanks

2 Intern

 • 

166 Posts

June 28th, 2019 05:00

Hi Fan,

In every k8s infrastructure, you will need to have access to one or multiple container image registries.

If you need to push the Docker Hub image to a private network, one easy and manual way to is to :

1. Pull the official image with : docker pull dellemc/csi-vxflexos:v1.1.0 

2. Tag it to your new registry : docker tag docker.io/dellemc/csi-vxflexos:v1.1.0 my_private_repo:5000/csi-vxflexos:v1.1.0

2. Push it to your private registry : docker push my_private_repo:5000/csi-vxflexos:v1.1.0

3. Update the helm myvalues.yaml (which a copy of : https://github.com/dell/csi-vxflexos/blob/master/helm/csi-vxflexos/values.yaml#L52) to point to your private repo

 

HTH

 

 

1 Rookie

 • 

8 Posts

June 14th, 2023 03:00

In every k8s infrastructure, you will need to have access to one or multiple container image registries.

If you need to push the Docker Hub image to a private network, one easy and manual way to do it is as follows:

  1. Pull the official image with the following command:

    bashCopy code
    docker pull dellemc/csi-vxflexos:v1.1.0
  2. Tag it to your new registry using the docker tag command. Replace my_private_repo:5000 with the address of your private registry:

     
    docker tag docker.io/dellemc/csi-vxflexos:v1.1.0 my_private_repo:5000/csi-vxflexos:v1.1.0
  3. Push it to your private registry using the docker push command:

     
    docker push my_private_repo:5000/csi-vxflexos:v1.1.0

Best regards

No Events found!

Top