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 Scheduler OpenShift image for the amd64 platform. The image processes all core business activities in the background or on a periodic basis.
The following information was extracted from the containerfile and other sources.
| Summary | This is the primary service used by im✻PACT to run background jobs and services. |
| Description | Platform for running plain Java applications (fat-jar and flat classpath) |
| Provider | MyKongsi Sdn Bhd |
| Maintainer | MYKONGSI SDN BHD |
The following information was extracted from the containerfile and other sources.
| Repository name | im✻PACT |
| Image version | 1.0.0-build-462 |
| Architecture | amd64 |
| Usage | https://jboss-container-images.github.io/openjdk/ |
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: impact-scheduler
image: registry-docker.imstar.io/impact-scheduler
imagePullSecrets:
- name: {PULL-SECRET-NAME}
Then, use the following from the command line or from the OpenShift Dashboard GUI interface.
oc import-image impact/impact-scheduler:{version} --from=registry-docker.imstar.io/impact-scheduler:{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/impact-scheduler:{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/impact-scheduler:{version}