The Red Hat Ecosystem Catalog is the official source for discovering and learning more about the Red Hat Ecosystem of both Red Hat and certified third-party products and services.
We’re the world’s leading provider of enterprise open source solutions—including Linux, cloud, container, and Kubernetes. We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.
This repository contains an im✻PACT Marketplace Service OpenShift image for the amd64 platform. This image includes all the core business services that receive, process, and store marketplace digital products.
The following information was extracted from the dockerfile and other sources.
| Canonical image ID | im*PACT Marketplace Service |
| Summary | This is the primary service used by the IMPACT marketplace. |
| Description | Platform for running plain Java applications (fat-jar and flat classpath) |
| Provider | MyKongsi Sdn Bhd |
| Maintainer | MYKONGSI SDN BHD |
| Repository name | IMPACT |
| Image version | 1.0.0-build-1328 |
| Architecture | amd64 |
| Usage | https://rh-openjdk.github.io/redhat-openjdk-containers/ |
The following evidence verifies the image's security and build process compliance with mandated internal standards.
| Security audit date | 2/28/2026, 5:19:36 PM |
| Container certification |
This is a component image and is not recommended to be pulled individually. It is currently available only for selected users for development purposes. If you are looking for the im✻PACT product, please visit our website for more information.
First, you will need to add a reference to the appropriate secret and repository to your Kubernetes pod configuration via an imagePullSecrets field.
apiVersion: v1
kind: Pod
metadata:
name: {POD-NAME}
namespace: {TARGET-NAMESPACE or all}
spec:
containers:
- name: marketplace-service
image: registry-docker.imstar.io/marketplace-service
imagePullSecrets:
- name: {PULL-SECRET-NAME}
Then, use the following from the command line or from the OpenShift Dashboard GUI interface.
oc import-image impact/marketplace-service:{version} --from=registry-docker.imstar.io/marketplace-service:{version} --confirm
Use the following command(s) from a system with podman installed
podman login registry-docker.imstar.io
Username: {REGISTRY-SERVICE-ACCOUNT-USERNAME}
Password: {REGISTRY-SERVICE-ACCOUNT-PASSWORD}
Login Succeeded!
podman pull registry-docker.imstar.io/marketplace-service:{version}
Use the following command(s) from a system with docker service installed and running
docker login registry-docker.imstar.io
Username: {REGISTRY-SERVICE-ACCOUNT-USERNAME}
Password: {REGISTRY-SERVICE-ACCOUNT-PASSWORD}
Login Succeeded!
docker pull registry-docker.imstar.io/marketplace-service:{version}