Make sure to first run helm repo update again to have the latest version of the Helm chart available.
Download the latest agent helm chart like this:
helmpullstackstate/stackstate-k8s-agent
This results in a file like this stackstate-k8s-agent-1.0.30.tgz. Copy this file (using scp, sftp or any other tool available) to the system from which the agent will be installed.
Copy agent Docker images
Make sure to first run helm repo update again to have the latest version of the Helm chart available.
The script can copy images directly from StackState's Quay.io registry to your internal registry. If the internal registry isn't accessible from a computer that has direct internet access an intermediate step is needed.
To copy the images directly from the StackState registry to the internal registry run the script like this to copy the images to the registry at registry.acme.com:5000:
The environment variables are used to setup authentication. If the destination registry doesn't require authentication the DST_REGISTRY_* variables can be omitted.
The script extracts all images from the Helm chart and copies the images to the local registry. Depending on the speed of the internet connection this might take a while.
When it's impossible to directly copy the images to the internal registry the images can be listed using the copy_images.sh script. The best way to download, re-tag, and copy the images to the internal registry depends on the exact circumstances.
Here is an example way of working that uses the copy_images.sh script to produce a list of images and then uses bash scripting to download, re-tag and upload all images. Depending on the exact situation this may need be adapted.
# Produce a list of all StackState images in the stackstate_agent_images.txt fileSTS_REGISTRY_USERNAME=noop STS_REGISTRY_PASSWORD=noop ./copy_images.sh -t -d noop | cut -d' ' -f2 > stackstate_agent_images.txt
# Authenticate to the StackState quay.io repositories using the credentials provided by StackStatedockerloginquay.io# Save all images to the local file systemmkdiragent_imageswhilereadimage; do name=$(echo"$image"|cut-d'/'-f3)dockerpull--platformlinux/amd64"$image"dockersave"$image"-o"agent_images/${name}.tar"done< stackstate_agent_images.txt# Now copy images to the air-gapped environment, for example using scp or sftp. Also copy the stackstate_agent_images.txt file
# On a computer inside the air-gapped environment load, re-tag and push the images, this uses registry.acme.com:5000 as the internal registry
whilereadimage; do name=$(echo"$image"|cut-d'/'-f3) target_image="registry.acme.com:5000/stackstate/$name"dockerload-i"agent_images/${name}.tar"dockertag"$image""$target_image"dockerpush"$target_image"done< stackstate_agent_images.txt
Customize the Helm command
The StackState UI provides the exact commands to install the agent depending on the distribution but it assumes the internet is accessible. For air-gapped installations the command needs to be extended to use the local copy of the helm chart and to override the docker registry with the local registry. If the local docker registry requires authentication a custom image pull secret can be provided.
This example uses the command for the standard Kubernetes distribution to show how to use a local copy of the Helm chart and add the extra registry argument. Please make sure to use the command that corresponds with your Kubernetes distribution as provided in the StackState UI and apply the same modifications (this example uses registry.acme.com:5000 as the registry).
This command isn't the right command for your Kubernetes cluster. Instead, copy the command for your Kubernetes distribution from the installed Kubernetes StackPack in the UI. Then replace stackstate-k8s/stackstate with the .tgz file and add the image registry argument.
Replacing stackstate/stackstate-k8s-agent to reference the Helm chart with the Helm chart filename ./stackstate-k8s-agent-1.0.30.tgz
This example uses the command for the standard Kubernetes distribution to show how to use a local copy of the Helm chart and add the extra registry argument. Please make sure to use the command that corresponds with your Kubernetes distribution as provided in the StackState UI and apply the same modifications (this example uses registry.acme.com:5000 as the registry):
This command isn't the right command for your Kubernetes cluster. Instead, copy the command for your Kubernetes distribution from the installed Kubernetes StackPack in the UI. Then replace stackstate-k8s/stackstate with the .tgz file and add the image registry and pull secret arguments.