Skip to main content
Skip table of contents

Pre-provisioned Loading the Registry

The complete DKP air-gapped bundle is needed for an air-gapped environment but can also be used in a non-air-gapped environment. The bundle contains all the DKP components needed for an air-gapped environment installation and also to use a local registry in a non-air-gapped environment.

Extract Air-gapped Images

Follow these steps to extract the air-gapped image bundles into your private registry.

If you are operating in an air-gapped environment, a local container registry containing all the necessary installation images, including the Kommander images is required. See below for prerequisites to download and then how to push the necessary images to this registry.

  1. Download the Complete DKP Air-gapped Bundle for this release (i.e. dkp-air-gapped-bundle_v2.8.1_linux_amd64.tar.gz) to load registry images as explained below.

  2. Connectivity with clusters attaching to the management cluster is required:

    • Both management and attached clusters must be able to connect to the local registry.

    • The management cluster must be able to connect to all attached cluster’s API servers.

    • The management cluster must be able to connect to any load balancers created for platform services on the management cluster.

Load the Bootstrap Image

  1. Assuming you have downloaded dkp-air-gapped-bundle_v2.8.0_linux_amd64.tar.gz from the download site mentioned above, extract the tarball to a local directory:

    CODE
    tar -xzvf dkp-air-gapped-bundle_v2.8.0_linux_amd64.tar.gz
EXAMPLE directory structure after extraction:
CODE
dkp-v2.8.0/
├── application-charts
│   ├── NOTICES.txt
│   ├── dkp-catalog-applications-charts-bundle-v2.8.0-rc.2.tar.gz
│   ├── dkp-insights-charts-bundle-v2.8.0-rc.2.tar.gz
│   └── dkp-kommander-charts-bundle-v2.8.0-rc.2.tar.gz
├── application-repositories
│   ├── dkp-catalog-applications-v2.8.0-rc.2.tar.gz
│   ├── dkp-insights-v2.8.0-rc.2.tar.gz
│   └── kommander-applications-v2.8.0-rc.2.tar.gz
├── container-images
│   ├── NOTICES.txt
│   ├── dkp-catalog-applications-image-bundle-v2.8.0-rc.2.tar
│   ├── dkp-insights-image-bundle-v2.8.0-rc.2.tar
│   ├── kommander-image-bundle-v2.8.0-rc.2.tar
│   └── konvoy-image-bundle-v2.8.0-rc.2.tar
├── dkp
├── kib
│   ├── LICENSE
│   ├── README.md
│   ├── ansible
│   ├── artifacts
│   ├── goss
│   ├── images
│   ├── konvoy-image
│   └── overrides
├── konvoy-bootstrap-image-v2.8.0-rc.2.tar
└── kubectl
  1. The directory structure after extraction can be accessed in subsequent steps using commands to access files from different directories. For the bootstrap, change your directory to the dkp-<version> directory similar to example below depending on your current location:

    CODE
    cd dkp-v2.8.0
  2. Load the bootstrap container image on your bastion machine replacing docker with podman if needed:

    CODE
    docker load -i konvoy-bootstrap-image-v2.8.0.tar

Set Environment Variables

  1. Set an environment variable with your registry address:

    CODE
    export REGISTRY_URL="<https/http>://<registry-address>:<registry-port>"
    • REGISTRY_URL: the address of an existing local registry accessible in the VPC that the new cluster nodes will be configured to use a mirror registry when pulling images.

More Registry Variables:

More environment variables if needed:

CODE
export REGISTRY_USERNAME=<username>
export REGISTRY_PASSWORD=<password>
export REGISTRY_CA=<path to the cacert file on the bastion>

Load Images to your Private Registry - Konvoy

Before creating or upgrading a Kubernetes cluster, you need to load the required images in a local registry if operating in an air-gapped environment. This registry must be accessible from both the bastion machine and either the AWS EC2 instances or other machines that will be created for the Kubernetes cluster.

If you do not already have a local registry set up, refer to Local Registry Tools page for more information.

Execute the following command to load the air-gapped image bundle into your private registry:

CODE
dkp push bundle --bundle ./container-images/konvoy-image-bundle-v2.8.1.tar --to-registry=${REGISTRY_URL} --to-registry-username=${REGISTRY_USERNAME} --to-registry-password=${REGISTRY_PASSWORD}

It may take some time to push all the images to your image registry, depending on the performance of the network between the machine you are running the script on and the registry.

Load Images to your Private Registry - Kommander

Load Kommander images to your Private Registry

For the air-gapped kommander image bundle, run the command below:

Run the following command to load the image bundle:

CODE
dkp push bundle --bundle ./container-images/kommander-image-bundle-v2.8.1.tar --to-registry=${REGISTRY_URL} --to-registry-username=${REGISTRY_USERNAME} --to-registry-password=${REGISTRY_PASSWORD}

Load Images to your Private Registry - DKP Catalog Applications

Optional: This step is required only if you have an Enterprise license.

For DKP Catalog Applications, also perform this image load:

Run the following command to load the dkp-catalog-applications image bundle into your private registry:

CODE
dkp push bundle --bundle ./container-images/dkp-catalog-applications-image-bundle-v2.8.1.tar --to-registry=${REGISTRY_URL} --to-registry-username=${REGISTRY_USERNAME} --to-registry-password=${REGISTRY_PASSWORD}

Next Step

If applicable for special Azure considerations, refer to this section also:

Otherwise, proceed to Pre-provisioned Cluster Creation Customization Choices

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.