Skip to Main Content
Cloud Management and AIOps


This is an IBM Automation portal for Cloud Management, Technology Cost Management, Network Automation and AIOps products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).

Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.

Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

Status Submitted
Workspace Instana
Categories Agent
Created by Guest
Created on Feb 4, 2026

nstana Agent Operator: Missing Required Images, Incorrect Tag Usage, and No Offline Image Selection in Red Hat Certified Operator Catalog for Air‑Gapped OpenShift Environments

BWI reported that the Instana Agent Operator from the Red Hat Certified Operator Catalog cannot be deployed successfully in air‑gapped OpenShift environments due to several concrete technical issues. Two required container images are missing from the mirrored catalog for air‑gapped usage:

• icr.io/instana/k8sensor

• containers.instana.io/instana/release/agent/static

This blocks the Operator from functioning without manual intervention. Additionally, the Operator uses the latest tag for images, which is not available in mirrored air‑gapped registries and must be replaced with immutable digests. The Operator also lacks a configuration option in the InstanaAgent CR to explicitly select between online agent images and the offline/static agent images that air‑gapped clusters require. These gaps prevent customers from using the Operator in production air‑gapped environments.

Idea priority Urgent
  • Guest
    Mar 13, 2026

    This is weird as I've been able to install the agent and k8sensor with images served from my private repository and without using the "latest" tag for k8sensor


    Here my yaml describing custom resource InstanaAgent:

    apiVersion: instana.io/v1
    kind: InstanaAgent
    metadata:
    name: instana-agent
    namespace: instana-agent
    spec:
    zone:
    name: test
    cluster:
    name: kind
    agent:
    image:
    # Reference to a static agent image
    name: localhost:5001/instana/release/agent/static
    tag: 1.314.4
    pullSecrets:
    - name: local-registry-image-pull-secret
    key: <redacted>
    endpointHost: <redacted>
    endpointPort: "443"
    env: {}
    configuration_yaml: |
    # You can leave this empty, or use this to configure your instana agent.
    # See https://docs.instana.io/setup_and_manage/host_agent/on/kubernetes/
    k8s_sensor:
    image:
    # Reference to k8sensor
    name: localhost:5001/instana/k8sensor
    # Pinned version instead of 'latest'
    tag: 6d1be64

    Hope this helps, good luck!