LogoLogo
Kadeck DocumentationSubmit Ticket
  • Platform overview
  • Deployment
  • API Reference
  • Platform updates
  • Introduction
  • Context & Scope
  • Interoperability & Network
  • System Requirements
  • Configuration List
  • Deployments
    • Overview
    • Basic Setup
    • Advanced Setup
    • Automated Deployment
    • Identity Provider Integration
    • License Activation Scenarios
  • FAQs
    • How do I create a certificate and keystore?
  • How do I access the container images?
  • How to make container images offline available?
  • How do I configure the memory for Portal?

Legal

  • Legal Notice
  • Privacy Policy

© 2025 Xeotek Inc. and its affiliates

On this page
  • How to authenticate and pull the images
  • Kubernetes or OpenShift Integration

Was this helpful?

Export as PDF

How do I access the container images?

Data Streamhouse runs in secure environments such as large corporations and government agencies. For security reasons, direct access to container images is restricted and not publicly available.

To request access, please contact your designated representative at Xeotek. Public distribution of the images is not permitted.

How to authenticate and pull the images

Once you have received your credentials from Xeotek, authenticate with the Docker registry:

docker login

You will be prompted for:

  • Username (provided by Xeotek)

  • Password (your PAT - provided by Xeotek)

After authentication, you can pull images:

docker pull xeotek/datastreamhouse:<component>-<version>

Example:

docker pull xeotek/datastreamhouse:portal-1.0.0

Each image is tagged with its specific component and version.


Kubernetes or OpenShift Integration

When deploying in Kubernetes or OpenShift, create an image pull secret:

kubectl create secret docker-registry dsh-registry-secret \
  --docker-server=https://index.docker.io/v1/ \
  --docker-username=<your-username> \
  --docker-password=<your-password> \
  --namespace=<your-namespace>

Reference the secret correctly in your custom Helm values or deployment YAML:

image:
  imagePullSecrets:
    - name: dsh-registry-secret

Note: Always scope the secret to the correct namespace where Data Streamhouse components are deployed.

PreviousHow do I create a certificate and keystore?NextHow to make container images offline available?

Last updated 1 month ago

Was this helpful?