Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Cloud Stackland
  • What's new
  • Installation
    • All tutorials
    • Installing Stackland on Yandex BareMetal
    • Setting up external access to a pod in a cluster
    • All guides
      • Pulling images
      • Enabling DataLens
      • Disabling DataLens
    • Projects
    • Resource model
  • Access management
  • Pricing policy
  • Diagnostics and troubleshooting

In this article:

  • Getting started
  • Cluster with internet access
  • Air-gapped cluster
  • Downloading images on an internet-connected machine
  • Transferring artifacts into the internal infrastructure
  • Pushing images to the local registry
  • What's next
  1. Step-by-step guides
  2. DataLens
  3. Pulling images

Uploading DataLens images

Written by
Yandex Cloud
Updated at April 8, 2026
  • Getting started
  • Cluster with internet access
  • Air-gapped cluster
    • Downloading images on an internet-connected machine
    • Transferring artifacts into the internal infrastructure
    • Pushing images to the local registry
  • What's next

The basic Stackland package does not include DataLens images. Make sure to upload the images to the cluster before activating the component.

Getting startedGetting started

  1. Make sure the cluster service account can access licensed images in the container registry.
  2. Download the latest sladm version as described in our Installation guide.

Cluster with internet accessCluster with internet access

If your cluster has internet access, pull the DataLens images directly from the container registry:

sladm pull \
  --image-bundle datalens \
  --config config/

Where:

  • --image-bundle: Component name. To pull DataLens images, specify datalens.
  • --config: Configuration file path.

The command will create a directory with container images in OCI format.

Air-gapped clusterAir-gapped cluster

If the cluster has no internet access, pull the images to an internet-connected machine, transfer them into the internal infrastructure, and then push them to the cluster’s local registry.

Downloading images on an internet-connected machineDownloading images on an internet-connected machine

On an internet-connected machine, run this command:

sladm pull \
  --image-bundle datalens \
  --config config/

Transferring artifacts into the internal infrastructureTransferring artifacts into the internal infrastructure

Transfer the following to a machine with cluster access:

  • Directory with container images in OCI format.
  • Binary file named sladm.

The transfer method depends on the security policies in your organization: removable media, secure file storage systems, or isolated network segments.

Warning

Make sure the target machine has enough free space to store all artifacts.

Pushing images to the local registryPushing images to the local registry

On a machine with cluster access, run this command:

sladm push \
  --local-registry \
  --kubeconfig=<kubeconfig_path> \
  --image-bundle-folder <path_to_directory_with_images>

Where:

  • --local-registry: Indicates the use of the cluster’s local registry.
  • --kubeconfig: Path to the kubeconfig file for access to the cluster.
  • --image-bundle-folder: Path to the directory with container images.

What's nextWhat's next

  • Activate DataLens: Set up and activate DataLens in your cluster.

Was the article helpful?

Previous
Creating an alert rule
Next
Enabling DataLens
© 2026 Direct Cursus Technology L.L.C.