Last active
December 28, 2021 10:30
-
-
Save luckylittle/9d2f0e10db53c1fb31461e955c3a2ac4 to your computer and use it in GitHub Desktop.
Mirror OpenShift 4 images from Quay.io to the local Docker registry (for installations in highly secure offline environments)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo 'First you must get the pull-secret.txt from `https://cloud.redhat.com/openshift/install/pre-release` to the same directory where you run this from' | |
# Exports - required environment variables: | |
DEFAULT_OCPVERSION="4.4.3" | |
DEFAULT_ARCH="x86_64" | |
LOCAL_REPOSITORY="openshift/ocp${OCP_RELEASE}" | |
PRODUCT_REPO="openshift-release-dev" | |
LOCAL_SECRET_JSON="pull-secret.txt" | |
RELEASE_NAME="ocp-release" | |
# Set the OCP version: | |
if [ "$1" != "--silent" ]; then | |
printf "Enter OpenShift Version: (Press ENTER for default: ${DEFAULT_OCPVERSION})\n" | |
read -r OCPVERSION_CHOICE | |
if [ "${OCPVERSION_CHOICE}" != "" ]; then | |
DEFAULT_OCPVERSION=${OCPVERSION_CHOICE} | |
fi | |
fi | |
printf "* Using: ${DEFAULT_OCPVERSION}\n\n" | |
OCP_RELEASE="${DEFAULT_OCPVERSION}-${DEFAULT_ARCH}" | |
# Create a temporary folder 'ocp-images': | |
mkdir ocp-images | |
# This next step will download around 5.4 GB of data (20min @ 4.7MB/s) into the 'ocp-images' subfolder: | |
# Note: '--to-dir' must be absolute path, or manifest symlinks will be broken | |
oc adm -a ${LOCAL_SECRET_JSON} release mirror \ | |
--from=quay.io/${PRODUCT_REPO}/${RELEASE_NAME}:${OCP_RELEASE} \ | |
--to-dir=$(pwd)/ocp-images/ \ | |
--insecure=true | |
echo 'Transfer the folder 'ocp-images' to your target machine...' | |
echo 'Finished!' | |
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This is meant to be run from the machine that has 'ocp-images' folder from step 1 already transferred over. | |
# Run Docker registry locally: | |
mkdir -p ${HOME}/registry | |
sudo semanage fcontext -a -t container_file_t '/home/lmaly/registry(/.*)?' | |
restorecon -Rv ${HOME}/registry | |
podman run -d -p 5000:5000 --restart=always --name registry -v ${HOME}/registry:/var/lib/registry docker.io/library/registry:2 | |
# To upload local images created by '01-mirror-OCP4-images-to-dir.sh' to a local registry: | |
# Note: '--from-dir' is not working at the moment | |
# oc image mirror \ | |
# --from-dir=./ocp-images/ \ | |
# file://openshift/release:4.4.3* \ | |
# 127.0.0.1:5000/openshift-release-dev/ocp-release | |
export HTTP_PROXY=http://proxy:3128 | |
# Builds a catalog container image from a collection operator manifests: | |
oc adm catalog build \ | |
--appregistry-org redhat-operators \ | |
--from=registry.redhat.io/openshift4/ose-operator-registry:v4.4 \ | |
--filter-by-os="linux/amd64" \ | |
--to=127.0.0.1:5000/olm/redhat-operators:v1 \ | |
--insecure | |
# Mirrors the contents of a catalog into a registry: | |
oc adm catalog mirror \ | |
127.0.0.1:5000/olm/redhat-operators:v1 \ | |
127.0.0.1:5000 \ | |
--insecure \ | |
--filter-by-os="linux/amd64" | |
echo 'Generated redhat-operators-manifests/imageContentSourcePolicy.yaml and redhat-operators-manifests/mapping.txt' | |
# Copies the images and update payload for a given release from one registry to another: | |
oc adm release mirror \ | |
--from=quay.io/openshift-release-dev/ocp-release:4.4.3-x86_64 \ | |
--to=127.0.0.1:5000/openshift/ocp4.4.3-x86_64 \ | |
--to-release-image=127.0.0.1:5000/openshift/ocp4.4.3-x86_64:4.4.3-x86_64 \ | |
--insecure=true | |
while read line; do echo $line && oc image mirror $line --insecure=true; done < redhat-operators-manifests/mapping.txt >& oc-image-mirror.log | |
cat <<EOF | oc apply -f - | |
--- | |
apiVersion: operators.coreos.com/v1alpha1 | |
kind: CatalogSource | |
metadata: | |
name: my-redhat-operators-catalog | |
namespace: openshift-marketplace | |
spec: | |
sourceType: grpc | |
image: ${IP_ADDR_LOCAL_DOCKER_REGISTRY}/openshift/redhat-operators:v1 | |
displayName: My Red Hat Operator Catalog | |
publisher: grpc | |
EOF | |
echo 'Finished!' | |
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: operator.openshift.io/v1alpha1 | |
kind: ImageContentSourcePolicy | |
metadata: | |
name: redhat-operators | |
spec: | |
repositoryDigestMirrors: | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-controller-rhel8 | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-presto | |
source: registry.redhat.io/openshift4/ose-metering-presto | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/citadel-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/citadel-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-webhook-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-webhook-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-network-operator | |
source: registry.redhat.io/openshift4/ose-sriov-network-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-proxy-configurator | |
source: registry.redhat.io/amq7-tech-preview/amq-online-1-iot-proxy-configurator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/cnv-must-gather-rhel8 | |
source: registry.redhat.io/container-native-virtualization/cnv-must-gather-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-local-storage-diskmaker | |
source: registry.redhat.io/openshift4/ose-local-storage-diskmaker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-reporting-operator | |
source: registry.redhat.io/openshift4/ose-metering-reporting-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-ping-source-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-ping-source-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-network-config-daemon | |
source: registry.redhat.io/openshift4/ose-sriov-network-config-daemon | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-network-config-daemon | |
source: registry.redhat.io/openshift4/ose-sriov-network-config-daemon | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/drishti-cis-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/drishti-cis-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/cis-controller-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/cis-controller-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhdm-7/rhdm-controller-rhel8 | |
source: registry.redhat.io/rhdm-7/rhdm-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-registry-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-registry-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/citadel-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/citadel-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/theia-endpoint-rhel8 | |
source: registry.redhat.io/codeready-workspaces/theia-endpoint-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/server-rhel8 | |
source: registry.redhat.io/codeready-workspaces/server-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhscl/postgresql-96-rhel7 | |
source: registry.redhat.io/rhscl/postgresql-96-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/system-rhel7 | |
source: registry.redhat.io/3scale-amp2/system-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/cainjector-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/cainjector-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/img-minio-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/img-minio-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-hook-runner-rhel7 | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-hook-runner-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-kibana5 | |
source: registry.redhat.io/openshift4/ose-logging-kibana5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-template-service-broker | |
source: registry.redhat.io/openshift4/ose-template-service-broker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/serving-activator-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/serving-activator-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/pluginregistry-rhel8 | |
source: registry.redhat.io/codeready-workspaces/pluginregistry-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/jboss-eap-7/eap73-rhel8-operator | |
source: registry.redhat.io/jboss-eap-7/eap73-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-operator | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/hyperconverged-cluster-operator | |
source: registry.redhat.io/container-native-virtualization/hyperconverged-cluster-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-placementrule-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-operators-placementrule-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multiclusterhub-repo-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/multiclusterhub-repo-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-agent-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-agent-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-elasticsearch-operator | |
source: registry.redhat.io/openshift4/ose-elasticsearch-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-handler | |
source: registry.redhat.io/container-native-virtualization/virt-handler | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/ocs-rhel8-operator | |
source: registry.redhat.io/ocs4/ocs-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-subscription-rhel8-operator | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-operators-subscription-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/console-api-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/console-api-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-clusterresourceoverride-rhel7 | |
source: registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/crw-2-rhel8-operator | |
source: registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/datagrid/datagrid-8-rhel8-operator | |
source: registry.redhat.io/datagrid/datagrid-8-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-businesscentral-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-businesscentral-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-velero-rhel8 | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-velero-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/theia-rhel8 | |
source: registry.redhat.io/codeready-workspaces/theia-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/rook-ceph-rhel8-operator | |
source: registry.redhat.io/ocs4/rook-ceph-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/quay/quay-openshift-bridge-rhel8-operator | |
source: registry.redhat.io/quay/quay-openshift-bridge-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-cni | |
source: registry.redhat.io/openshift4/ose-sriov-cni | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/mcm-topology-api-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/mcm-topology-api-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam74-operator | |
source: registry.redhat.io/rhpam-7/rhpam74-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift3/ose-cli | |
source: registry.redhat.io/openshift3/ose-cli | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-local-storage-static-provisioner | |
source: registry.redhat.io/openshift4/ose-local-storage-static-provisioner | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/mixer-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/mixer-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-rhel7-operator | |
source: registry.redhat.io/distributed-tracing/jaeger-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-query-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-query-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubernetes-nmstate-handler-rhel8 | |
source: registry.redhat.io/container-native-virtualization/kubernetes-nmstate-handler-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/cis-crawler-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/cis-crawler-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/cert-manager-controller-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/cert-manager-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-kafka-24-rhel7 | |
source: registry.redhat.io/amq7/amq-streams-kafka-24-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-businesscentral-monitoring-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-businesscentral-monitoring-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-elasticsearch-operator | |
source: registry.redhat.io/openshift4/ose-elasticsearch-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/proxy-init-rhel7 | |
source: registry.redhat.io/openshift-service-mesh/proxy-init-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/hostpath-provisioner-rhel8-operator | |
source: registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-apiserver | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-apiserver | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-cpu-model-nfd-plugin | |
source: registry.redhat.io/container-native-virtualization/kubevirt-cpu-model-nfd-plugin | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/ior-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/ior-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/crw-2-rhel8-operator | |
source: registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-elasticsearch-operator | |
source: registry.redhat.io/openshift4/ose-elasticsearch-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-apiserver-receive-adapter-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-apiserver-receive-adapter-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/stacks-golang-rhel8 | |
source: registry.redhat.io/codeready-workspaces/stacks-golang-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-broker | |
source: registry.redhat.io/amq7/amq-broker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/fuse7/fuse-online-operator | |
source: registry.redhat.io/fuse7/fuse-online-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-collector-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-collector-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-node-feature-discovery | |
source: registry.redhat.io/openshift4/ose-node-feature-discovery | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/citadel-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/citadel-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/system-rhel7 | |
source: registry.redhat.io/3scale-amp2/system-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/memcached-rhel7 | |
source: registry.redhat.io/3scale-amp2/memcached-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/grc-ui-api-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/grc-ui-api-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-fluentd | |
source: registry.redhat.io/openshift4/ose-logging-fluentd | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-collector-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-collector-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-dp-admission-controller | |
source: registry.redhat.io/openshift4/ose-sriov-dp-admission-controller | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/endpoint-rhel8-operator | |
source: registry.redhat.io/rhacm1-tech-preview/endpoint-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-mongodb-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-mongodb-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-ssp-operator | |
source: registry.redhat.io/container-native-virtualization/kubevirt-ssp-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-v2v-conversion | |
source: registry.redhat.io/container-native-virtualization/kubevirt-v2v-conversion | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-channel-broker-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-channel-broker-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/ior-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/ior-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-network-device-plugin | |
source: registry.redhat.io/openshift4/ose-sriov-network-device-plugin | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-rhel7-operator | |
source: registry.redhat.io/amq7/amq-streams-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/stacks-dotnet-rhel8 | |
source: registry.redhat.io/codeready-workspaces/stacks-dotnet-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-kvm-info-nfd-plugin | |
source: registry.redhat.io/container-native-virtualization/kubevirt-kvm-info-nfd-plugin | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-node-feature-discovery | |
source: registry.redhat.io/openshift4/ose-node-feature-discovery | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/ingress-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1/ingress-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-reporting-operator | |
source: registry.redhat.io/openshift4/ose-metering-reporting-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/kourier-control-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/kourier-control-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-channel-broker-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-channel-broker-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/backend-rhel7 | |
source: registry.redhat.io/3scale-amp2/backend-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-smartrouter-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-smartrouter-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/ovs-cni-marker | |
source: registry.redhat.io/container-native-virtualization/ovs-cni-marker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker | |
source: registry.redhat.io/openshift4/ose-ansible-service-broker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/knative-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1/knative-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/knative-serving-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/knative-serving-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-autoscaler-hpa-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-autoscaler-hpa-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-network-operator | |
source: registry.redhat.io/openshift4/ose-sriov-network-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/iam-policy-controller-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/iam-policy-controller-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-businesscentral-monitoring-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-businesscentral-monitoring-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-kibana5 | |
source: registry.redhat.io/openshift4/ose-logging-kibana5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-template-service-broker | |
source: registry.redhat.io/openshift4/ose-template-service-broker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/openshift-hive-rhel7-operator | |
source: registry.redhat.io/rhacm1-tech-preview/openshift-hive-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/console-header-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/console-header-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/endpoint-component-rhel8-operator | |
source: registry.redhat.io/rhacm1-tech-preview/endpoint-component-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-sigfox-adapter-rhel7 | |
source: registry.redhat.io/amq7-tech-preview/amq-online-1-iot-sigfox-adapter-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/bridge-marker | |
source: registry.redhat.io/container-native-virtualization/bridge-marker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-elasticsearch-operator | |
source: registry.redhat.io/openshift4/ose-elasticsearch-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-controller | |
source: registry.redhat.io/container-native-virtualization/virt-controller | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/zync-rhel7 | |
source: registry.redhat.io/3scale-amp2/zync-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/redhat-sso-7/sso73-openshift | |
source: registry.redhat.io/redhat-sso-7/sso73-openshift | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-controller-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-velero-plugin-for-aws-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-velero-plugin-for-aws-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/stacks-node-rhel8 | |
source: registry.redhat.io/codeready-workspaces/stacks-node-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/grafana-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/grafana-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-cni | |
source: registry.redhat.io/openshift4/ose-sriov-cni | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-autoscaler-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-autoscaler-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-broker-filter-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-broker-filter-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/grc-ui-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/grc-ui-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/configmap-watcher-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/configmap-watcher-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-broker-rhel8-operator | |
source: registry.redhat.io/amq7/amq-broker-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker | |
source: registry.redhat.io/openshift4/ose-ansible-service-broker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhdm-7/rhdm-decisioncentral-rhel8 | |
source: registry.redhat.io/rhdm-7/rhdm-decisioncentral-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-uploadproxy | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-uploadproxy | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ghostunnel | |
source: registry.redhat.io/openshift4/ose-ghostunnel | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/redisgraph-tls-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/redisgraph-tls-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/sidecar-injector-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/sidecar-injector-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-velero-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-velero-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/jwtproxy-rhel8 | |
source: registry.redhat.io/codeready-workspaces/jwtproxy-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/endpoint-component-rhel8-operator | |
source: registry.redhat.io/rhacm1-tech-preview/endpoint-component-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhdm-7/rhdm-controller-rhel8 | |
source: registry.redhat.io/rhdm-7/rhdm-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-rhel7-operator | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-collector-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-collector-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/pilot-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/pilot-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/grc-ui-api-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/grc-ui-api-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/search-collector-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/search-collector-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/quay/quay-container-security-rhel8-operator | |
source: registry.redhat.io/quay/quay-container-security-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-all-in-one-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-all-in-one-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-template-service-broker-operator | |
source: registry.redhat.io/openshift4/ose-template-service-broker-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/apicast-rhel7-operator | |
source: registry.redhat.io/3scale-amp2/apicast-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/stacks-python-rhel8 | |
source: registry.redhat.io/codeready-workspaces/stacks-python-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-cni | |
source: registry.redhat.io/openshift4/ose-sriov-cni | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift3/oauth-proxy | |
source: registry.redhat.io/openshift3/oauth-proxy | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-velero-plugin-for-microsoft-azure-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-velero-plugin-for-microsoft-azure-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
source: registry.redhat.io/openshift4/ose-oauth-proxy | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-metrics-collector | |
source: registry.redhat.io/container-native-virtualization/kubevirt-metrics-collector | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/hostpath-provisioner-rhel8 | |
source: registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-businesscentral-monitoring-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-businesscentral-monitoring-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-businesscentral-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-businesscentral-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/stacks-php-rhel8 | |
source: registry.redhat.io/codeready-workspaces/stacks-php-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-cronjob-receive-adapter-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-cronjob-receive-adapter-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/search-aggregator-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/search-aggregator-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-agent-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-agent-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-controller | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-controller | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-local-storage-static-provisioner | |
source: registry.redhat.io/openshift4/ose-local-storage-static-provisioner | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-network-operator | |
source: registry.redhat.io/openshift4/ose-sriov-network-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/node-maintenance-operator | |
source: registry.redhat.io/container-native-virtualization/node-maintenance-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-template-service-broker-operator | |
source: registry.redhat.io/openshift4/ose-template-service-broker-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/serving-autoscaler-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/serving-autoscaler-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhscl/mysql-57-rhel7 | |
source: registry.redhat.io/rhscl/mysql-57-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-kieserver-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-kieserver-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/pluginregistry-rhel8 | |
source: registry.redhat.io/codeready-workspaces/pluginregistry-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/plugin-java11-rhel8 | |
source: registry.redhat.io/codeready-workspaces/plugin-java11-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/devfileregistry-rhel8 | |
source: registry.redhat.io/codeready-workspaces/devfileregistry-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhscl/mongodb-36-rhel7 | |
source: registry.redhat.io/rhscl/mongodb-36-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-autoscaler-hpa-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-autoscaler-hpa-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-mqtt-adapter | |
source: registry.redhat.io/amq7-tech-preview/amq-online-1-iot-mqtt-adapter | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-vmware | |
source: registry.redhat.io/container-native-virtualization/kubevirt-vmware | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/cnv-must-gather-rhel8 | |
source: registry.redhat.io/container-native-virtualization/cnv-must-gather-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/ocs-rhel8-operator | |
source: registry.redhat.io/ocs4/ocs-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/cephcsi-rhel8 | |
source: registry.redhat.io/ocs4/cephcsi-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-queue-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-queue-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/sidecar-injector-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/sidecar-injector-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/grafana-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/grafana-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/3scale-rhel7-operator | |
source: registry.redhat.io/3scale-amp2/3scale-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-velero-restic-restore-helper-rhel8 | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-velero-restic-restore-helper-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-kibana5 | |
source: registry.redhat.io/openshift4/ose-logging-kibana5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
source: registry.redhat.io/openshift4/ose-oauth-proxy | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/plugin-openshift-rhel8 | |
source: registry.redhat.io/codeready-workspaces/plugin-openshift-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-plugin-rhel8 | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-plugin-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/cnv-containernetworking-plugins | |
source: registry.redhat.io/container-native-virtualization/cnv-containernetworking-plugins | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-template-service-broker-operator | |
source: registry.redhat.io/openshift4/ose-template-service-broker-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/mixer-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/mixer-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/3scale-rhel7-operator | |
source: registry.redhat.io/3scale-amp2/3scale-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-kieserver-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-kieserver-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhscl/mongodb-34-rhel7 | |
source: registry.redhat.io/rhscl/mongodb-34-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-local-storage-static-provisioner | |
source: registry.redhat.io/openshift4/ose-local-storage-static-provisioner | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-ansible-operator | |
source: registry.redhat.io/openshift4/ose-metering-ansible-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-autoscaler-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-autoscaler-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/fuse7-tech-preview/dv-rhel7-operator | |
source: registry.redhat.io/fuse7-tech-preview/dv-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-elasticsearch-operator | |
source: registry.redhat.io/openshift4/ose-elasticsearch-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubemacpool | |
source: registry.redhat.io/container-native-virtualization/kubemacpool | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-reporting-operator | |
source: registry.redhat.io/openshift4/ose-metering-reporting-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/knative-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/knative-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-broker-plugin | |
source: registry.redhat.io/amq7/amq-online-1-broker-plugin | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/mcg-rhel8-operator | |
source: registry.redhat.io/ocs4/mcg-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/datagrid/datagrid-8-rhel8 | |
source: registry.redhat.io/datagrid/datagrid-8-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-rhel7-operator | |
source: registry.redhat.io/distributed-tracing/jaeger-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/ingress-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1/ingress-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-webhook-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-webhook-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/cis-crawler-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/cis-crawler-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7 | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-api | |
source: registry.redhat.io/container-native-virtualization/virt-api | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-csi-external-attacher | |
source: registry.redhat.io/openshift4/ose-csi-external-attacher | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-csi-driver-registrar | |
source: registry.redhat.io/openshift4/ose-csi-driver-registrar | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/acmesolver-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/acmesolver-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-query-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-query-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/serving-autoscaler-hpa-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/serving-autoscaler-hpa-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-hive | |
source: registry.redhat.io/openshift4/ose-metering-hive | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-pipelines-tech-preview/pipelines-rhel8-operator | |
source: registry.redhat.io/openshift-pipelines-tech-preview/pipelines-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/cert-manager-webhook-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/cert-manager-webhook-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-kafka-24-rhel7 | |
source: registry.redhat.io/amq7/amq-streams-kafka-24-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-controller-rhel8 | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/redhat-sso-7/sso73-openshift | |
source: registry.redhat.io/redhat-sso-7/sso73-openshift | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/search-rhel8-operator | |
source: registry.redhat.io/rhacm1-tech-preview/search-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-ingester-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-ingester-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/cnv-containernetworking-plugins | |
source: registry.redhat.io/container-native-virtualization/cnv-containernetworking-plugins | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/knative-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/knative-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-knative/knative-openshift-ingress | |
source: quay.io/openshift-knative/knative-openshift-ingress | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/pilot-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/pilot-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/prometheus-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/prometheus-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/backend-rhel7 | |
source: registry.redhat.io/3scale-amp2/backend-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-controller-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-curator5 | |
source: registry.redhat.io/openshift4/ose-logging-curator5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/fuse7-tech-preview/dv-rhel7-operator | |
source: registry.redhat.io/fuse7-tech-preview/dv-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-ingester-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-ingester-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-es-index-cleaner-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-es-index-cleaner-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-local-storage-operator | |
source: registry.redhat.io/openshift4/ose-local-storage-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/mcg-rhel8-operator | |
source: registry.redhat.io/ocs4/mcg-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/rcm-controller-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/rcm-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/img-minio-mc-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/img-minio-mc-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/cert-manager-webhook-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/cert-manager-webhook-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-controller-manager | |
source: registry.redhat.io/amq7/amq-online-1-controller-manager | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-operator | |
source: registry.redhat.io/amq7/amq-streams-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/mcg-rhel8-operator | |
source: registry.redhat.io/ocs4/mcg-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/citadel-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/citadel-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-mqtt-gateway | |
source: registry.redhat.io/amq7/amq-online-1-mqtt-gateway | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-promtail | |
source: registry.redhat.io/openshift4/ose-promtail | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-presto | |
source: registry.redhat.io/openshift4/ose-metering-presto | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/performance-addon-rhel8-operator | |
source: registry.redhat.io/openshift4/performance-addon-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/ior-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/ior-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7 | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/ovs-cni-marker | |
source: registry.redhat.io/container-native-virtualization/ovs-cni-marker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-local-storage-static-provisioner | |
source: registry.redhat.io/openshift4/ose-local-storage-static-provisioner | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/management-ingress-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/management-ingress-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-rhel8-operator | |
source: registry.redhat.io/rhpam-7/rhpam-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-ui-rhel8 | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-ui-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/server-operator-rhel8 | |
source: registry.redhat.io/codeready-workspaces/server-operator-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-hadoop | |
source: registry.redhat.io/openshift4/ose-metering-hadoop | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/prometheus-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/prometheus-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-network-config-daemon | |
source: registry.redhat.io/openshift4/ose-sriov-network-config-daemon | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-activator-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-activator-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-controller-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/memcached-rhel7 | |
source: registry.redhat.io/3scale-amp2/memcached-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/mcm-topology-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/mcm-topology-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-topic-forwarder | |
source: registry.redhat.io/amq7/amq-online-1-topic-forwarder | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-apiserver | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-apiserver | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-operator | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/knative-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/knative-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/galley-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/galley-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/pusher/oauth2_proxy | |
source: quay.io/pusher/oauth2_proxy | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-cluster-operator | |
source: registry.access.redhat.com/amq7/amq-streams-cluster-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhdm-7/rhdm-decisioncentral-rhel8 | |
source: registry.redhat.io/rhdm-7/rhdm-decisioncentral-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift3/oauth-proxy | |
source: registry.redhat.io/openshift3/oauth-proxy | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhceph/rhceph-4-rhel8 | |
source: registry.redhat.io/rhceph/rhceph-4-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhscl/postgresql-10-rhel7 | |
source: registry.redhat.io/rhscl/postgresql-10-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/stacks-cpp-rhel8 | |
source: registry.redhat.io/codeready-workspaces/stacks-cpp-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/search-rhel8-operator | |
source: registry.redhat.io/rhacm1-tech-preview/search-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/search-api-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/search-api-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhdm-7/rhdm-kieserver-rhel8 | |
source: registry.redhat.io/rhdm-7/rhdm-kieserver-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-kibana5 | |
source: registry.redhat.io/openshift4/ose-logging-kibana5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-cluster-logging-operator | |
source: registry.redhat.io/openshift4/ose-cluster-logging-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/kourier-control-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/kourier-control-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/knative-serving-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1/knative-serving-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/application-ui-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/application-ui-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-api-server | |
source: registry.redhat.io/amq7/amq-online-1-api-server | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-none-auth-service | |
source: registry.redhat.io/amq7/amq-online-1-none-auth-service | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-rhel8-operator | |
source: registry.redhat.io/rhpam-7/rhpam-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-ui-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-ui-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/cainjector-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/cainjector-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-kafka-23-rhel7 | |
source: registry.redhat.io/amq7/amq-streams-kafka-23-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virtio-win | |
source: registry.redhat.io/container-native-virtualization/virtio-win | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-webhook-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-webhook-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam74-operator | |
source: registry.redhat.io/rhpam-7/rhpam74-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-ping-source-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-ping-source-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/mixer-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/mixer-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/3scale-istio-adapter-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/3scale-istio-adapter-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-placementrule-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-operators-placementrule-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-api-server | |
source: registry.redhat.io/amq7/amq-online-1-api-server | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-local-storage-diskmaker | |
source: registry.redhat.io/openshift4/ose-local-storage-diskmaker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-controller-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/galley-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/galley-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/plugin-kubernetes-rhel8 | |
source: registry.redhat.io/codeready-workspaces/plugin-kubernetes-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/devfileregistry-rhel8 | |
source: registry.redhat.io/codeready-workspaces/devfileregistry-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/apicast-gateway-rhel8 | |
source: registry.redhat.io/3scale-amp2/apicast-gateway-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/coredns-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/coredns-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-subscription-rhel8-operator | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-operators-subscription-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-controller-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-rhel7-operator | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/ovs-cni-plugin | |
source: registry.redhat.io/container-native-virtualization/ovs-cni-plugin | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/rook-ceph-rhel8-operator | |
source: registry.redhat.io/ocs4/rook-ceph-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/kourier-control-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/kourier-control-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/serving-activator-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/serving-activator-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-address-space-controller | |
source: registry.redhat.io/amq7/amq-online-1-address-space-controller | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-velero-plugin-for-gcp-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-velero-plugin-for-gcp-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-uploadserver | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-uploadserver | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/serving-webhook-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/serving-webhook-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/serving-autoscaler-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/serving-autoscaler-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/cert-policy-controller-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/cert-policy-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-elasticsearch5 | |
source: registry.redhat.io/openshift4/ose-logging-elasticsearch5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-broker-filter-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-broker-filter-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-cni-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/istio-cni-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-network-device-plugin | |
source: registry.redhat.io/openshift4/ose-sriov-network-device-plugin | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-velero-rhel8 | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-velero-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-clusterresourceoverride-rhel7-operator | |
source: registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-kvm-info-nfd-plugin | |
source: registry.redhat.io/container-native-virtualization/kubevirt-kvm-info-nfd-plugin | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/serving-queue-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/serving-queue-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/sidecar-injector-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/sidecar-injector-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/sidecar-injector-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/sidecar-injector-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/zync-rhel7 | |
source: registry.redhat.io/3scale-amp2/zync-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/acmesolver-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/acmesolver-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-launcher | |
source: registry.redhat.io/container-native-virtualization/virt-launcher | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker-operator | |
source: registry.redhat.io/openshift4/ose-ansible-service-broker-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/serving-queue-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/serving-queue-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-cluster-nfd-operator | |
source: registry.redhat.io/openshift4/ose-cluster-nfd-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-knative/knative-serving-operator | |
source: quay.io/openshift-knative/knative-serving-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-autoscaler-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-autoscaler-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/kourier-control-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/kourier-control-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/knative-serving-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1/knative-serving-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-mqtt-lwt | |
source: registry.redhat.io/amq7/amq-online-1-mqtt-lwt | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-operator | |
source: registry.redhat.io/amq7/amq-streams-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-cluster-logging-operator | |
source: registry.redhat.io/openshift4/ose-cluster-logging-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-dp-admission-controller | |
source: registry.redhat.io/openshift4/ose-sriov-dp-admission-controller | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-network-config-daemon | |
source: registry.redhat.io/openshift4/ose-sriov-network-config-daemon | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-rhel7-operator | |
source: registry.redhat.io/distributed-tracing/jaeger-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/hyperconverged-cluster-operator | |
source: registry.redhat.io/container-native-virtualization/hyperconverged-cluster-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-cpu-node-labeller | |
source: registry.redhat.io/container-native-virtualization/kubevirt-cpu-node-labeller | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-local-storage-operator | |
source: registry.redhat.io/openshift4/ose-local-storage-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ghostunnel | |
source: registry.redhat.io/openshift4/ose-ghostunnel | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/system-rhel7 | |
source: registry.redhat.io/3scale-amp2/system-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-elasticsearch5 | |
source: registry.redhat.io/openshift4/ose-logging-elasticsearch5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-uploadserver | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-uploadserver | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker-operator | |
source: registry.redhat.io/openshift4/ose-ansible-service-broker-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/proxy-init-rhel7 | |
source: registry.redhat.io/openshift-service-mesh/proxy-init-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/mixer-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/mixer-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/cert-manager-controller-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/cert-manager-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/configmap-watcher-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/configmap-watcher-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-controller | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-controller | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-launcher | |
source: registry.redhat.io/container-native-virtualization/virt-launcher | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/knative-serving-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/knative-serving-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/cert-policy-controller-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/cert-policy-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/img-minio-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/img-minio-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/pluginbroker-metadata-rhel8 | |
source: registry.redhat.io/codeready-workspaces/pluginbroker-metadata-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7 | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/mcg-rhel8-operator | |
source: registry.redhat.io/ocs4/mcg-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-velero-plugin-for-microsoft-azure-rhel8 | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-velero-plugin-for-microsoft-azure-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-rhel7-operator | |
source: registry.redhat.io/distributed-tracing/jaeger-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-node-feature-discovery | |
source: registry.redhat.io/openshift4/ose-node-feature-discovery | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-apiserver-receive-adapter-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-apiserver-receive-adapter-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-device-registry-datagrid | |
source: registry.redhat.io/amq7-tech-preview/amq-online-1-iot-device-registry-datagrid | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-rhel7-operator | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhscl/postgresql-96-rhel7 | |
source: registry.redhat.io/rhscl/postgresql-96-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ghostunnel | |
source: registry.redhat.io/openshift4/ose-ghostunnel | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ptp | |
source: registry.redhat.io/openshift4/ose-ptp | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-template-service-broker-operator | |
source: registry.redhat.io/openshift4/ose-template-service-broker-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/knative-serving-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/knative-serving-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multiclusterhub-rhel8-operator | |
source: registry.redhat.io/rhacm1-tech-preview/multiclusterhub-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-broker-rhel7-operator | |
source: registry.redhat.io/amq7/amq-broker-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhdm-7/rhdm-controller-rhel8 | |
source: registry.redhat.io/rhdm-7/rhdm-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-fluentd | |
source: registry.redhat.io/openshift4/ose-logging-fluentd | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/hyperconverged-cluster-operator | |
source: registry.redhat.io/container-native-virtualization/hyperconverged-cluster-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-channel-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-operators-channel-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-rhel7-operator | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-network-device-plugin | |
source: registry.redhat.io/openshift4/ose-sriov-network-device-plugin | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/hostpath-provisioner-rhel8-operator | |
source: registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-activator-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-activator-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/zync-rhel7 | |
source: registry.redhat.io/3scale-amp2/zync-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-rhel8-operator | |
source: registry.redhat.io/rhpam-7/rhpam-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-controller-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-all-in-one-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-all-in-one-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/coredns-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/coredns-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-agent | |
source: registry.redhat.io/amq7/amq-online-1-agent | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-curator5 | |
source: registry.redhat.io/openshift4/ose-logging-curator5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-curator5 | |
source: registry.redhat.io/openshift4/ose-logging-curator5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
source: registry.redhat.io/openshift4/ose-oauth-proxy | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7 | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-csi-external-provisioner-rhel7 | |
source: registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/serving-controller-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/serving-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/application-ui-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/application-ui-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-application-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-operators-application-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-hive | |
source: registry.redhat.io/openshift4/ose-metering-hive | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/rook-ceph-rhel8-operator | |
source: registry.redhat.io/ocs4/rook-ceph-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/pilot-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/pilot-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-address-space-controller | |
source: registry.redhat.io/amq7/amq-online-1-address-space-controller | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-ssp-operator | |
source: registry.redhat.io/container-native-virtualization/kubevirt-ssp-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/rook-ceph-rhel8-operator | |
source: registry.redhat.io/ocs4/rook-ceph-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/knative-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/knative-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-broker-ingress-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-broker-ingress-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rh-sso-7-tech-preview/sso74-rhel8-operator | |
source: registry.redhat.io/rh-sso-7-tech-preview/sso74-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/galley-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/galley-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-controller-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
source: registry.redhat.io/openshift4/ose-oauth-proxy | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-operator | |
source: registry.redhat.io/container-native-virtualization/virt-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virtio-win | |
source: registry.redhat.io/container-native-virtualization/virtio-win | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-hive | |
source: registry.redhat.io/openshift4/ose-metering-hive | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-kibana5 | |
source: registry.redhat.io/openshift4/ose-logging-kibana5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7 | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-controller-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/rook-ceph-rhel8-operator | |
source: registry.redhat.io/ocs4/rook-ceph-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-http-adapter | |
source: registry.redhat.io/amq7-tech-preview/amq-online-1-iot-http-adapter | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-cluster-logging-operator | |
source: registry.redhat.io/openshift4/ose-cluster-logging-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/fuse7-tech-preview/fuse-apicurito-operator | |
source: registry.redhat.io/fuse7-tech-preview/fuse-apicurito-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-cloner | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-cloner | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-metrics-collector | |
source: registry.redhat.io/container-native-virtualization/kubevirt-metrics-collector | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/ovs-cni-plugin | |
source: registry.redhat.io/container-native-virtualization/ovs-cni-plugin | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/knative-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1/knative-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-queue-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-queue-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-cni-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/istio-cni-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/prometheus-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/prometheus-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/img-minio-mc-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/img-minio-mc-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/apicast-rhel7-operator | |
source: registry.redhat.io/3scale-amp2/apicast-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-rhel8-operator | |
source: registry.redhat.io/rhpam-7/rhpam-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-fluentd | |
source: registry.redhat.io/openshift4/ose-logging-fluentd | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ptp-operator | |
source: registry.redhat.io/openshift4/ose-ptp-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/grafana-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/grafana-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-subscription-release-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-operators-subscription-release-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-deployable-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-operators-deployable-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-curator5 | |
source: registry.redhat.io/openshift4/ose-logging-curator5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ubi8-minimal | |
source: registry.access.redhat.com/ubi8-minimal | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-operator | |
source: registry.redhat.io/container-native-virtualization/virt-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-auth-service | |
source: registry.redhat.io/amq7-tech-preview/amq-online-1-iot-auth-service | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift3/ose-cli | |
source: registry.redhat.io/openshift3/ose-cli | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-velero-plugin-for-gcp-rhel8 | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-velero-plugin-for-gcp-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/3scale-rhel7-operator | |
source: registry.redhat.io/3scale-amp2/3scale-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/drishti-cis-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/drishti-cis-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/openshift-hive-rhel7-operator | |
source: registry.redhat.io/rhacm1-tech-preview/openshift-hive-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/console-ui-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/console-ui-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/iam-policy-controller-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/iam-policy-controller-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/apicast-gateway-rhel8 | |
source: registry.redhat.io/3scale-amp2/apicast-gateway-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/serving-controller-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/serving-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-node-feature-discovery | |
source: registry.redhat.io/openshift4/ose-node-feature-discovery | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/rcm-controller-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/rcm-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-console-server-rhel7 | |
source: registry.redhat.io/amq7/amq-online-1-console-server-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-lorawan-adapter-rhel7 | |
source: registry.redhat.io/amq7-tech-preview/amq-online-1-iot-lorawan-adapter-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/apicast-rhel7-operator | |
source: registry.redhat.io/3scale-amp2/apicast-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/cluster-network-addons-operator | |
source: registry.redhat.io/container-native-virtualization/cluster-network-addons-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/kui-web-terminal-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/kui-web-terminal-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-descheduler | |
source: registry.redhat.io/openshift4/ose-descheduler | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7 | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-dp-admission-controller | |
source: registry.redhat.io/openshift4/ose-sriov-dp-admission-controller | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multiclusterhub-rhel8-operator | |
source: registry.redhat.io/rhacm1-tech-preview/multiclusterhub-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhdm-7/rhdm-kieserver-rhel8 | |
source: registry.redhat.io/rhdm-7/rhdm-kieserver-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-promtail | |
source: registry.redhat.io/openshift4/ose-promtail | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-presto | |
source: registry.redhat.io/openshift4/ose-metering-presto | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/hcm-compliance-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/hcm-compliance-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-velero-plugin-for-aws-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-velero-plugin-for-aws-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/proxy-init-rhel7 | |
source: registry.redhat.io/openshift-service-mesh/proxy-init-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-cluster-logging-operator | |
source: registry.redhat.io/openshift4/ose-cluster-logging-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-local-storage-diskmaker | |
source: registry.redhat.io/openshift4/ose-local-storage-diskmaker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-cluster-nfd-operator | |
source: registry.redhat.io/openshift4/ose-cluster-nfd-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker | |
source: registry.redhat.io/openshift4/ose-ansible-service-broker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-vmware | |
source: registry.redhat.io/container-native-virtualization/kubevirt-vmware | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/node-maintenance-operator | |
source: registry.redhat.io/container-native-virtualization/node-maintenance-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-mongodb-init-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-mongodb-init-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/grc-ui-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/grc-ui-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-bridge-rhel7 | |
source: registry.redhat.io/amq7/amq-streams-bridge-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-bridge-rhel7 | |
source: registry.redhat.io/amq7/amq-streams-bridge-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-ingester-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-ingester-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/jboss-datagrid-7/datagrid73-openshift | |
source: registry.redhat.io/jboss-datagrid-7/datagrid73-openshift | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-smartrouter-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-smartrouter-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-cpu-node-labeller | |
source: registry.redhat.io/container-native-virtualization/kubevirt-cpu-node-labeller | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-network-device-plugin | |
source: registry.redhat.io/openshift4/ose-sriov-network-device-plugin | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp26/3scale-operator | |
source: registry.redhat.io/3scale-amp26/3scale-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-mongodb-init-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-mongodb-init-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-networking-istio-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-networking-istio-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-cni-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/istio-cni-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-deployable-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-operators-deployable-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhscl/postgresql-10-rhel7 | |
source: registry.redhat.io/rhscl/postgresql-10-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-elasticsearch5 | |
source: registry.redhat.io/openshift4/ose-logging-elasticsearch5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/datagrid/datagrid-8-rhel8 | |
source: registry.redhat.io/datagrid/datagrid-8-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/ocs-rhel8-operator | |
source: registry.redhat.io/ocs4/ocs-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-es-index-cleaner-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-es-index-cleaner-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-cronjob-receive-adapter-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-cronjob-receive-adapter-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/grafana-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/grafana-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/hcm-compliance-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/hcm-compliance-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-standard-controller | |
source: registry.redhat.io/amq7/amq-online-1-standard-controller | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-plugin-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-plugin-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-ui-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-ui-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-es-rollover-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-es-rollover-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
source: registry.redhat.io/openshift4/ose-oauth-proxy | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-tenant-service | |
source: registry.redhat.io/amq7-tech-preview/amq-online-1-iot-tenant-service | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker | |
source: registry.redhat.io/openshift4/ose-ansible-service-broker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-rhel7-operator | |
source: registry.redhat.io/amq7/amq-streams-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-es-index-cleaner-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-es-index-cleaner-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/kn-cli-artifacts-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/kn-cli-artifacts-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-cpu-model-nfd-plugin | |
source: registry.redhat.io/container-native-virtualization/kubevirt-cpu-model-nfd-plugin | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-api | |
source: registry.redhat.io/container-native-virtualization/virt-api | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-ansible-operator | |
source: registry.redhat.io/openshift4/ose-metering-ansible-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/3scale-rhel7-operator | |
source: registry.redhat.io/3scale-amp2/3scale-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-application-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-operators-application-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-address-space-controller | |
source: registry.redhat.io/amq7/amq-online-1-address-space-controller | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-plugin-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-plugin-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-registry-rhel8 | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-registry-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-plugin-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-plugin-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-ui-rhel8 | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-ui-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-plugin-rhel8 | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-plugin-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
source: registry.redhat.io/openshift4/ose-oauth-proxy | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-broker | |
source: registry.redhat.io/amq7/amq-broker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-device-registry-file | |
source: registry.redhat.io/amq7-tech-preview/amq-online-1-iot-device-registry-file | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhdm-7/rhdm-kieserver-rhel8 | |
source: registry.redhat.io/rhdm-7/rhdm-kieserver-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-kieserver-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-kieserver-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-webhook-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-webhook-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-dp-admission-controller | |
source: registry.redhat.io/openshift4/ose-sriov-dp-admission-controller | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-es-rollover-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-es-rollover-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-controller | |
source: registry.redhat.io/container-native-virtualization/virt-controller | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-local-storage-operator | |
source: registry.redhat.io/openshift4/ose-local-storage-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/mcg-core-rhel8 | |
source: registry.redhat.io/ocs4/mcg-core-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/ocs-rhel8-operator | |
source: registry.redhat.io/ocs4/ocs-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/cis-controller-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/cis-controller-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-controller-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-elasticsearch5 | |
source: registry.redhat.io/openshift4/ose-logging-elasticsearch5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/bridge-marker | |
source: registry.redhat.io/container-native-virtualization/bridge-marker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-local-storage-operator | |
source: registry.redhat.io/openshift4/ose-local-storage-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/server-rhel8 | |
source: registry.redhat.io/codeready-workspaces/server-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-network-operator | |
source: registry.redhat.io/openshift4/ose-sriov-network-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicloud-manager-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/multicloud-manager-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-operator | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/integration-tech-preview/camel-k-rhel8-operator | |
source: registry.redhat.io/integration-tech-preview/camel-k-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-rhel7-operator | |
source: registry.redhat.io/amq7/amq-streams-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-in-memory-channel-controller-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-in-memory-channel-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/galley-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/galley-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/kui-web-terminal-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/kui-web-terminal-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-businesscentral-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-businesscentral-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-template-validator | |
source: registry.redhat.io/container-native-virtualization/kubevirt-template-validator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
source: registry.redhat.io/openshift4/ose-oauth-proxy | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-template-service-broker | |
source: registry.redhat.io/openshift4/ose-template-service-broker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-kafka-25-rhel7 | |
source: registry.redhat.io/amq7/amq-streams-kafka-25-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-cluster-logging-operator | |
source: registry.redhat.io/openshift4/ose-cluster-logging-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker-operator | |
source: registry.redhat.io/openshift4/ose-ansible-service-broker-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/pilot-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/pilot-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-cluster-nfd-operator | |
source: registry.redhat.io/openshift4/ose-cluster-nfd-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-queue-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-queue-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-network-webhook | |
source: registry.redhat.io/openshift4/ose-sriov-network-webhook | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-velero-restic-restore-helper-rhel8 | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-velero-restic-restore-helper-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/ocs-rhel8-operator | |
source: registry.redhat.io/ocs4/ocs-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/grafana-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/grafana-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amqstreams-1/amqstreams10-clusteroperator-openshift | |
source: registry.access.redhat.com/amqstreams-1/amqstreams10-clusteroperator-openshift | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7 | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-controller-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-handler | |
source: registry.redhat.io/container-native-virtualization/virt-handler | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-broker-lts-rhel7-operator | |
source: registry.redhat.io/amq7/amq-broker-lts-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-velero-plugin-for-aws-rhel8 | |
source: registry.redhat.io/rhcam-1-2/openshift-migration-velero-plugin-for-aws-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-fluentd | |
source: registry.redhat.io/openshift4/ose-logging-fluentd | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7 | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/quay/quay-rhel8-operator | |
source: registry.redhat.io/quay/quay-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-cni | |
source: registry.redhat.io/openshift4/ose-sriov-cni | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-subscription-release-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-operators-subscription-release-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-auth-plugin | |
source: registry.redhat.io/amq7/amq-online-1-auth-plugin | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-all-in-one-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-all-in-one-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/hostpath-provisioner-rhel8 | |
source: registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/rook-ceph-rhel8-operator | |
source: registry.redhat.io/ocs4/rook-ceph-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-in-memory-channel-controller-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-in-memory-channel-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/prometheus-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/prometheus-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-sriov-network-webhook | |
source: registry.redhat.io/openshift4/ose-sriov-network-webhook | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/console-ui-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/console-ui-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-kafka-23-rhel7 | |
source: registry.redhat.io/amq7/amq-streams-kafka-23-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
source: registry.redhat.io/openshift4/ose-oauth-proxy | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-ssp-operator | |
source: registry.redhat.io/container-native-virtualization/kubevirt-ssp-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubemacpool | |
source: registry.redhat.io/container-native-virtualization/kubemacpool | |
- mirrors: | |
- 127.0.0.1:5000/openshift/datagrid/datagrid-8-rhel8-operator | |
source: registry.redhat.io/datagrid/datagrid-8-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/jboss-datagrid-7/datagrid73-openshift | |
source: registry.redhat.io/jboss-datagrid-7/datagrid73-openshift | |
- mirrors: | |
- 127.0.0.1:5000/openshift/fuse7/fuse-online-operator | |
source: registry.redhat.io/fuse7/fuse-online-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-ansible-operator | |
source: registry.redhat.io/openshift4/ose-metering-ansible-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/proxy-init-rhel7 | |
source: registry.redhat.io/openshift-service-mesh/proxy-init-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/system-rhel7 | |
source: registry.redhat.io/3scale-amp2/system-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/redisgraph-tls-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/redisgraph-tls-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-cluster-kube-descheduler-operator | |
source: registry.redhat.io/openshift4/ose-cluster-kube-descheduler-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-query-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-query-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-template-validator | |
source: registry.redhat.io/container-native-virtualization/kubevirt-template-validator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-cluster-nfd-operator | |
source: registry.redhat.io/openshift4/ose-cluster-nfd-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ptp | |
source: registry.redhat.io/openshift4/ose-ptp | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-importer | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-importer | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/search-collector-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/search-collector-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/endpoint-rhel8-operator | |
source: registry.redhat.io/rhacm1-tech-preview/endpoint-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multiclusterhub-repo-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/multiclusterhub-repo-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-controller-manager | |
source: registry.redhat.io/amq7/amq-online-1-controller-manager | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-bridge-rhel7 | |
source: registry.redhat.io/amq7/amq-streams-bridge-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-activator-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-activator-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/search-api-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/search-api-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/machineexec-rhel8 | |
source: registry.redhat.io/codeready-workspaces/machineexec-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-agent-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-agent-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-uploadproxy | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-uploadproxy | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ptp-operator | |
source: registry.redhat.io/openshift4/ose-ptp-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-smartrouter-rhel8 | |
source: registry.redhat.io/rhpam-7/rhpam-smartrouter-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-elasticsearch5 | |
source: registry.redhat.io/openshift4/ose-logging-elasticsearch5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
source: registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/serving-autoscaler-hpa-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/serving-autoscaler-hpa-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/3scale-rhel7-operator | |
source: registry.redhat.io/3scale-amp2/3scale-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-importer | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-importer | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/mcg-rhel8-operator | |
source: registry.redhat.io/ocs4/mcg-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/ocs-rhel8-operator | |
source: registry.redhat.io/ocs4/ocs-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/serving-webhook-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/serving-webhook-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubernetes-nmstate-handler-rhel8 | |
source: registry.redhat.io/container-native-virtualization/kubernetes-nmstate-handler-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-in-memory-channel-dispatcher-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-in-memory-channel-dispatcher-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/backend-rhel7 | |
source: registry.redhat.io/3scale-amp2/backend-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/console-api-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/console-api-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-controller-manager-rhel7-operator | |
source: registry.redhat.io/amq7/amq-online-1-controller-manager-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhdm-7/rhdm-decisioncentral-rhel8 | |
source: registry.redhat.io/rhdm-7/rhdm-decisioncentral-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-rhel7-operator | |
source: registry.redhat.io/rhcam-1-1/openshift-migration-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/search-aggregator-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/search-aggregator-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/distributed-tracing/jaeger-es-rollover-rhel7 | |
source: registry.redhat.io/distributed-tracing/jaeger-es-rollover-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1/kn-cli-artifacts-rhel8 | |
source: registry.redhat.io/openshift-serverless-1/kn-cli-artifacts-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-cni-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/istio-cni-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/server-operator-rhel8 | |
source: registry.redhat.io/codeready-workspaces/server-operator-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-in-memory-channel-dispatcher-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-in-memory-channel-dispatcher-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/apicast-gateway-rhel8 | |
source: registry.redhat.io/3scale-amp2/apicast-gateway-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/mcm-topology-api-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/mcm-topology-api-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-broker-rhel7-operator | |
source: registry.redhat.io/amq7/amq-broker-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-cert-manager | |
source: registry.redhat.io/amq7/amq-cert-manager | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-fluentd | |
source: registry.redhat.io/openshift4/ose-logging-fluentd | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/apicast-gateway-rhel8 | |
source: registry.redhat.io/3scale-amp2/apicast-gateway-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-logging-curator5 | |
source: registry.redhat.io/openshift4/ose-logging-curator5 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/stacks-java-rhel8 | |
source: registry.redhat.io/codeready-workspaces/stacks-java-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-hadoop | |
source: registry.redhat.io/openshift4/ose-metering-hadoop | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-template-service-broker | |
source: registry.redhat.io/openshift4/ose-template-service-broker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-controller-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-controller-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-mongodb-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-mongodb-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-tenant-cleaner-rhel7 | |
source: registry.redhat.io/amq7-tech-preview/amq-online-1-iot-tenant-cleaner-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-cloner | |
source: registry.redhat.io/container-native-virtualization/virt-cdi-cloner | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/virt-operator | |
source: registry.redhat.io/container-native-virtualization/virt-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker-operator | |
source: registry.redhat.io/openshift4/ose-ansible-service-broker-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
source: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-interconnect | |
source: registry.redhat.io/amq7/amq-interconnect | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhpam-7/rhpam-rhel8-operator | |
source: registry.redhat.io/rhpam-7/rhpam-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift3/oauth-proxy | |
source: registry.redhat.io/openshift3/oauth-proxy | |
- mirrors: | |
- 127.0.0.1:5000/openshift/codeready-workspaces/pluginbroker-artifacts-rhel8 | |
source: registry.redhat.io/codeready-workspaces/pluginbroker-artifacts-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/cluster-network-addons-operator | |
source: registry.redhat.io/container-native-virtualization/cluster-network-addons-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/memcached-rhel7 | |
source: registry.redhat.io/3scale-amp2/memcached-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-interconnect-operator | |
source: registry.redhat.io/amq7/amq-interconnect-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-broker-ingress-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-broker-ingress-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
source: registry.redhat.io/openshift-service-mesh/istio-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/3scale-rhel7-operator | |
source: registry.redhat.io/3scale-amp2/3scale-rhel7-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/ocs4/mcg-rhel8-operator | |
source: registry.redhat.io/ocs4/mcg-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/zync-rhel7 | |
source: registry.redhat.io/3scale-amp2/zync-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-online-1-console-init | |
source: registry.redhat.io/amq7/amq-online-1-console-init | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/cluster-network-addons-operator | |
source: registry.redhat.io/container-native-virtualization/cluster-network-addons-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-rhel8-operator | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-webhook-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/eventing-webhook-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/console-header-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/console-header-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-channel-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/multicluster-operators-channel-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/quay/quay-container-security-rhel8-operator | |
source: registry.redhat.io/quay/quay-container-security-rhel8-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/node-maintenance-operator | |
source: registry.redhat.io/container-native-virtualization/node-maintenance-operator | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-metering-hadoop | |
source: registry.redhat.io/openshift4/ose-metering-hadoop | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-template-service-broker | |
source: registry.redhat.io/openshift4/ose-template-service-broker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-autoscaler-hpa-rhel8 | |
source: registry.redhat.io/openshift-serverless-1-tech-preview/serving-autoscaler-hpa-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/3scale-amp2/backend-rhel7 | |
source: registry.redhat.io/3scale-amp2/backend-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/multicloud-manager-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/multicloud-manager-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/management-ingress-rhel7 | |
source: registry.redhat.io/rhacm1-tech-preview/management-ingress-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/rhacm1-tech-preview/mcm-topology-rhel8 | |
source: registry.redhat.io/rhacm1-tech-preview/mcm-topology-rhel8 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/amq7/amq-streams-kafka-24-rhel7 | |
source: registry.redhat.io/amq7/amq-streams-kafka-24-rhel7 | |
- mirrors: | |
- 127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-v2v-conversion | |
source: registry.redhat.io/container-native-virtualization/kubevirt-v2v-conversion | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-local-storage-diskmaker | |
source: registry.redhat.io/openshift4/ose-local-storage-diskmaker | |
- mirrors: | |
- 127.0.0.1:5000/openshift/openshift4/ose-template-service-broker-operator | |
source: registry.redhat.io/openshift4/ose-template-service-broker-operator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "3scale-operator" | |
} | |
{ | |
"name": "advanced-cluster-management" | |
} | |
{ | |
"name": "amq-broker" | |
} | |
{ | |
"name": "amq-broker-lts" | |
} | |
{ | |
"name": "amq-broker-rhel8" | |
} | |
{ | |
"name": "amq-online" | |
} | |
{ | |
"name": "amq-streams" | |
} | |
{ | |
"name": "amq7-cert-manager" | |
} | |
{ | |
"name": "amq7-interconnect-operator" | |
} | |
{ | |
"name": "apicast-operator" | |
} | |
{ | |
"name": "businessautomation-operator" | |
} | |
{ | |
"name": "cam-operator" | |
} | |
{ | |
"name": "cluster-kube-descheduler-operator" | |
} | |
{ | |
"name": "cluster-logging" | |
} | |
{ | |
"name": "clusterresourceoverride" | |
} | |
{ | |
"name": "codeready-workspaces" | |
} | |
{ | |
"name": "container-security-operator" | |
} | |
{ | |
"name": "datagrid" | |
} | |
{ | |
"name": "dv-operator" | |
} | |
{ | |
"name": "eap" | |
} | |
{ | |
"name": "elasticsearch-operator" | |
} | |
{ | |
"name": "fuse-apicurito" | |
} | |
{ | |
"name": "fuse-online" | |
} | |
{ | |
"name": "jaeger-product" | |
} | |
{ | |
"name": "kiali-ossm" | |
} | |
{ | |
"name": "kubevirt-hyperconverged" | |
} | |
{ | |
"name": "local-storage-operator" | |
} | |
{ | |
"name": "metering-ocp" | |
} | |
{ | |
"name": "nfd" | |
} | |
{ | |
"name": "ocs-operator" | |
} | |
{ | |
"name": "openshift-pipelines-operator-rh" | |
} | |
{ | |
"name": "openshiftansibleservicebroker" | |
} | |
{ | |
"name": "openshifttemplateservicebroker" | |
} | |
{ | |
"name": "performance-addon-operator" | |
} | |
{ | |
"name": "ptp-operator" | |
} | |
{ | |
"name": "quay-bridge-operator" | |
} | |
{ | |
"name": "quay-operator" | |
} | |
{ | |
"name": "red-hat-camel-k" | |
} | |
{ | |
"name": "rhsso-operator" | |
} | |
{ | |
"name": "serverless-operator" | |
} | |
{ | |
"name": "servicemeshoperator" | |
} | |
{ | |
"name": "sriov-network-operator" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
registry.redhat.io/rhcam-1-2/openshift-migration-controller-rhel8@sha256:ca9ab7ecf0d939afa1aae2540bb3daf5d7ce651ad58b94c6987484d12af1d211=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-controller-rhel8 | |
registry.redhat.io/openshift4/ose-metering-presto@sha256:00736df4e2a974bed7276da61cc6e7d8d621eac80874922f2da709c5d1e8475c=127.0.0.1:5000/openshift/openshift4/ose-metering-presto | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-rhel8-operator:0.9.0-8=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-rhel8-operator:0.9.0-8 | |
registry.redhat.io/openshift-service-mesh/citadel-rhel8@sha256:d8ca7131c787087bba4ff4a805bfb691566cb8744837154a26401a5f284cedbd=127.0.0.1:5000/openshift/openshift-service-mesh/citadel-rhel8 | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-webhook-rhel8@sha256:50ca3c84d0b6ef811fcb60091dcf8ab6098583d4b2542aa46a280378b306851c=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-webhook-rhel8 | |
registry.redhat.io/openshift-service-mesh/proxyv2-rhel8@sha256:c80671c1cc8254336499fe92c9de7b597e2e6b71d8c5420e63e7ce90e422b5ed=127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:99ae7c58bd475d922f959b0adf9bb17e71617d8e7cbb4839d296d5e192ebed09=127.0.0.1:5000/openshift/openshift4/ose-sriov-network-operator | |
registry.redhat.io/amq7-tech-preview/amq-online-1-iot-proxy-configurator:1.4=127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-proxy-configurator:1.4 | |
registry.redhat.io/container-native-virtualization/cnv-must-gather-rhel8:v2.2.0-14=127.0.0.1:5000/openshift/container-native-virtualization/cnv-must-gather-rhel8:v2.2.0-14 | |
registry.redhat.io/openshift4/ose-local-storage-diskmaker@sha256:4a560aba6ac8bbede7bc669abb0511b6d2e8da964be636b01ce7bf3cecf42b7f=127.0.0.1:5000/openshift/openshift4/ose-local-storage-diskmaker | |
registry.redhat.io/openshift4/ose-metering-reporting-operator@sha256:e727dd73789297782e2f86b300556cb227448083ae599a08e92846f0c628d04b=127.0.0.1:5000/openshift/openshift4/ose-metering-reporting-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-ping-source-rhel8@sha256:bed5d130cebcab8c28babcdaac54375967321d0bc6559c49487195da1219776a=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-ping-source-rhel8 | |
registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:37bd7479f93d729c294e2d8b31ba87bfab58334c860ee6ed65df25a31088c1a1=127.0.0.1:5000/openshift/openshift4/ose-sriov-network-config-daemon | |
registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:307420388026453123e543594c31aa76e20de6c24faf218bd9f8eb84a0a9837f=127.0.0.1:5000/openshift/openshift4/ose-sriov-network-config-daemon | |
registry.redhat.io/rhacm1-tech-preview/drishti-cis-rhel7@sha256:177ab2dc5ff946249a069c851c6039db1e654a3f4dc060987cbda112e71b5786=127.0.0.1:5000/openshift/rhacm1-tech-preview/drishti-cis-rhel7 | |
registry.redhat.io/rhacm1-tech-preview/cis-controller-rhel7@sha256:2e0edb08423c1de1ec461b9223ad99e4f78e148034006e750734445a303dfa3c=127.0.0.1:5000/openshift/rhacm1-tech-preview/cis-controller-rhel7 | |
registry.redhat.io/rhdm-7/rhdm-controller-rhel8@sha256:47779af90707a6b8239ed848cd472eca55949c60927ded8b9ed295716dbb94c9=127.0.0.1:5000/openshift/rhdm-7/rhdm-controller-rhel8 | |
registry.redhat.io/rhcam-1-1/openshift-migration-registry-rhel8@sha256:0ae610db4f73b6a5353c4821165bd60a8c4e86ac5ba5f1d60cd532f5bcd814bd=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-registry-rhel8 | |
registry.redhat.io/openshift-service-mesh/citadel-rhel8@sha256:76e95d88e3c07aa5c0b6bc8fd09fb51642e736415c01e0c94789dc4db51ad40f=127.0.0.1:5000/openshift/openshift-service-mesh/citadel-rhel8 | |
registry.redhat.io/codeready-workspaces/theia-endpoint-rhel8@sha256:ce46c5c0f76b5a3dfde85ea47c3b447fe69a9bfe39c3359ff0fef61bc356def9=127.0.0.1:5000/openshift/codeready-workspaces/theia-endpoint-rhel8 | |
registry.redhat.io/codeready-workspaces/server-rhel8@sha256:4b690f9769ba255d3515afc6f9190bf5a0373fc85f0e47b4932fa4c156470e3d=127.0.0.1:5000/openshift/codeready-workspaces/server-rhel8 | |
registry.redhat.io/rhscl/postgresql-96-rhel7@sha256:196abd9a1221fb38dd5693203f068fc4d520bb351928ef84e5e15984f5152476=127.0.0.1:5000/openshift/rhscl/postgresql-96-rhel7 | |
registry.redhat.io/3scale-amp2/system-rhel7@sha256:29836068f71f53f88b75345055808106cb4620bf3d488bd458709936d716377f=127.0.0.1:5000/openshift/3scale-amp2/system-rhel7 | |
registry.redhat.io/rhacm1-tech-preview/cainjector-rhel8@sha256:f8e948a3b5b61760ca304ad35519695cdbda4d76d9ddafa87478928b8444398a=127.0.0.1:5000/openshift/rhacm1-tech-preview/cainjector-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/img-minio-rhel7@sha256:e5fef6cfdb498c97d07e62a819102ea47a88135dcbfd06e6015a04936fe11da4=127.0.0.1:5000/openshift/rhacm1-tech-preview/img-minio-rhel7 | |
registry.redhat.io/rhcam-1-2/openshift-migration-hook-runner-rhel7@sha256:86a048f0ee9726b4331d10190dc5851330b66c0326d94652ac07f33a501ae323=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-hook-runner-rhel7 | |
registry.redhat.io/openshift4/ose-logging-kibana5@sha256:24724e7ca9abd46da805c597e85aaa744a3fabaf3e7e17a23cd20979a528dc61=127.0.0.1:5000/openshift/openshift4/ose-logging-kibana5 | |
registry.redhat.io/openshift4/ose-template-service-broker@sha256:825caaeffbe3162d3c7a532d918ca77953d376b0cb38f92c99312c6804ef1f0a=127.0.0.1:5000/openshift/openshift4/ose-template-service-broker | |
registry.redhat.io/openshift-serverless-1/serving-activator-rhel8@sha256:26ed0e5a774f2a2a4bffccd804ec26f17ad5ff37ec95b13c7bf97928884b8932=127.0.0.1:5000/openshift/openshift-serverless-1/serving-activator-rhel8 | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator:1.0.8=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator:1.0.8 | |
registry.redhat.io/codeready-workspaces/pluginregistry-rhel8@sha256:6cd737a9e9df54407959a0e8e4bb6a3e3b9e37cf590193545f609b2c4af4bf46=127.0.0.1:5000/openshift/codeready-workspaces/pluginregistry-rhel8 | |
registry.redhat.io/jboss-eap-7/eap73-rhel8-operator:1.0=127.0.0.1:5000/openshift/jboss-eap-7/eap73-rhel8-operator:1.0 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator:1.0.6=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator:1.0.6 | |
registry.redhat.io/container-native-virtualization/virt-cdi-operator:v2.2.0-5=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-operator:v2.2.0-5 | |
registry.redhat.io/container-native-virtualization/hyperconverged-cluster-operator@sha256:c47d457c5e3c0d34cc4659243c64d9e1a6589b9459e087ba5a4822578aea93b0=127.0.0.1:5000/openshift/container-native-virtualization/hyperconverged-cluster-operator | |
registry.redhat.io/rhacm1-tech-preview/multicluster-operators-placementrule-rhel8@sha256:e96d2b5ef16de9825c831a30991cca39968c9b42d5ba21f3743de57d1fe03e5f=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-placementrule-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/multiclusterhub-repo-rhel8@sha256:264952dbc72948c0566d83e5c48fd1663f5ca4111ace8534faf5f5497f5f3cdb=127.0.0.1:5000/openshift/rhacm1-tech-preview/multiclusterhub-repo-rhel8 | |
registry.redhat.io/distributed-tracing/jaeger-agent-rhel7:1.17.1-2=127.0.0.1:5000/openshift/distributed-tracing/jaeger-agent-rhel7:1.17.1-2 | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator:1.0.6=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator:1.0.6 | |
registry.redhat.io/openshift4/ose-elasticsearch-operator@sha256:06cc3bb287740360e4c0071dab8ea4254baa02a67205424241cfbfe8b2b8f375=127.0.0.1:5000/openshift/openshift4/ose-elasticsearch-operator | |
registry.redhat.io/container-native-virtualization/virt-handler:v2.2.0-15=127.0.0.1:5000/openshift/container-native-virtualization/virt-handler:v2.2.0-15 | |
registry.redhat.io/ocs4/ocs-rhel8-operator@sha256:b29cf1d54b914d1e1841e98c4cc05cab20842ad7d532d5b902024a5f59ba185d=127.0.0.1:5000/openshift/ocs4/ocs-rhel8-operator | |
registry.redhat.io/rhacm1-tech-preview/multicluster-operators-subscription-rhel8-operator@sha256:25ca18c488d764ed4e480ef14abb1be5f22e1622333eb62767296781b6842854=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-subscription-rhel8-operator | |
registry.redhat.io/rhacm1-tech-preview/console-api-rhel8@sha256:e565c8b172dd3946afb6994e2bb754f0cf4219c5189898f92a92b1e356ccee36=127.0.0.1:5000/openshift/rhacm1-tech-preview/console-api-rhel8 | |
registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel7@sha256:90d3c7f2d5553523a67894eda776b4bd4d70aa48582b07ce3bca50bf235fb046=127.0.0.1:5000/openshift/openshift4/ose-clusterresourceoverride-rhel7 | |
registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator@sha256:02e8777fa295e6615bbd73f3d92911e7e7029b02cdf6346eba502aaeb8fe3de1=127.0.0.1:5000/openshift/codeready-workspaces/crw-2-rhel8-operator | |
registry.redhat.io/datagrid/datagrid-8-rhel8-operator@sha256:8901762ba5a9ecf459af50a39800aa1177286b61a409072a50b630cf2ac0935f=127.0.0.1:5000/openshift/datagrid/datagrid-8-rhel8-operator | |
registry.redhat.io/rhpam-7/rhpam-businesscentral-rhel8@sha256:43674501114fe87ad692b3dcc00e0c3c8a98cef0876c0b70051904c0330d5152=127.0.0.1:5000/openshift/rhpam-7/rhpam-businesscentral-rhel8 | |
registry.redhat.io/rhcam-1-2/openshift-migration-velero-rhel8@sha256:67e34863ff7a671c86d65274a47febe783c76039e0e1526186da0079245021bc=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-velero-rhel8 | |
registry.redhat.io/codeready-workspaces/theia-rhel8@sha256:cc2b7d42139515bba029554f79ee03b26a207b37d27a8f177a565debdcf62cac=127.0.0.1:5000/openshift/codeready-workspaces/theia-rhel8 | |
registry.redhat.io/ocs4/rook-ceph-rhel8-operator@sha256:5feddbd9232657b2828dc9ce617204cfccef09b692ded624e29ce5af9928759d=127.0.0.1:5000/openshift/ocs4/rook-ceph-rhel8-operator | |
registry.redhat.io/quay/quay-openshift-bridge-rhel8-operator@sha256:a5f3cb5e789ae7c1f678d528a3820fabbc70545b1170a32394cefac15428f162=127.0.0.1:5000/openshift/quay/quay-openshift-bridge-rhel8-operator | |
registry.redhat.io/openshift4/ose-sriov-cni@sha256:ba344f44d384638b6bb8bd1691a364fc90c0853cdf2612a03de79d932a0237db=127.0.0.1:5000/openshift/openshift4/ose-sriov-cni | |
registry.redhat.io/rhacm1-tech-preview/mcm-topology-api-rhel8@sha256:50fd5766ece093c8ee3a67219c41cf4f69cab9781d54acdc7010c2e6a8842d63=127.0.0.1:5000/openshift/rhacm1-tech-preview/mcm-topology-api-rhel8 | |
registry.redhat.io/rhpam-7/rhpam74-operator:1.1=127.0.0.1:5000/openshift/rhpam-7/rhpam74-operator:1.1 | |
registry.redhat.io/openshift3/ose-cli@sha256:49f5a5a3f5e514c48200fefe6e68072573deb5bca607fa979e196f3a221ddcfd=127.0.0.1:5000/openshift/openshift3/ose-cli | |
registry.redhat.io/openshift4/ose-local-storage-static-provisioner@sha256:a9bad8b80cd306ef54a99bd086a3b3dbfc5fabd90fd3966ad718759208eab58f=127.0.0.1:5000/openshift/openshift4/ose-local-storage-static-provisioner | |
registry.redhat.io/openshift-service-mesh/mixer-rhel8@sha256:5160a7cb00a0942ab1df0b5684d4364e1380984bc5342eb4f6c654906eeb3acd=127.0.0.1:5000/openshift/openshift-service-mesh/mixer-rhel8 | |
registry.redhat.io/distributed-tracing/jaeger-rhel7-operator:1.13.1=127.0.0.1:5000/openshift/distributed-tracing/jaeger-rhel7-operator:1.13.1 | |
registry.redhat.io/distributed-tracing/jaeger-query-rhel7@sha256:2bfbf1994d9ae024438744fcededadcc804ee05406a79cb50f9eab088cc8d500=127.0.0.1:5000/openshift/distributed-tracing/jaeger-query-rhel7 | |
registry.redhat.io/container-native-virtualization/kubernetes-nmstate-handler-rhel8:v2.2.0-13=127.0.0.1:5000/openshift/container-native-virtualization/kubernetes-nmstate-handler-rhel8:v2.2.0-13 | |
registry.redhat.io/rhacm1-tech-preview/cis-crawler-rhel8@sha256:634ca8fad632e1c2668a0de7a9a66bae8da61457d18276191c563ba59659fcb7=127.0.0.1:5000/openshift/rhacm1-tech-preview/cis-crawler-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/cert-manager-controller-rhel8@sha256:cab8e2d507a207cc1bea33f0dbf6c3efc7ae3d119d960609a4fd1207ff402c44=127.0.0.1:5000/openshift/rhacm1-tech-preview/cert-manager-controller-rhel8 | |
registry.redhat.io/amq7/amq-streams-kafka-24-rhel7@sha256:a5bf425af1aaa6e7dbcef9d92e4d4982d4f606075bd6365c6d4fc9ecbb7b0300=127.0.0.1:5000/openshift/amq7/amq-streams-kafka-24-rhel7 | |
registry.redhat.io/rhpam-7/rhpam-businesscentral-monitoring-rhel8@sha256:f236fb93165f83b88a9edda70f05fe9eaab2f6f3838f18eead2c1cd8318c03d9=127.0.0.1:5000/openshift/rhpam-7/rhpam-businesscentral-monitoring-rhel8 | |
registry.redhat.io/openshift4/ose-elasticsearch-operator@sha256:882fff755fb513b7af659e5b47643bffe9d2ce9d492e208bbc4aa9b390570310=127.0.0.1:5000/openshift/openshift4/ose-elasticsearch-operator | |
registry.redhat.io/openshift-service-mesh/proxy-init-rhel7@sha256:3dd1e571bba4a0db27a0a4ee0a1315f4b2df91ee192791312c598a05107414e3=127.0.0.1:5000/openshift/openshift-service-mesh/proxy-init-rhel7 | |
registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel8-operator:v2.2.0-11=127.0.0.1:5000/openshift/container-native-virtualization/hostpath-provisioner-rhel8-operator:v2.2.0-11 | |
registry.redhat.io/container-native-virtualization/virt-cdi-apiserver@sha256:2cc29cc562392969fe46dbc3e0c805631b5e6ea1a17d5c842ca494f5bdf44b3e=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-apiserver | |
registry.redhat.io/container-native-virtualization/kubevirt-cpu-model-nfd-plugin@sha256:6c363711337f664dce0379a27073190f97d7058094ae673d4a269de367d82eee=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-cpu-model-nfd-plugin | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator:1.0.2=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator:1.0.2 | |
registry.redhat.io/openshift-service-mesh/ior-rhel8@sha256:93f4f298d09bee60c79aa29d58dbb67a3ac2902c06b31a96c389992e989d3146=127.0.0.1:5000/openshift/openshift-service-mesh/ior-rhel8 | |
registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator@sha256:e77a4e727f824c033b2e98b6dd862cc58ee9ef3e008f3a7244c59a337f71c65c=127.0.0.1:5000/openshift/codeready-workspaces/crw-2-rhel8-operator | |
registry.redhat.io/openshift4/ose-elasticsearch-operator@sha256:aa0c7b11a655454c5ac6cbc772bc16e51ca5004eedccf03c52971e8228832370=127.0.0.1:5000/openshift/openshift4/ose-elasticsearch-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-apiserver-receive-adapter-rhel8@sha256:dc62717a3b102216ab7cd34759d41c41a684d2e344270a62a5cd8ff04e50f6f1=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-apiserver-receive-adapter-rhel8 | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator@sha256:4ce885228ddf49b27cb34a161361dcb7c0d3395a7d90405383792607bf8ffd39=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
registry.redhat.io/codeready-workspaces/stacks-golang-rhel8@sha256:49cde28ff98ab79a0c011852ab33a3f74987979f02f9c15fe8f4cb132b8fe6f3=127.0.0.1:5000/openshift/codeready-workspaces/stacks-golang-rhel8 | |
registry.redhat.io/openshift-service-mesh/proxyv2-rhel8@sha256:0e1a36423ea67f13b19276aeb98cd288bbc318cc98545bffa684fbd57af236b4=127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
registry.redhat.io/amq7/amq-broker@sha256:ba5273b390a4762c21f005fdc92a837680417250dcd5e6d9d3c8f776e9cc372e=127.0.0.1:5000/openshift/amq7/amq-broker | |
registry.redhat.io/fuse7/fuse-online-operator:1.6=127.0.0.1:5000/openshift/fuse7/fuse-online-operator:1.6 | |
registry.redhat.io/distributed-tracing/jaeger-collector-rhel7@sha256:d6a7f762793eb245d6cff2dbc81cc22527c4ff93c7e62563f9b597a91501d7e6=127.0.0.1:5000/openshift/distributed-tracing/jaeger-collector-rhel7 | |
registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:72f494e8f6faec98459de0e6f0e6a60f93417981c8598fca3b4f02a50a2846a9=127.0.0.1:5000/openshift/openshift4/ose-node-feature-discovery | |
registry.redhat.io/openshift-service-mesh/citadel-rhel8@sha256:f086c33effa80982191d20ca2dde3856ec8fd434336080d3664fafd2c0b7ba34=127.0.0.1:5000/openshift/openshift-service-mesh/citadel-rhel8 | |
registry.redhat.io/3scale-amp2/system-rhel7@sha256:93819c324831353bb8f7cb6e9910694b88609c3a20d4c1b9a22d9c2bbfbad16f=127.0.0.1:5000/openshift/3scale-amp2/system-rhel7 | |
registry.redhat.io/3scale-amp2/memcached-rhel7@sha256:ff5f3d2d131631d5db8985a5855ff4607e91f0aa86d07dafdcec4f7da13c9e05=127.0.0.1:5000/openshift/3scale-amp2/memcached-rhel7 | |
registry.redhat.io/rhacm1-tech-preview/grc-ui-api-rhel8@sha256:5117730b0e2eeaf82357b1575a9a6f9b58beeb8e17ce87bb19d3a48eb11e36b0=127.0.0.1:5000/openshift/rhacm1-tech-preview/grc-ui-api-rhel8 | |
registry.redhat.io/openshift4/ose-logging-fluentd@sha256:fad37575c2e18781862ec6ed5571b573e3c80d6e8d9349cdd6fe3a8c003f3f40=127.0.0.1:5000/openshift/openshift4/ose-logging-fluentd | |
registry.redhat.io/distributed-tracing/jaeger-collector-rhel7@sha256:5f07ffb1dc5e91e2bd7b196ad83ba75c8fe9dcf033625e8da6f682da33956257=127.0.0.1:5000/openshift/distributed-tracing/jaeger-collector-rhel7 | |
registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:b556bc163d115206dfe1db76aa9dbd2f38cde73744b0d5ed1ae60cf3968cb794=127.0.0.1:5000/openshift/openshift4/ose-sriov-dp-admission-controller | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator:1.0.3=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator:1.0.3 | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator:1.0.9=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator:1.0.9 | |
registry.redhat.io/rhacm1-tech-preview/endpoint-rhel8-operator@sha256:8c46976672d495277bd668bc4a74c35709d623d355037564f7624e0e7f117451=127.0.0.1:5000/openshift/rhacm1-tech-preview/endpoint-rhel8-operator | |
registry.redhat.io/rhacm1-tech-preview/multicluster-mongodb-rhel7@sha256:940a9abe86d684e4f4857a18c0507a85eb2af6eb66a37d0ce8443c1dc5a5c4ff=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-mongodb-rhel7 | |
registry.redhat.io/container-native-virtualization/kubevirt-ssp-operator:v2.1.0-22=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-ssp-operator:v2.1.0-22 | |
registry.redhat.io/container-native-virtualization/kubevirt-v2v-conversion@sha256:3c139dc309518bb745e94ae7193f810482c92bcef2f19d2c4cd356b342101bb7=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-v2v-conversion | |
registry.redhat.io/openshift-service-mesh/proxyv2-rhel8@sha256:be1e61060e5663bc628147a1a56e16dd1fdba7a0f200eda75c6d997c18e15306=127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-channel-broker-rhel8@sha256:8f4a25b4a1c9cefe9ad7820fb4aa14ffe8c3e28dbe9609e026666ab2f46a1113=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-channel-broker-rhel8 | |
registry.redhat.io/openshift-service-mesh/ior-rhel8@sha256:70bbe9566302e267f9b4e02409cd3a017fb0704c63ec8d22833cf6ea6254b047=127.0.0.1:5000/openshift/openshift-service-mesh/ior-rhel8 | |
registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:208878e1c3a05898c1f27f4ca9f9f87dc54c2e5d9f5f189ada075cc6a1c69b32=127.0.0.1:5000/openshift/openshift4/ose-sriov-network-device-plugin | |
registry.redhat.io/amq7/amq-streams-rhel7-operator@sha256:4079eadd9a806adfbf3222f071c0498b17a6c54f9b8d199cf5af4961bcbdd83a=127.0.0.1:5000/openshift/amq7/amq-streams-rhel7-operator | |
registry.redhat.io/codeready-workspaces/stacks-dotnet-rhel8@sha256:fb1e80bb48af5c8202377eb115d42215c52a5dc37c4696bcfda341f25fbe2296=127.0.0.1:5000/openshift/codeready-workspaces/stacks-dotnet-rhel8 | |
registry.redhat.io/container-native-virtualization/kubevirt-kvm-info-nfd-plugin:v2.2.0-3=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-kvm-info-nfd-plugin:v2.2.0-3 | |
registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:33d0c61bfaaa1e40a6c2cf4c2db29e5dbf065405fe558f396ab39814c445b2c6=127.0.0.1:5000/openshift/openshift4/ose-node-feature-discovery | |
registry.redhat.io/openshift-serverless-1/ingress-rhel8-operator@sha256:3b7351d87a58a62dd61dd3d2870b0ac5427ab059d88ae752c6879eb829ecc60b=127.0.0.1:5000/openshift/openshift-serverless-1/ingress-rhel8-operator | |
registry.redhat.io/openshift4/ose-metering-reporting-operator@sha256:4bc0315f4c7ea68a3f5b63cb2eee67a8aca3c6f50ed222fa3be2e2e36f252f0f=127.0.0.1:5000/openshift/openshift4/ose-metering-reporting-operator | |
registry.redhat.io/openshift-serverless-1/kourier-control-rhel8@sha256:8c857c1506166cc99e5586c6dd2d39966e26992683af1285f01c90ccedc54011=127.0.0.1:5000/openshift/openshift-serverless-1/kourier-control-rhel8 | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-channel-broker-rhel8@sha256:76d57d05a692ea9021dc77b3b0951899002f57b0bdb2ad730792efa0c4b3aaf5=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-channel-broker-rhel8 | |
registry.redhat.io/3scale-amp2/backend-rhel7@sha256:d8322db4149afc5672ebc3d0430a077c58a8e3e98d7fce720b6a5a3d2498c9c5=127.0.0.1:5000/openshift/3scale-amp2/backend-rhel7 | |
registry.redhat.io/rhpam-7/rhpam-smartrouter-rhel8@sha256:34ccf7889abce588bf0db5956b1747d785934dc5630135094949318bef49a70e=127.0.0.1:5000/openshift/rhpam-7/rhpam-smartrouter-rhel8 | |
registry.redhat.io/container-native-virtualization/ovs-cni-marker@sha256:bd20a0e214fb00bc17345f96e7f8551c6c5c49b002fbd142957e110a67ae6aa9=127.0.0.1:5000/openshift/container-native-virtualization/ovs-cni-marker | |
registry.redhat.io/openshift4/ose-ansible-service-broker@sha256:33c3e3ced6a893fba5c46537829b610d137d37a46c5b5281c1a3720e18e63ef7=127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker | |
registry.redhat.io/openshift-serverless-1/knative-rhel8-operator@sha256:06d87ec86111da5c515ff1fc85b550b3d6646aab63ab8484a869ad85d157b987=127.0.0.1:5000/openshift/openshift-serverless-1/knative-rhel8-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/knative-serving-rhel8-operator@sha256:06847407883d00871a19b9183824d77895e68aa6439d80e0e4a4eb4151ec1c86=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/knative-serving-rhel8-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-autoscaler-hpa-rhel8@sha256:b8cb614a126c4c4535d79d5978a4c1d425959fd1ffe94470d9d814bff8711117=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-autoscaler-hpa-rhel8 | |
registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:ae394bc282588c03f1bf8e3343bdb072ab3494d410c98021559b18abd3b4bfdb=127.0.0.1:5000/openshift/openshift4/ose-sriov-network-operator | |
registry.redhat.io/rhacm1-tech-preview/iam-policy-controller-rhel7@sha256:911678c4da03bffba2b516738878231cc9b3b4c416ad1377ae5dd494b49b5cce=127.0.0.1:5000/openshift/rhacm1-tech-preview/iam-policy-controller-rhel7 | |
registry.redhat.io/rhpam-7/rhpam-businesscentral-monitoring-rhel8@sha256:db84958e32e5857c60d088f3866665c4405234a961f571b91161f31eb3d35cca=127.0.0.1:5000/openshift/rhpam-7/rhpam-businesscentral-monitoring-rhel8 | |
registry.redhat.io/openshift4/ose-logging-kibana5@sha256:d3af8ffe2c875f2129566e87ec67175a9c20956872ccb14792a330bf774d79d2=127.0.0.1:5000/openshift/openshift4/ose-logging-kibana5 | |
registry.redhat.io/openshift4/ose-template-service-broker@sha256:0d08759855b7f82a0c2775ae7b3f9e02fa5aafb0a06fa571de3420d861f797da=127.0.0.1:5000/openshift/openshift4/ose-template-service-broker | |
registry.redhat.io/openshift-serverless-1-tech-preview/ingress-rhel8-operator:0.0.13-1=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/ingress-rhel8-operator:0.0.13-1 | |
registry.redhat.io/rhacm1-tech-preview/openshift-hive-rhel7-operator@sha256:fb682db66e8e6befa0ad9886b4f6f715674a02639a66aba0dbda32ae0c31d101=127.0.0.1:5000/openshift/rhacm1-tech-preview/openshift-hive-rhel7-operator | |
registry.redhat.io/rhacm1-tech-preview/console-header-rhel8@sha256:1509cb076ade7d5fdf112ef90c948d1035c517f01a233b5675f5b29fd44de7b0=127.0.0.1:5000/openshift/rhacm1-tech-preview/console-header-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/endpoint-component-rhel8-operator@sha256:da5e5abc6a8ca8f67f8905f7e9defd4ab950ecb0cc5dacde81ac8210f3d53a3d=127.0.0.1:5000/openshift/rhacm1-tech-preview/endpoint-component-rhel8-operator | |
registry.redhat.io/amq7-tech-preview/amq-online-1-iot-sigfox-adapter-rhel7:1.4=127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-sigfox-adapter-rhel7:1.4 | |
registry.redhat.io/container-native-virtualization/bridge-marker@sha256:1737050d3eb130a273d392046267b3390d65922d736bf158852aaae2e9920cb1=127.0.0.1:5000/openshift/container-native-virtualization/bridge-marker | |
registry.redhat.io/openshift4/ose-elasticsearch-operator@sha256:9603cef2ceb5150e7bf2b878a64cab30b3fa525e2a0dd3de93412c9baa3da2d5=127.0.0.1:5000/openshift/openshift4/ose-elasticsearch-operator | |
registry.redhat.io/container-native-virtualization/virt-controller@sha256:aa7db83e1b7a3e177705d4bda77ab5f2d5396a4a142f0465cc51bb897da54fe7=127.0.0.1:5000/openshift/container-native-virtualization/virt-controller | |
registry.redhat.io/openshift-serverless-1-tech-preview/ingress-rhel8-operator@sha256:77d4e74c63b6f0930e2ecf14c611c17cd0d288b1216422476d909e655f5ee827=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
registry.redhat.io/3scale-amp2/zync-rhel7@sha256:f4d5c1fdebe306f4e891ddfc4d3045a622d2f01db21ecfc9397cab25c9baa91a=127.0.0.1:5000/openshift/3scale-amp2/zync-rhel7 | |
registry.redhat.io/redhat-sso-7/sso73-openshift:latest=127.0.0.1:5000/openshift/redhat-sso-7/sso73-openshift:latest | |
registry.redhat.io/rhpam-7/rhpam-controller-rhel8@sha256:511bd9427fa369a50df782a6cf7370b4bf42eb5b995a7494ff88d6df6b621a55=127.0.0.1:5000/openshift/rhpam-7/rhpam-controller-rhel8 | |
registry.redhat.io/rhcam-1-1/openshift-migration-velero-plugin-for-aws-rhel8@sha256:460dfc455de7ee6a2e49d17d5227c5d653340197b7ad9ed430576c35f4651f4d=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-velero-plugin-for-aws-rhel8 | |
registry.redhat.io/codeready-workspaces/stacks-node-rhel8@sha256:c88277efda0208d4960917a381278e0956b0839f46fdbe51384370755caa180a=127.0.0.1:5000/openshift/codeready-workspaces/stacks-node-rhel8 | |
registry.redhat.io/openshift-service-mesh/grafana-rhel8@sha256:d32777d24c4f4cb75de1e4baad7309c4366af001dcec18bf700a36705f422b77=127.0.0.1:5000/openshift/openshift-service-mesh/grafana-rhel8 | |
registry.redhat.io/openshift4/ose-sriov-cni@sha256:efe4e8f49c274762e9fda1879205ffa5242426335934140c314c34eed73bd445=127.0.0.1:5000/openshift/openshift4/ose-sriov-cni | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-autoscaler-rhel8@sha256:2a3dade388c15f6c839b4e746e2ae80bc4a22c727a01d5c2d3f06609b234c08f=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-autoscaler-rhel8 | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-broker-filter-rhel8@sha256:6e096128d7dbfcbc342b5b48c3b0e1adc4e0ecdd7a46984a59ad6d1477ff642b=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-broker-filter-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/grc-ui-rhel8@sha256:06d4626711018524166832220144c660540bc7e57886779dfcfd69c8ee9ad642=127.0.0.1:5000/openshift/rhacm1-tech-preview/grc-ui-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/configmap-watcher-rhel8@sha256:9c67210d614f725168b404e105be792de6750010969b0dc8d6cd3f38df35c84c=127.0.0.1:5000/openshift/rhacm1-tech-preview/configmap-watcher-rhel8 | |
registry.redhat.io/amq7/amq-broker-rhel8-operator:0.10=127.0.0.1:5000/openshift/amq7/amq-broker-rhel8-operator:0.10 | |
registry.redhat.io/openshift4/ose-ansible-service-broker@sha256:3a7a31e167d67751a3652c991d81684fa82c1b2c547ccf8b987f56691e8ae183=127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker | |
registry.redhat.io/openshift-serverless-1-tech-preview/ingress-rhel8-operator:0.0.9-1=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/ingress-rhel8-operator:0.0.9-1 | |
registry.redhat.io/rhdm-7/rhdm-decisioncentral-rhel8@sha256:be1c8fca841bffd7d63bb8522bb7a7b35d18acd36e1cd8e576ea111d9f9e48f1=127.0.0.1:5000/openshift/rhdm-7/rhdm-decisioncentral-rhel8 | |
registry.redhat.io/container-native-virtualization/virt-cdi-uploadproxy:v2.2.0-5=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-uploadproxy:v2.2.0-5 | |
registry.redhat.io/openshift4/ose-ghostunnel@sha256:d505ef95d555e62c2d9766602aac391796d252b17a0cafb9009a4ce207428271=127.0.0.1:5000/openshift/openshift4/ose-ghostunnel | |
registry.redhat.io/rhacm1-tech-preview/redisgraph-tls-rhel8@sha256:25ec5d16e4d5fe1e0f569cba7a1ae0aaef6cf21aacc3ce77d7a2e6aaeb62ea20=127.0.0.1:5000/openshift/rhacm1-tech-preview/redisgraph-tls-rhel8 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator:1.0.12=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator:1.0.12 | |
registry.redhat.io/openshift-service-mesh/sidecar-injector-rhel8@sha256:bd361cf4c1e37fe6a574821098c616b5543914ca8ae6de8f60889ced2008fe74=127.0.0.1:5000/openshift/openshift-service-mesh/sidecar-injector-rhel8 | |
registry.redhat.io/rhcam-1-1/openshift-migration-velero-rhel8@sha256:db2997115d8a0767d61038e14f48170dc53d3c54b977184e7ecb37ead2f131da=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-velero-rhel8 | |
registry.redhat.io/codeready-workspaces/jwtproxy-rhel8@sha256:63182dae6377ac01fbebdcb9c6a4435681ea88521cfc6e4222fe3920a3641127=127.0.0.1:5000/openshift/codeready-workspaces/jwtproxy-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/endpoint-component-rhel8-operator@sha256:6fa751bffbfc231a3f02e31668130126725f5fa2a98ec21d1622d53c623603d1=127.0.0.1:5000/openshift/rhacm1-tech-preview/endpoint-component-rhel8-operator | |
registry.redhat.io/rhdm-7/rhdm-controller-rhel8@sha256:92542ad2b83f42eb0f245daa1e732c752d9c164f31fb963f42ac876aeba42c98=127.0.0.1:5000/openshift/rhdm-7/rhdm-controller-rhel8 | |
registry.redhat.io/rhcam-1-2/openshift-migration-rhel7-operator@sha256:3623ebd41af9b54c0bdc454f87d47b8d2ca8cc3d241ab0e4033fb7ae2616db9a=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-rhel7-operator | |
registry.redhat.io/distributed-tracing/jaeger-collector-rhel7:1.17.1-2=127.0.0.1:5000/openshift/distributed-tracing/jaeger-collector-rhel7:1.17.1-2 | |
registry.redhat.io/openshift-service-mesh/pilot-rhel8@sha256:5ef83ddc7f1f26aa20102dab19a096884ad590efb7972b1ca25481aa7be1160c=127.0.0.1:5000/openshift/openshift-service-mesh/pilot-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/grc-ui-api-rhel8@sha256:ca4d3e9d153d1017aa45138b9a73812d0204a7f4daef0e40f584418515dc8712=127.0.0.1:5000/openshift/rhacm1-tech-preview/grc-ui-api-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/search-collector-rhel7@sha256:8206e568b17a258d5ccdbe3c58174628016eba1bbc7c1dfed9d6c8dc33ba43de=127.0.0.1:5000/openshift/rhacm1-tech-preview/search-collector-rhel7 | |
registry.redhat.io/quay/quay-container-security-rhel8-operator@sha256:7bd0b902807507b3a3c623af7a5cb8dcb838537075eb064dc2ab458d5d437983=127.0.0.1:5000/openshift/quay/quay-container-security-rhel8-operator | |
registry.redhat.io/distributed-tracing/jaeger-all-in-one-rhel7@sha256:045d7c25b08619dacf6efb2b2b9a95ec8a39c8cc1789c2fa50b8c2b81437d1ca=127.0.0.1:5000/openshift/distributed-tracing/jaeger-all-in-one-rhel7 | |
registry.redhat.io/openshift4/ose-template-service-broker-operator@sha256:255aa43492854d4c01fa5edc031d46dcb70f15564d05e9b48ef1fbe178925f3d=127.0.0.1:5000/openshift/openshift4/ose-template-service-broker-operator | |
registry.redhat.io/3scale-amp2/apicast-rhel7-operator@sha256:7284d7f3c13e3da2a96dd35489e9b175420badb9057d3dfabdf63c4d27284c55=127.0.0.1:5000/openshift/3scale-amp2/apicast-rhel7-operator | |
registry.redhat.io/codeready-workspaces/stacks-python-rhel8@sha256:2058a74f04a03b125e40006496c1a363ea34dd354cfceaa0f5a3faae934e4ecb=127.0.0.1:5000/openshift/codeready-workspaces/stacks-python-rhel8 | |
registry.redhat.io/openshift4/ose-sriov-cni@sha256:277625316314a99881782618ee53846d11aeeca8aa1c96460c519cc0b18c23df=127.0.0.1:5000/openshift/openshift4/ose-sriov-cni | |
registry.redhat.io/openshift3/oauth-proxy:latest=127.0.0.1:5000/openshift/openshift3/oauth-proxy:latest | |
registry.redhat.io/rhcam-1-1/openshift-migration-velero-plugin-for-microsoft-azure-rhel8@sha256:9e69f2af712452218cde0c3325c60f9e1eb4624bcaff67770822b60f2e19ac60=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-velero-plugin-for-microsoft-azure-rhel8 | |
registry.redhat.io/openshift4/ose-oauth-proxy@sha256:43fde141b6670727a1771fa52cd125b366275786b4be0a0a0c57005fd6e0c912=127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
registry.redhat.io/container-native-virtualization/kubevirt-metrics-collector:v2.2.0-3=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-metrics-collector:v2.2.0-3 | |
registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel8@sha256:9f8f394c231371cd165657e718250656be5b8a0e8baf07d0f1d16a773ba86be0=127.0.0.1:5000/openshift/container-native-virtualization/hostpath-provisioner-rhel8 | |
registry.redhat.io/rhpam-7/rhpam-businesscentral-monitoring-rhel8@sha256:18571b10e500d7579f64e1b1d8aecdd7beba45d2c886054342922149f00194b4=127.0.0.1:5000/openshift/rhpam-7/rhpam-businesscentral-monitoring-rhel8 | |
registry.redhat.io/rhpam-7/rhpam-businesscentral-rhel8@sha256:8eeaa8b6ef049bad0aba252eebad45ca704b97d638a4a789899000b2143b8f11=127.0.0.1:5000/openshift/rhpam-7/rhpam-businesscentral-rhel8 | |
registry.redhat.io/codeready-workspaces/stacks-php-rhel8@sha256:8d31367e1e3a246808e62ec9ff7309d1e41f036acd134aa1361d1004c55bc3c5=127.0.0.1:5000/openshift/codeready-workspaces/stacks-php-rhel8 | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-cronjob-receive-adapter-rhel8@sha256:b3da61d3b7097e59ccae1559df3be09579186cd085939262f081b2193e9ff05c=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-cronjob-receive-adapter-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/search-aggregator-rhel7@sha256:4e5407d1ecd1cca75bf5477033e8e88fef24fbf71da32edcda48586d5fcff824=127.0.0.1:5000/openshift/rhacm1-tech-preview/search-aggregator-rhel7 | |
registry.redhat.io/distributed-tracing/jaeger-agent-rhel7@sha256:ab80b817e953ea6695ee2214325c8002149b8b5829b1d9b5a5db79e58c6b611e=127.0.0.1:5000/openshift/distributed-tracing/jaeger-agent-rhel7 | |
registry.redhat.io/container-native-virtualization/virt-cdi-controller@sha256:9a597775dda82b99c3c72e59061b2f98626eebf8cc85ad9a765654874333c945=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-controller | |
registry.redhat.io/openshift4/ose-local-storage-static-provisioner@sha256:f0df45a711dc020e6c299f70975afb20109ea0b3929e133e937de8819c5d5c6b=127.0.0.1:5000/openshift/openshift4/ose-local-storage-static-provisioner | |
registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:84399339b0c31968dd504661f4ac5c7072889a5f0491054fdb6497d91fd0ef4c=127.0.0.1:5000/openshift/openshift4/ose-sriov-network-operator | |
registry.redhat.io/container-native-virtualization/node-maintenance-operator:v2.1.0-11=127.0.0.1:5000/openshift/container-native-virtualization/node-maintenance-operator:v2.1.0-11 | |
registry.redhat.io/openshift4/ose-template-service-broker-operator@sha256:7efc385b9a93a5329297bb814757f7e73d844b2fd2fc0c21d53f6e7bb9011eaf=127.0.0.1:5000/openshift/openshift4/ose-template-service-broker-operator | |
registry.redhat.io/openshift-serverless-1/serving-autoscaler-rhel8@sha256:17b229f2c298d320f2bb69948ab430f5c9447315c4191efe343938f1203867fd=127.0.0.1:5000/openshift/openshift-serverless-1/serving-autoscaler-rhel8 | |
registry.redhat.io/rhscl/mysql-57-rhel7@sha256:9a781abe7581cc141e14a7e404ec34125b3e89c008b14f4e7b41e094fd3049fe=127.0.0.1:5000/openshift/rhscl/mysql-57-rhel7 | |
registry.redhat.io/rhpam-7/rhpam-kieserver-rhel8@sha256:071d0add5cbcf5ba06b3f87034a0dc8d80590ae7efc13f6fafaee63bc54dc090=127.0.0.1:5000/openshift/rhpam-7/rhpam-kieserver-rhel8 | |
registry.redhat.io/codeready-workspaces/pluginregistry-rhel8@sha256:9e4cbc596ffcbd2ec2d77198e590e4b383630b81133e52cd1064847ea8b6924d=127.0.0.1:5000/openshift/codeready-workspaces/pluginregistry-rhel8 | |
registry.redhat.io/codeready-workspaces/plugin-java11-rhel8@sha256:38e363ba28941e6ef688d511c388324d0f83f7a1fac3eb65e09aa50858f0ae84=127.0.0.1:5000/openshift/codeready-workspaces/plugin-java11-rhel8 | |
registry.redhat.io/codeready-workspaces/devfileregistry-rhel8@sha256:5fe90824cae009d0012f95a64edc751943469e0caa006bd3bdd9b9295e278971=127.0.0.1:5000/openshift/codeready-workspaces/devfileregistry-rhel8 | |
registry.redhat.io/rhscl/mongodb-36-rhel7@sha256:fa0d0c43f79410d7b2edeb78329e6bf5c9ca5ced141b12341eb34a4042a1dc0a=127.0.0.1:5000/openshift/rhscl/mongodb-36-rhel7 | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-autoscaler-hpa-rhel8@sha256:e400785e44de44655aa1c6419362f5c8f23fce2f775e4ebc4cc62487356238b7=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-autoscaler-hpa-rhel8 | |
registry.redhat.io/amq7-tech-preview/amq-online-1-iot-mqtt-adapter:1.4=127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-mqtt-adapter:1.4 | |
registry.redhat.io/container-native-virtualization/kubevirt-vmware@sha256:77d4b9552f75909d10ce752d2ca8bf5fb618900f630b222e163e0c34bf946324=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-vmware | |
registry.redhat.io/container-native-virtualization/cnv-must-gather-rhel8@sha256:fd13d4e8de307d93828c6a7c29e1926f55aa5a9ef66dd41f7e4310eab3e2f5a3=127.0.0.1:5000/openshift/container-native-virtualization/cnv-must-gather-rhel8 | |
registry.redhat.io/ocs4/ocs-rhel8-operator@sha256:54202499a2a7e87f5fa6afa28fe621fdb53b6e076c8417eda21c60816004c1be=127.0.0.1:5000/openshift/ocs4/ocs-rhel8-operator | |
registry.redhat.io/ocs4/cephcsi-rhel8@sha256:6b0b8fe1b7c809381f93e874c8b89b3cbb0ad7f183c8bc06c441efe48cf0a746=127.0.0.1:5000/openshift/ocs4/cephcsi-rhel8 | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-queue-rhel8@sha256:5fd257626d9fae4b7af4351ecddc6f90f7926b108961fbc3db5c32b2b4e91488=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-queue-rhel8 | |
registry.redhat.io/openshift-service-mesh/sidecar-injector-rhel8@sha256:70d89f0888dc52dfd97961d62270bd3fcdfe1fa457cc8bbba678832f0d5fc2fd=127.0.0.1:5000/openshift/openshift-service-mesh/sidecar-injector-rhel8 | |
registry.redhat.io/openshift-service-mesh/grafana-rhel8@sha256:44fb361aae40bef62186df44428cbf8bcabce2d645078313e4fd29cf9cb520ff=127.0.0.1:5000/openshift/openshift-service-mesh/grafana-rhel8 | |
registry.redhat.io/3scale-amp2/3scale-rhel7-operator:1.10-4=127.0.0.1:5000/openshift/3scale-amp2/3scale-rhel7-operator:1.10-4 | |
registry.redhat.io/rhcam-1-2/openshift-migration-velero-restic-restore-helper-rhel8@sha256:e9459138ec3531eefbefa181dae3fd93fe5cf210b2a0bd3bca7ba38fbec97f60=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-velero-restic-restore-helper-rhel8 | |
registry.redhat.io/openshift4/ose-logging-kibana5@sha256:2d4d5db7e259d920d293583b1942b50c7d8a108bd2421e535524f1ca5d0fe9b7=127.0.0.1:5000/openshift/openshift4/ose-logging-kibana5 | |
registry.redhat.io/openshift4/ose-oauth-proxy@sha256:5ec4225fcc6b5ee80b5e975d3930abb5e0428c0c77d1ca4401eff1a0044b4b0b=127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
registry.redhat.io/codeready-workspaces/plugin-openshift-rhel8@sha256:55efcaa2e449954b44c6d5678967426272e413322cbcd619c7832761357265ed=127.0.0.1:5000/openshift/codeready-workspaces/plugin-openshift-rhel8 | |
registry.redhat.io/rhcam-1-2/openshift-migration-plugin-rhel8@sha256:37d5167cbbeedcedaf6750d64ba992a75d3ae21f3d3df6c0c6eef6eb400dd076=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-plugin-rhel8 | |
registry.redhat.io/container-native-virtualization/cnv-containernetworking-plugins:v2.2.0-3=127.0.0.1:5000/openshift/container-native-virtualization/cnv-containernetworking-plugins:v2.2.0-3 | |
registry.redhat.io/openshift4/ose-template-service-broker-operator@sha256:520f9f596f624160721e202778d2dd17a10a802c4df577b6b9818b24b5dc72fa=127.0.0.1:5000/openshift/openshift4/ose-template-service-broker-operator | |
registry.redhat.io/openshift-service-mesh/mixer-rhel8@sha256:ad6ad158e647d11031d4478ed46bbabba83b4f66ba3a8068bd5ec82679511c5f=127.0.0.1:5000/openshift/openshift-service-mesh/mixer-rhel8 | |
registry.redhat.io/3scale-amp2/3scale-rhel7-operator@sha256:2ba16314ee046b3c3814fe4e356b728da6853743bd72f8651e1a338e8bbf4f81=127.0.0.1:5000/openshift/3scale-amp2/3scale-rhel7-operator | |
registry.redhat.io/rhpam-7/rhpam-kieserver-rhel8@sha256:d905132e2856709b053442fc586e8c63f5828eea37636bdd76ca57150828f47d=127.0.0.1:5000/openshift/rhpam-7/rhpam-kieserver-rhel8 | |
registry.redhat.io/rhscl/mongodb-34-rhel7@sha256:df0fe2700d0de97ed34e902f106c01c686536dd25477b86dd823a2806769c89c=127.0.0.1:5000/openshift/rhscl/mongodb-34-rhel7 | |
registry.redhat.io/openshift4/ose-local-storage-static-provisioner@sha256:2b2145b5dcd61c3d9c31c176e94acece6d62bcf760d40cfa775c0013c9a7fb3c=127.0.0.1:5000/openshift/openshift4/ose-local-storage-static-provisioner | |
registry.redhat.io/openshift4/ose-metering-ansible-operator@sha256:43e4643961d1805c034c78e56039badb581dfd8e5acc03c149018b39558c2ed5=127.0.0.1:5000/openshift/openshift4/ose-metering-ansible-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-autoscaler-rhel8@sha256:afb4d26c56ee36e7446723f2fd53187ca24a0148fc996a2ae27a5b03fdd9124e=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-autoscaler-rhel8 | |
registry.redhat.io/fuse7-tech-preview/dv-rhel7-operator:1.5=127.0.0.1:5000/openshift/fuse7-tech-preview/dv-rhel7-operator:1.5 | |
registry.redhat.io/openshift4/ose-elasticsearch-operator@sha256:150902be5584eb0f4f5fb1e367a95dc829e3e6d46779cf5a3257eb2c5fbbf80a=127.0.0.1:5000/openshift/openshift4/ose-elasticsearch-operator | |
registry.redhat.io/container-native-virtualization/kubemacpool@sha256:7c27788e92ba6a17e7b3fd29e39ea2ec83e51051d6b8670b146b1305c2dce2de=127.0.0.1:5000/openshift/container-native-virtualization/kubemacpool | |
registry.redhat.io/openshift4/ose-metering-reporting-operator@sha256:8682846331b12c3564807d6c413760ee79cbac9b5a9a0356b6d442a089608b55=127.0.0.1:5000/openshift/openshift4/ose-metering-reporting-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/knative-rhel8-operator@sha256:4a20e629496ef5c693614a600c05a8cf6712d5cf3443aa991fa556338568438e=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/knative-rhel8-operator | |
registry.redhat.io/amq7/amq-online-1-broker-plugin:1.4=127.0.0.1:5000/openshift/amq7/amq-online-1-broker-plugin:1.4 | |
registry.redhat.io/ocs4/mcg-rhel8-operator@sha256:3c61c5c506d3975f471a483ac00d5e340806c7fff74ebfbbb41ce36890f91961=127.0.0.1:5000/openshift/ocs4/mcg-rhel8-operator | |
registry.redhat.io/datagrid/datagrid-8-rhel8@sha256:a3c195eafee5e6c2bf7cc2d56eda2f7900aa485f88bc72d0d4f9add00072bb1c=127.0.0.1:5000/openshift/datagrid/datagrid-8-rhel8 | |
registry.redhat.io/distributed-tracing/jaeger-rhel7-operator@sha256:1a2bf9f26265fd76521da89ea691d0804fa1fe2ad4878f07dd373e6f6e0eef18=127.0.0.1:5000/openshift/distributed-tracing/jaeger-rhel7-operator | |
registry.redhat.io/openshift-serverless-1/ingress-rhel8-operator@sha256:28484f70c1f009ff79c0e50b05bcff19c8404ce44d0c7e0f125127c55769cc9e=127.0.0.1:5000/openshift/openshift-serverless-1/ingress-rhel8-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-webhook-rhel8@sha256:8b966f57f45923465316f63eed438d094a4c64deeb07344048f3e7a8b5a88d3a=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-webhook-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/cis-crawler-rhel8@sha256:ba83169983423248e72dbd487a3c1d2fd153c27fd0178efc779241749db9104b=127.0.0.1:5000/openshift/rhacm1-tech-preview/cis-crawler-rhel8 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7@sha256:e1fb3df10a7f7862e8549ad29e4dad97b22719896c10fe5109cbfb3b98f56900=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7 | |
registry.redhat.io/container-native-virtualization/virt-api@sha256:54e20a6ae405722dc5a75de9c86ac26c29db8ef212edbc1c50943ccfe4f1a205=127.0.0.1:5000/openshift/container-native-virtualization/virt-api | |
registry.redhat.io/openshift4/ose-csi-external-attacher@sha256:19a6384b7a17e5781358a5264a8f9d137e2a2118c903ae8010c3c216e0f8e588=127.0.0.1:5000/openshift/openshift4/ose-csi-external-attacher | |
registry.redhat.io/openshift4/ose-csi-driver-registrar@sha256:85dedabd1e0dc51fda054fc51eee571d274f3ae3a088acf768c18ad73d60406c=127.0.0.1:5000/openshift/openshift4/ose-csi-driver-registrar | |
registry.redhat.io/rhacm1-tech-preview/acmesolver-rhel8@sha256:3d1ac4c65bd0123ff643e6315ab7977bc269ce4fad897688fd2875403c5cf2f2=127.0.0.1:5000/openshift/rhacm1-tech-preview/acmesolver-rhel8 | |
registry.redhat.io/distributed-tracing/jaeger-query-rhel7@sha256:e08ea8bc2410964f4fbecd239d3270628fe42ba2e5def5ab6927beec2e79addc=127.0.0.1:5000/openshift/distributed-tracing/jaeger-query-rhel7 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator:1.0.7=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator:1.0.7 | |
registry.redhat.io/openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:6a3e603d9b170dac58171aa2f78622f3405e9c5f39d3873ab9e21cd1b4153db5=127.0.0.1:5000/openshift/openshift-serverless-1/serving-autoscaler-hpa-rhel8 | |
registry.redhat.io/openshift4/ose-metering-hive@sha256:e45b04022e4f8196678313f4e14dc10acfde1aee0d6243e804d8cf04883a4c41=127.0.0.1:5000/openshift/openshift4/ose-metering-hive | |
registry.redhat.io/openshift-pipelines-tech-preview/pipelines-rhel8-operator@sha256:78260d7b70e43ec4782176fe892fae2998e5885943f673914f5b5ff1add7b267=127.0.0.1:5000/openshift/openshift-pipelines-tech-preview/pipelines-rhel8-operator | |
registry.redhat.io/rhacm1-tech-preview/cert-manager-webhook-rhel8@sha256:2e3f202f98f0f2921bc6e6c559428df86af070450d62cec7f371e88913032fef=127.0.0.1:5000/openshift/rhacm1-tech-preview/cert-manager-webhook-rhel8 | |
registry.redhat.io/amq7/amq-streams-kafka-24-rhel7@sha256:f9ceca004f1b7dccb3b82d9a8027961f9fe4104e0ed69752c0bdd8078b4a1076=127.0.0.1:5000/openshift/amq7/amq-streams-kafka-24-rhel7 | |
registry.redhat.io/rhcam-1-2/openshift-migration-controller-rhel8@sha256:6f0014650d15dcdd8a15b925e603f4e44c51b2eca420c27c6d09a81b81817209=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-controller-rhel8 | |
registry.redhat.io/redhat-sso-7/sso73-openshift@sha256:0dc950903bbc971c14e6223efe3493f0f50eb8af7cbe91aeea621f80f99f155f=127.0.0.1:5000/openshift/redhat-sso-7/sso73-openshift | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator@sha256:029df52ca4b14559c4cf1574161e9bf27fd02c07118e166a7c8fe603016ba2d3=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
registry.redhat.io/rhacm1-tech-preview/search-rhel8-operator@sha256:51674ab90083d47f5bca5527041deba5275aa9d386825b00324966365415efc9=127.0.0.1:5000/openshift/rhacm1-tech-preview/search-rhel8-operator | |
registry.redhat.io/distributed-tracing/jaeger-ingester-rhel7:1.17.1-2=127.0.0.1:5000/openshift/distributed-tracing/jaeger-ingester-rhel7:1.17.1-2 | |
registry.redhat.io/container-native-virtualization/cnv-containernetworking-plugins@sha256:bac1c45da24eb3b8c5162c942d32b29713fcdc58a7df8714a9b32def05ce8cb9=127.0.0.1:5000/openshift/container-native-virtualization/cnv-containernetworking-plugins | |
registry.redhat.io/openshift-serverless-1-tech-preview/knative-rhel8-operator@sha256:9fc7fec01af5015c2fab75f5d7013bc8638e69fbae87b4e6626abedd805b6663=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/knative-rhel8-operator | |
quay.io/openshift-knative/knative-openshift-ingress:v0.0.7=127.0.0.1:5000/openshift/openshift-knative/knative-openshift-ingress:v0.0.7 | |
registry.redhat.io/openshift-service-mesh/pilot-rhel8@sha256:ebfc7f79d8c0cec52c6aac1727eee84f15c43a3d0f7b4503ae14d8ee6a8bd025=127.0.0.1:5000/openshift/openshift-service-mesh/pilot-rhel8 | |
registry.redhat.io/openshift-service-mesh/prometheus-rhel8@sha256:68d47c477bb9b1a4cae6432361326efd0f75146ecf104c84b9c23afb09e77f09=127.0.0.1:5000/openshift/openshift-service-mesh/prometheus-rhel8 | |
registry.redhat.io/3scale-amp2/backend-rhel7@sha256:ea8a31345d3c2a56b02998b019db2e17f61eeaa26790a07962d5e3b66032d8e5=127.0.0.1:5000/openshift/3scale-amp2/backend-rhel7 | |
registry.redhat.io/rhpam-7/rhpam-controller-rhel8@sha256:05f7956bcae5acd10e89ecbbc5a12b9bd737cf696c276bb10f52bd93b8080ebd=127.0.0.1:5000/openshift/rhpam-7/rhpam-controller-rhel8 | |
registry.redhat.io/openshift4/ose-logging-curator5@sha256:04f5517bc87fb307ae180df4b61f9bb7fdf2e27a355bc5f1a6b342c7c4356c7f=127.0.0.1:5000/openshift/openshift4/ose-logging-curator5 | |
registry.redhat.io/fuse7-tech-preview/dv-rhel7-operator:1.6=127.0.0.1:5000/openshift/fuse7-tech-preview/dv-rhel7-operator:1.6 | |
registry.redhat.io/distributed-tracing/jaeger-ingester-rhel7@sha256:9c4b2073764a88b785e48e21bb4796f52c32a8f961f31b7d17eba00e682ac470=127.0.0.1:5000/openshift/distributed-tracing/jaeger-ingester-rhel7 | |
registry.redhat.io/distributed-tracing/jaeger-es-index-cleaner-rhel7@sha256:09cb783968fc1dab66e8a2e788105b3b2ac0d1ef2ae9c8fc763b149ce8b332f2=127.0.0.1:5000/openshift/distributed-tracing/jaeger-es-index-cleaner-rhel7 | |
registry.redhat.io/openshift4/ose-local-storage-operator@sha256:106a338253a36b5bc68dd00435073a868650c8272c46c4d877d0dfc8dec6700f=127.0.0.1:5000/openshift/openshift4/ose-local-storage-operator | |
registry.redhat.io/ocs4/mcg-rhel8-operator@sha256:12f8b2051f28086e97b7dd7673b65217503ecafec95739bbb101bc7054271c82=127.0.0.1:5000/openshift/ocs4/mcg-rhel8-operator | |
registry.redhat.io/rhacm1-tech-preview/rcm-controller-rhel8@sha256:b2e86580cd30ab1bf88422211b3c71836c14d2a94eaf138259d307e6a96a7651=127.0.0.1:5000/openshift/rhacm1-tech-preview/rcm-controller-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/img-minio-mc-rhel7@sha256:a1e8486cbf5cc506c85f6be0936895d909b51cc9b3073dea0285c3a144451e1a=127.0.0.1:5000/openshift/rhacm1-tech-preview/img-minio-mc-rhel7 | |
registry.redhat.io/rhacm1-tech-preview/cert-manager-webhook-rhel8@sha256:ac1368e20ef45ce20c66645d824937823877e6d3ac2a4417734f9cf6e6f0c22e=127.0.0.1:5000/openshift/rhacm1-tech-preview/cert-manager-webhook-rhel8 | |
registry.redhat.io/amq7/amq-online-1-controller-manager:1.2=127.0.0.1:5000/openshift/amq7/amq-online-1-controller-manager:1.2 | |
registry.redhat.io/amq7/amq-streams-operator:1.3.0=127.0.0.1:5000/openshift/amq7/amq-streams-operator:1.3.0 | |
registry.redhat.io/ocs4/mcg-rhel8-operator@sha256:701eae453b29646182533719fa312731bebf1fb53414762894324813b0d7a17a=127.0.0.1:5000/openshift/ocs4/mcg-rhel8-operator | |
registry.redhat.io/openshift-service-mesh/citadel-rhel8@sha256:a49954528575c8480d6763e4793ab65de0f4c19ba5963544d57c91ededd63a90=127.0.0.1:5000/openshift/openshift-service-mesh/citadel-rhel8 | |
registry.redhat.io/amq7/amq-online-1-mqtt-gateway:1.4=127.0.0.1:5000/openshift/amq7/amq-online-1-mqtt-gateway:1.4 | |
registry.redhat.io/openshift4/ose-promtail@sha256:9e2daf10101a4e482bf65a1bc2f5f1472555b3f2fa3cc33157624363eff6676a=127.0.0.1:5000/openshift/openshift4/ose-promtail | |
registry.redhat.io/openshift4/ose-metering-presto@sha256:daa77b47e6e40ca4939b60a0db2ddc38447315df6670bcf7791a6802d7f58b9a=127.0.0.1:5000/openshift/openshift4/ose-metering-presto | |
registry.redhat.io/openshift4/performance-addon-rhel8-operator@sha256:5bd10e162f1af1b66064ed72468695fb962baa4d7ce3f5a61c62dd14c71a2e76=127.0.0.1:5000/openshift/openshift4/performance-addon-rhel8-operator | |
registry.redhat.io/openshift-service-mesh/ior-rhel8@sha256:0bf01756c8047ef8b7412b525b515daded05d80ac729c189552c7d849b8fc953=127.0.0.1:5000/openshift/openshift-service-mesh/ior-rhel8 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7:1.12.7=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7:1.12.7 | |
registry.redhat.io/container-native-virtualization/ovs-cni-marker:v2.2.0-4=127.0.0.1:5000/openshift/container-native-virtualization/ovs-cni-marker:v2.2.0-4 | |
registry.redhat.io/openshift4/ose-local-storage-static-provisioner@sha256:d0e553536583321492c7997bed152fbcbeaedfe5a811eff96907e7e3bfa23c59=127.0.0.1:5000/openshift/openshift4/ose-local-storage-static-provisioner | |
registry.redhat.io/rhacm1-tech-preview/management-ingress-rhel7@sha256:fc5d943eabc8d99adfe26c3f64d068630e9679ddb3abd8cad660f3e66301ef49=127.0.0.1:5000/openshift/rhacm1-tech-preview/management-ingress-rhel7 | |
registry.redhat.io/rhpam-7/rhpam-rhel8-operator:7.5.0=127.0.0.1:5000/openshift/rhpam-7/rhpam-rhel8-operator:7.5.0 | |
registry.redhat.io/rhcam-1-2/openshift-migration-ui-rhel8@sha256:6abfaea8ac04e3b5bbf9648a3479b420b4baec35201033471020c9cae1fe1e11=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-ui-rhel8 | |
registry.redhat.io/codeready-workspaces/server-operator-rhel8:2.0=127.0.0.1:5000/openshift/codeready-workspaces/server-operator-rhel8:2.0 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator:1.12.6=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator:1.12.6 | |
registry.redhat.io/openshift4/ose-metering-hadoop@sha256:757faa2ee0378192c323b1765b18f33edb8812741acdb272a5297f3e337fb083=127.0.0.1:5000/openshift/openshift4/ose-metering-hadoop | |
registry.redhat.io/openshift-service-mesh/prometheus-rhel8@sha256:38d8ef942e938a8a3501a8f5213bdfd2bf27fcdf5f5bbc6d1ed23483affe1835=127.0.0.1:5000/openshift/openshift-service-mesh/prometheus-rhel8 | |
registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:8314747ab7c10a42f6184a0cfb16c80657ffce4e4c9a1dff7aa88bedcdfce3ad=127.0.0.1:5000/openshift/openshift4/ose-sriov-network-config-daemon | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-activator-rhel8@sha256:b0c7030f235ec828a975ecc990e34ae2dc3bf88188c1f243f5568bd1a749c0e9=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-activator-rhel8 | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-controller-rhel8@sha256:05ff040244f226d2f1a7c60f73cb8d0e1b81253736444ed83bcaa4f4b2345feb=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-controller-rhel8 | |
registry.redhat.io/3scale-amp2/memcached-rhel7@sha256:b4311cc52bc813e21360a8dafa3efbf705d7029972b0141b489f70b287565d01=127.0.0.1:5000/openshift/3scale-amp2/memcached-rhel7 | |
registry.redhat.io/rhacm1-tech-preview/mcm-topology-rhel8@sha256:fc04509134646189e7cc4a51a4df3d6d881a0b9c3b78c6d7bef191f192ebf735=127.0.0.1:5000/openshift/rhacm1-tech-preview/mcm-topology-rhel8 | |
registry.redhat.io/amq7/amq-online-1-topic-forwarder:1.4=127.0.0.1:5000/openshift/amq7/amq-online-1-topic-forwarder:1.4 | |
registry.redhat.io/container-native-virtualization/virt-cdi-apiserver:v2.2.0-5=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-apiserver:v2.2.0-5 | |
registry.redhat.io/container-native-virtualization/virt-cdi-operator@sha256:f6c8c83b8a64a657fcbefcfbc3c4bc6c3c8b974b8daeb5c0bfb2daeee52456cc=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/knative-rhel8-operator@sha256:e62c22d5aa0fc38019b5c54f2824623289a55ffde5e6941fe3d6b67bd59b00ef=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/knative-rhel8-operator | |
registry.redhat.io/openshift-service-mesh/galley-rhel8@sha256:620c85bdec44380711c00f189c4042f3a669eba2c089ca6cf9ae8ee5c4358121=127.0.0.1:5000/openshift/openshift-service-mesh/galley-rhel8 | |
quay.io/pusher/oauth2_proxy:latest=127.0.0.1:5000/openshift/pusher/oauth2_proxy:latest | |
registry.access.redhat.com/amq7/amq-streams-cluster-operator:1.1.0=127.0.0.1:5000/openshift/amq7/amq-streams-cluster-operator:1.1.0 | |
registry.redhat.io/rhdm-7/rhdm-decisioncentral-rhel8@sha256:fe5a2b692031862b8a2c8c869a64d2965e2a6c00490dbf807d8b8f2271b506fc=127.0.0.1:5000/openshift/rhdm-7/rhdm-decisioncentral-rhel8 | |
registry.redhat.io/openshift3/oauth-proxy@sha256:da75a08e875f76a58028715f402da670f5849317f354ace0e64702acd86b21ae=127.0.0.1:5000/openshift/openshift3/oauth-proxy | |
registry.redhat.io/rhceph/rhceph-4-rhel8@sha256:9e521d33c1b3c7f5899a8a5f36eee423b8003827b7d12d780a58a701d0a64f0d=127.0.0.1:5000/openshift/rhceph/rhceph-4-rhel8 | |
registry.redhat.io/rhscl/postgresql-10-rhel7@sha256:5c4f5f52a37718a9a1997ba212ef172694475558c35232b56dac638529c5b569=127.0.0.1:5000/openshift/rhscl/postgresql-10-rhel7 | |
registry.redhat.io/codeready-workspaces/stacks-cpp-rhel8@sha256:8529c57eaa54bdd9a4955f59ba213344e557c6008e776822252fe3a042e51b24=127.0.0.1:5000/openshift/codeready-workspaces/stacks-cpp-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/search-rhel8-operator@sha256:8306c659848b415212cf9cf2aa2c56d3092805547ed6f3158612bf7ac82384ad=127.0.0.1:5000/openshift/rhacm1-tech-preview/search-rhel8-operator | |
registry.redhat.io/rhacm1-tech-preview/search-api-rhel8@sha256:8b8ffebd3f408912ade398fc8a98cae86144c3dceadd4b0e6ccf0318ef8fb5f3=127.0.0.1:5000/openshift/rhacm1-tech-preview/search-api-rhel8 | |
registry.redhat.io/rhdm-7/rhdm-kieserver-rhel8@sha256:debf4f45f36509e608c2d8754539aa5697aa4255ac85ab4a521915ef88841660=127.0.0.1:5000/openshift/rhdm-7/rhdm-kieserver-rhel8 | |
registry.redhat.io/openshift4/ose-logging-kibana5@sha256:7b2361f592176b6074d96e8887afc94689d0b51e3166830f3e0c4b2606f64e98=127.0.0.1:5000/openshift/openshift4/ose-logging-kibana5 | |
registry.redhat.io/openshift4/ose-cluster-logging-operator@sha256:74caddfe7015c2661e19195ebee0273f3a7f0df27e86887855aabb81ba6675da=127.0.0.1:5000/openshift/openshift4/ose-cluster-logging-operator | |
registry.redhat.io/openshift-serverless-1/kourier-control-rhel8@sha256:b88efe2676c3c3cbf48ace654386ef6188706003ebd39d8c37f62b6d54b9739c=127.0.0.1:5000/openshift/openshift-serverless-1/kourier-control-rhel8 | |
registry.redhat.io/openshift-serverless-1/knative-serving-rhel8-operator@sha256:ccff159179c643ab8a6c3423cdf0cb6818adaf4a116ffe9509d9765d641981f6=127.0.0.1:5000/openshift/openshift-serverless-1/knative-serving-rhel8-operator | |
registry.redhat.io/rhacm1-tech-preview/application-ui-rhel8@sha256:bae2662709dc0a3b2d1e11a7bb8dfa4c4f1be71b9008c60979b9458cd6488edb=127.0.0.1:5000/openshift/rhacm1-tech-preview/application-ui-rhel8 | |
registry.redhat.io/amq7/amq-online-1-api-server:1.3=127.0.0.1:5000/openshift/amq7/amq-online-1-api-server:1.3 | |
registry.redhat.io/amq7/amq-online-1-none-auth-service:1.4=127.0.0.1:5000/openshift/amq7/amq-online-1-none-auth-service:1.4 | |
registry.redhat.io/rhpam-7/rhpam-rhel8-operator@sha256:3430070e58161f26353c984888c6c4ba72cd4a018e1eb60a614c0a4262a3c49a=127.0.0.1:5000/openshift/rhpam-7/rhpam-rhel8-operator | |
registry.redhat.io/rhcam-1-1/openshift-migration-ui-rhel8@sha256:ed16db50ffd6614d8f654449bf29003b82d4d5da420419add00fd5ec5b1fd79b=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-ui-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/cainjector-rhel8@sha256:2b1dc8781abb6b786ec067ca2663e4900b99d079be2b85225a12c553371808b4=127.0.0.1:5000/openshift/rhacm1-tech-preview/cainjector-rhel8 | |
registry.redhat.io/amq7/amq-streams-kafka-23-rhel7@sha256:58907d2ce26a9c07f0da06ef0030d086164e83ab7a3c45a1fd52049eacf51d9a=127.0.0.1:5000/openshift/amq7/amq-streams-kafka-23-rhel7 | |
registry.redhat.io/container-native-virtualization/virtio-win:v2.2.0-4=127.0.0.1:5000/openshift/container-native-virtualization/virtio-win:v2.2.0-4 | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-webhook-rhel8@sha256:a3dd1619be816b6cc673ed4e3a610ae6832a1216841258356ce36687c90fb7f1=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-webhook-rhel8 | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator:1.0.4=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator:1.0.4 | |
registry.redhat.io/rhpam-7/rhpam74-operator:1.0=127.0.0.1:5000/openshift/rhpam-7/rhpam74-operator:1.0 | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-ping-source-rhel8@sha256:483798b934915f31b07e6920e3f2902a9881b823d5b54b08b1e8f4fdc05adda7=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-ping-source-rhel8 | |
registry.redhat.io/openshift-service-mesh/mixer-rhel8@sha256:060dbd5b792157edd3d4a7e03df3774565e1bf6e49d5fb0dff55c443408177c7=127.0.0.1:5000/openshift/openshift-service-mesh/mixer-rhel8 | |
registry.redhat.io/openshift-service-mesh/3scale-istio-adapter-rhel8@sha256:00fb544a95b16c652cc571396679c65d5889b2cfe6f1a0176f560a1678309a35=127.0.0.1:5000/openshift/openshift-service-mesh/3scale-istio-adapter-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/multicluster-operators-placementrule-rhel8@sha256:6c23624c73dc373304f6081f931e7621318b0d308d4ace5f1587e9c17dddcb7c=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-placementrule-rhel8 | |
registry.redhat.io/amq7/amq-online-1-api-server:1.2=127.0.0.1:5000/openshift/amq7/amq-online-1-api-server:1.2 | |
registry.redhat.io/openshift4/ose-local-storage-diskmaker@sha256:d8fc0f6e62f1b8b0ff47d8d12f3211382fc2b6414ebccd9deddaabd418cd9263=127.0.0.1:5000/openshift/openshift4/ose-local-storage-diskmaker | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-controller-rhel8@sha256:342bd8de71721eab64bf842453a701cfe82e99954f5fa29095821f84ea61388e=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-controller-rhel8 | |
registry.redhat.io/openshift-service-mesh/galley-rhel8@sha256:2ea879cdf4e08bc53b09108106e5769046ff16983d8e6337a9cf3301cb3c5333=127.0.0.1:5000/openshift/openshift-service-mesh/galley-rhel8 | |
registry.redhat.io/codeready-workspaces/plugin-kubernetes-rhel8@sha256:c9d7b2a8cfad9a1cce63e1b57e78826ba1f73f66e63852f49b8b7c7a128b709d=127.0.0.1:5000/openshift/codeready-workspaces/plugin-kubernetes-rhel8 | |
registry.redhat.io/codeready-workspaces/devfileregistry-rhel8@sha256:0124562131e8cde6b2b9a5e4bced93522da3c1c95e9122306ecd8acb093650e0=127.0.0.1:5000/openshift/codeready-workspaces/devfileregistry-rhel8 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator:1.0.11=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator:1.0.11 | |
registry.redhat.io/3scale-amp2/apicast-gateway-rhel8@sha256:cec373e9104d7e2cc8662546dd789c96d264960f3ad4c7de8ba70528bab810b8=127.0.0.1:5000/openshift/3scale-amp2/apicast-gateway-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/coredns-rhel8@sha256:66c42f3a2de2253bd446e7998a18945fd90ebfc17035bc45302ba61d282588b0=127.0.0.1:5000/openshift/rhacm1-tech-preview/coredns-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/multicluster-operators-subscription-rhel8-operator@sha256:faef7c78b3b6ff826c2ff3acce0cfe017fc73f57b0c2cc6f76213ef4bc00184d=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-subscription-rhel8-operator | |
registry.redhat.io/rhcam-1-1/openshift-migration-controller-rhel8@sha256:52e3bb16a6fb0852aec7676bba5e5a5af01580f4997bac7747f158239b839ece=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-controller-rhel8 | |
registry.redhat.io/rhcam-1-2/openshift-migration-rhel7-operator@sha256:163f265d77745d4824510e9d3b2278ba77a5967864cfeb01a76e4239b0c7112a=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-rhel7-operator | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator:1.0.9=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator:1.0.9 | |
registry.redhat.io/container-native-virtualization/ovs-cni-plugin:v2.2.0-4=127.0.0.1:5000/openshift/container-native-virtualization/ovs-cni-plugin:v2.2.0-4 | |
registry.redhat.io/ocs4/rook-ceph-rhel8-operator@sha256:3620bb2d83510ef9ac0777c20ae25c6629b2f0e28261efd9aafffdfee8bd5864=127.0.0.1:5000/openshift/ocs4/rook-ceph-rhel8-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/kourier-control-rhel8@sha256:94106df34f035678962b3bf644f432b59e81b9978536d0827feb8cafac52831c=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/kourier-control-rhel8 | |
registry.redhat.io/openshift-serverless-1/serving-activator-rhel8@sha256:2b68797a2b80c6bfec746a462385462fd6418ed762aeccbfed68bfd86c708aa2=127.0.0.1:5000/openshift/openshift-serverless-1/serving-activator-rhel8 | |
registry.redhat.io/amq7/amq-online-1-address-space-controller:1.2=127.0.0.1:5000/openshift/amq7/amq-online-1-address-space-controller:1.2 | |
registry.redhat.io/rhcam-1-1/openshift-migration-velero-plugin-for-gcp-rhel8@sha256:44f40ff5a3c8ad9b76105e2b8fc5bd04692464cc4aa683da2cf83b3336200863=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-velero-plugin-for-gcp-rhel8 | |
registry.redhat.io/container-native-virtualization/virt-cdi-uploadserver@sha256:7a6611d2f738c04bcc93f2062c074e8a80a0107be780df46bfe8cb73fc4c2d52=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-uploadserver | |
registry.redhat.io/openshift-serverless-1/serving-webhook-rhel8@sha256:310bde12c8e415366a3add43f1fdcef42dfebf2efe6cf6e34f4246048aeeeaa6=127.0.0.1:5000/openshift/openshift-serverless-1/serving-webhook-rhel8 | |
registry.redhat.io/openshift-serverless-1/serving-autoscaler-rhel8@sha256:d3907f17667e272dafd26b1aee364f067742a1ff9f4119be3950874d18710b35=127.0.0.1:5000/openshift/openshift-serverless-1/serving-autoscaler-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/cert-policy-controller-rhel8@sha256:323b3f3bee5951366e4973864f5e2460a60cbdbc913e3e505a227186ae7affd8=127.0.0.1:5000/openshift/rhacm1-tech-preview/cert-policy-controller-rhel8 | |
registry.redhat.io/openshift4/ose-logging-elasticsearch5@sha256:64b32d1607b06a9378ca9bb299802742e27d11e71ba85e8455b44d67cb9ad1b2=127.0.0.1:5000/openshift/openshift4/ose-logging-elasticsearch5 | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-broker-filter-rhel8@sha256:5c5f6c8e9466e5d3858403fddd4384da0bde18631553f4d8b26b63fc290a46b9=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-broker-filter-rhel8 | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-rhel8-operator@sha256:502d09e816d6748864e72e91543f90a59dbdf15d6bc042edb140823638019b1b=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-rhel8-operator | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator:1.0.10=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator:1.0.10 | |
registry.redhat.io/openshift-service-mesh/istio-cni-rhel8@sha256:4d69830f55ec8188eb862cb37c820502ff8ccc3b6d60fb75029321ed01223552=127.0.0.1:5000/openshift/openshift-service-mesh/istio-cni-rhel8 | |
registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:7270363b27acd3f39713d0a1f4d351aa1f29a9170c9361adf120087544e17d72=127.0.0.1:5000/openshift/openshift4/ose-sriov-network-device-plugin | |
registry.redhat.io/rhcam-1-2/openshift-migration-velero-rhel8@sha256:1a33e327dd610f0eebaaeae5b3c9b4170ab5db572b01a170be35b9ce946c0281=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-velero-rhel8 | |
registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel7-operator@sha256:7b2816518159096ed52921861b28ee86ae4737c6481da336e227952e3f0bb81b=127.0.0.1:5000/openshift/openshift4/ose-clusterresourceoverride-rhel7-operator | |
registry.redhat.io/container-native-virtualization/kubevirt-kvm-info-nfd-plugin@sha256:bb120df34c6eef21431a074f11a1aab80e019621e86b3ffef4d10d24cb64d2df=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-kvm-info-nfd-plugin | |
registry.redhat.io/openshift-serverless-1/serving-queue-rhel8@sha256:b1f1dee5dc6baa8767199d791a144a2ca79687c955c5de1accb8fe9a5a46cf25=127.0.0.1:5000/openshift/openshift-serverless-1/serving-queue-rhel8 | |
registry.redhat.io/openshift-service-mesh/sidecar-injector-rhel8@sha256:2f2361f4a0216fb3a2563b121ab7218e35af63114811683fc5c8e4889e999652=127.0.0.1:5000/openshift/openshift-service-mesh/sidecar-injector-rhel8 | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator@sha256:74a0bb77d8bc465fe41f9ffb6767c51389b79e552f9efcbbd64fb89b68940dd0=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
registry.redhat.io/openshift-service-mesh/sidecar-injector-rhel8@sha256:2d7598189788dd5c9743d1878409da21c026fd312236f94fe7823f94a698c723=127.0.0.1:5000/openshift/openshift-service-mesh/sidecar-injector-rhel8 | |
registry.redhat.io/3scale-amp2/zync-rhel7@sha256:f46b47b84450a81cb463b66dc86b91baf0dd60bdca275192925f6924b90a57bf=127.0.0.1:5000/openshift/3scale-amp2/zync-rhel7 | |
registry.redhat.io/rhacm1-tech-preview/acmesolver-rhel8@sha256:cd3501cdb6b9a018f299fbf66c258a5802a1061d864602999e34941fa9b61a77=127.0.0.1:5000/openshift/rhacm1-tech-preview/acmesolver-rhel8 | |
registry.redhat.io/container-native-virtualization/virt-launcher:v2.2.0-15=127.0.0.1:5000/openshift/container-native-virtualization/virt-launcher:v2.2.0-15 | |
registry.redhat.io/openshift4/ose-ansible-service-broker-operator@sha256:edf7cbffcd9f9eeeeed5638cd278af998b897447d1cc3a30ab5347262ba4279e=127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker-operator | |
registry.redhat.io/openshift-serverless-1/serving-queue-rhel8@sha256:1dad5dad47e167bc8757b7eebfa02aff076a5d1a4bb54e25f062eecbdc581202=127.0.0.1:5000/openshift/openshift-serverless-1/serving-queue-rhel8 | |
registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:73482231fe4a995e4d31cdd215a27d454ef8fe8370a59fc93ebe930025c9afb2=127.0.0.1:5000/openshift/openshift4/ose-cluster-nfd-operator | |
quay.io/openshift-knative/knative-serving-operator:v0.7.1-TP1-04=127.0.0.1:5000/openshift/openshift-knative/knative-serving-operator:v0.7.1-TP1-04 | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-autoscaler-rhel8@sha256:b2e1337b701a831e5832c71cc759c8bea959bc275c03aaf11a047cfc17779ae0=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-autoscaler-rhel8 | |
registry.redhat.io/openshift-serverless-1-tech-preview/kourier-control-rhel8@sha256:ab0bd6090303d6cb5b72ab69554dfe3688668b17053364c337e6cf965c64fc2f=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/kourier-control-rhel8 | |
registry.redhat.io/openshift-serverless-1/knative-serving-rhel8-operator@sha256:b27a9ec86975c4013d2d93f059fbf481f8d125c6a19646ec22a0ab3518de024d=127.0.0.1:5000/openshift/openshift-serverless-1/knative-serving-rhel8-operator | |
registry.redhat.io/amq7/amq-online-1-mqtt-lwt:1.4=127.0.0.1:5000/openshift/amq7/amq-online-1-mqtt-lwt:1.4 | |
registry.redhat.io/amq7/amq-streams-operator:1.2.0=127.0.0.1:5000/openshift/amq7/amq-streams-operator:1.2.0 | |
registry.redhat.io/openshift4/ose-cluster-logging-operator@sha256:e7806fb9e3c93209f9ab150d71536ca51b7932397ba7e1401a4fe8c97fc36621=127.0.0.1:5000/openshift/openshift4/ose-cluster-logging-operator | |
registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:053967be0524c76cec43fa9e8a84f4c432f7575ff7f172d377122d9f1023139f=127.0.0.1:5000/openshift/openshift4/ose-sriov-dp-admission-controller | |
registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:6808b33f8c7050e86e9f880b062d6bbded442fc0d07d1149f89f6b78798a7d6a=127.0.0.1:5000/openshift/openshift4/ose-sriov-network-config-daemon | |
registry.redhat.io/distributed-tracing/jaeger-rhel7-operator@sha256:510ef9b390e25e12ce53cf26fb5405fddec24c9258c611982507a4164f5cd44b=127.0.0.1:5000/openshift/distributed-tracing/jaeger-rhel7-operator | |
registry.redhat.io/container-native-virtualization/hyperconverged-cluster-operator:v2.2.0-12=127.0.0.1:5000/openshift/container-native-virtualization/hyperconverged-cluster-operator:v2.2.0-12 | |
registry.redhat.io/container-native-virtualization/kubevirt-cpu-node-labeller@sha256:dde5f7a5b43e9447ead536f719a25ec823df77965d5144e46506f540cadd9e99=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-cpu-node-labeller | |
registry.redhat.io/openshift4/ose-local-storage-operator@sha256:28c5e6dd5eac5673e2c9c864a2fd4c7249576f6c16f1fe3b0d7341197e0cc623=127.0.0.1:5000/openshift/openshift4/ose-local-storage-operator | |
registry.redhat.io/openshift4/ose-ghostunnel@sha256:865df7924e6651dd63ca01b016b79d6987c3b2509c28e5f472fed3e13d3e2782=127.0.0.1:5000/openshift/openshift4/ose-ghostunnel | |
registry.redhat.io/3scale-amp2/system-rhel7@sha256:1d5c8b8084b80ce313f82f0b8ab8ea49b7e851d89f5dbf2773c13c129479f326=127.0.0.1:5000/openshift/3scale-amp2/system-rhel7 | |
registry.redhat.io/openshift4/ose-logging-elasticsearch5@sha256:9ea7dc01c74e93d48cf5f275589572e8daa732c73e187e04c7b60535e42d630f=127.0.0.1:5000/openshift/openshift4/ose-logging-elasticsearch5 | |
registry.redhat.io/container-native-virtualization/virt-cdi-uploadserver:v2.2.0-5=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-uploadserver:v2.2.0-5 | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator:1.0.5=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator:1.0.5 | |
registry.redhat.io/openshift4/ose-ansible-service-broker-operator@sha256:c5da0b7d0d6cb488522c6981e62b32655587a20a2f32c889848ea571c408deea=127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker-operator | |
registry.redhat.io/openshift-service-mesh/proxy-init-rhel7@sha256:9e049ae662c966369a907839fc01168860f12e97c30304edf9b141c9e781fcd9=127.0.0.1:5000/openshift/openshift-service-mesh/proxy-init-rhel7 | |
registry.redhat.io/openshift-service-mesh/mixer-rhel8@sha256:d41d9669b8c81f38d3c102d31d6e28535c64f3bbfb5233966112bbf9e5468dd0=127.0.0.1:5000/openshift/openshift-service-mesh/mixer-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/cert-manager-controller-rhel8@sha256:ddce7409ea210cb6f162d7500eb7878af8928560237e1522368a94baaa011a89=127.0.0.1:5000/openshift/rhacm1-tech-preview/cert-manager-controller-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/configmap-watcher-rhel8@sha256:7f316fbb2881f3e9b0d1da1018faf4837f5f05436bf4227f66fd85d50eb2ab0f=127.0.0.1:5000/openshift/rhacm1-tech-preview/configmap-watcher-rhel8 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator:1.12.7=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator:1.12.7 | |
registry.redhat.io/container-native-virtualization/virt-cdi-controller:v2.2.0-5=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-controller:v2.2.0-5 | |
registry.redhat.io/container-native-virtualization/virt-launcher@sha256:1f7247af45ace7207601666be3ee7949a84d8bec3067aac2567f1c4d76a5f7fd=127.0.0.1:5000/openshift/container-native-virtualization/virt-launcher | |
registry.redhat.io/openshift-serverless-1-tech-preview/knative-serving-rhel8-operator@sha256:0f4fa5b9b52f51eefce04eb5da0dd271d265af5535b2937a418faecccae0ce94=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/knative-serving-rhel8-operator | |
registry.redhat.io/rhacm1-tech-preview/cert-policy-controller-rhel8@sha256:dc72c535b19c84e5697e7adc614c33f48c8c02a65294c6701e5d5780f0c067ce=127.0.0.1:5000/openshift/rhacm1-tech-preview/cert-policy-controller-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/img-minio-rhel7@sha256:65a85c3667f30c1f6009074d63bae31e41854bc35a733eadc4bb2ed3e96cb308=127.0.0.1:5000/openshift/rhacm1-tech-preview/img-minio-rhel7 | |
registry.redhat.io/codeready-workspaces/pluginbroker-metadata-rhel8@sha256:6c9abe63a70a6146dc49845f2f7732e3e6e0bcae6a19c3a6557367d6965bc1f8=127.0.0.1:5000/openshift/codeready-workspaces/pluginbroker-metadata-rhel8 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7:1.0.7=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7:1.0.7 | |
registry.redhat.io/ocs4/mcg-rhel8-operator@sha256:9b2df211528394938e4e4df648e746f54bf377962968d364febcfcec432074a0=127.0.0.1:5000/openshift/ocs4/mcg-rhel8-operator | |
registry.redhat.io/rhcam-1-2/openshift-migration-velero-plugin-for-microsoft-azure-rhel8@sha256:dd92ad748a84754e5d78287e29576a5b95448e929824e86e80c60857d0c7aff9=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-velero-plugin-for-microsoft-azure-rhel8 | |
registry.redhat.io/distributed-tracing/jaeger-rhel7-operator:1.17.1-3=127.0.0.1:5000/openshift/distributed-tracing/jaeger-rhel7-operator:1.17.1-3 | |
registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:dc83c4983b4d6c1c850c8c3604f64c5105c40997f83029e267772740de048011=127.0.0.1:5000/openshift/openshift4/ose-node-feature-discovery | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-apiserver-receive-adapter-rhel8@sha256:9d2dac5e4376069235b26ef90927ed4da259cd403b4f3a37433b133170d113eb=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-apiserver-receive-adapter-rhel8 | |
registry.redhat.io/amq7-tech-preview/amq-online-1-iot-device-registry-datagrid:1.4=127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-device-registry-datagrid:1.4 | |
registry.redhat.io/rhcam-1-1/openshift-migration-rhel7-operator@sha256:bfefa851f3d57c54564cd7b0cbf251a7d4f50c75fd73b187985014aaf39f7555=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-rhel7-operator | |
registry.redhat.io/rhscl/postgresql-96-rhel7:latest=127.0.0.1:5000/openshift/rhscl/postgresql-96-rhel7:latest | |
registry.redhat.io/openshift4/ose-ghostunnel@sha256:f2f297575528dd1b9500a62812aaf9f55708b995b19529c234b2d98e25efec66=127.0.0.1:5000/openshift/openshift4/ose-ghostunnel | |
registry.redhat.io/openshift4/ose-ptp@sha256:359f000b153bccf1b9bfa6d2c9f0408cc858d9dd66a08ae1efe94b42e0e0be2e=127.0.0.1:5000/openshift/openshift4/ose-ptp | |
registry.redhat.io/openshift4/ose-template-service-broker-operator@sha256:5df5d08244107919bb9a881ed4d6b80bd1f2fcc4d7dd3fe3077986fd06b5e9d4=127.0.0.1:5000/openshift/openshift4/ose-template-service-broker-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/knative-serving-rhel8-operator@sha256:dc004a3fe9b1bd2f8b3721b0bcbe4e35b4a96e92a5f306b14c8e18dd51e51225=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/knative-serving-rhel8-operator | |
registry.redhat.io/rhacm1-tech-preview/multiclusterhub-rhel8-operator@sha256:e51bdda0273f1372a95ad8de93f88e4369fdd8a171d615e68ecccbe10d03fb8b=127.0.0.1:5000/openshift/rhacm1-tech-preview/multiclusterhub-rhel8-operator | |
registry.redhat.io/amq7/amq-broker-rhel7-operator:0.9=127.0.0.1:5000/openshift/amq7/amq-broker-rhel7-operator:0.9 | |
registry.redhat.io/rhdm-7/rhdm-controller-rhel8@sha256:05c2d24caaf28f50527d8f710cec03960360be50b89fd9a6e5b40d239c18f5ca=127.0.0.1:5000/openshift/rhdm-7/rhdm-controller-rhel8 | |
registry.redhat.io/openshift4/ose-logging-fluentd@sha256:f8ad89d2aaa37c7134d3848fb9b7d66fddf98507ac5236173d2570a4a9970297=127.0.0.1:5000/openshift/openshift4/ose-logging-fluentd | |
registry.redhat.io/container-native-virtualization/hyperconverged-cluster-operator:v2.1.0-22=127.0.0.1:5000/openshift/container-native-virtualization/hyperconverged-cluster-operator:v2.1.0-22 | |
registry.redhat.io/rhacm1-tech-preview/multicluster-operators-channel-rhel8@sha256:7be42cafc01d586b456f3482ad217f2604dfd06e62334b4d9cee633237bcec6b=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-channel-rhel8 | |
registry.redhat.io/rhcam-1-2/openshift-migration-rhel7-operator@sha256:f9092d108e839bdeec85634e0306c4b9206f391167234058c14386ddfd21b39c=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-rhel7-operator | |
registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:a1a24a8d386976eee81deb04f751a09064889279636f7009b695b9f97d083a54=127.0.0.1:5000/openshift/openshift4/ose-sriov-network-device-plugin | |
registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel8-operator@sha256:a79cacdf99c5eb4cc233e70e7e2de8e59c512f53eb9b108f991e7754ca666c39=127.0.0.1:5000/openshift/container-native-virtualization/hostpath-provisioner-rhel8-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-activator-rhel8@sha256:529b5c5f27caea6ab664fbc47b74fafa1edf4913e652d02c64ace21829da4cfe=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-activator-rhel8 | |
registry.redhat.io/openshift-serverless-1-tech-preview/ingress-rhel8-operator@sha256:7a4bc02286133125cb9a625ec574a149516af5e38164fbbd57701627fb9601d6=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
registry.redhat.io/3scale-amp2/zync-rhel7@sha256:13185fb82a8d7a61a2c098da83149da29b64bc6709b0ec4867bfa5830353d137=127.0.0.1:5000/openshift/3scale-amp2/zync-rhel7 | |
registry.redhat.io/rhpam-7/rhpam-rhel8-operator@sha256:6ac3d491e2753f7b075c1f5600ef44233c5597ea677cb667f5d5c10f97bfd1b6=127.0.0.1:5000/openshift/rhpam-7/rhpam-rhel8-operator | |
registry.redhat.io/rhcam-1-1/openshift-migration-controller-rhel8@sha256:cbdd2cdc2c050bb62c713004497e57bfb9c4f7575dd1ec38e69f41689575d365=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-controller-rhel8 | |
registry.redhat.io/distributed-tracing/jaeger-all-in-one-rhel7:1.17.1-2=127.0.0.1:5000/openshift/distributed-tracing/jaeger-all-in-one-rhel7:1.17.1-2 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator@sha256:1ab53b817097f63182115bea016e55cb3773a0fcc0ec73fe53549d29edc8c172=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
registry.redhat.io/rhacm1-tech-preview/coredns-rhel8@sha256:aaa80e1419ee301396e3e0f221f07178ed93f47401cadb789ecc8dab76d3ae7b=127.0.0.1:5000/openshift/rhacm1-tech-preview/coredns-rhel8 | |
registry.redhat.io/amq7/amq-online-1-agent:1.4=127.0.0.1:5000/openshift/amq7/amq-online-1-agent:1.4 | |
registry.redhat.io/openshift4/ose-logging-curator5@sha256:fda4aab2e8351c7672d6c943f3f296cba969dcd7c859d7e145061a56d93c9440=127.0.0.1:5000/openshift/openshift4/ose-logging-curator5 | |
registry.redhat.io/openshift4/ose-logging-curator5@sha256:ccd54b766ffa467e969709d2b859c379a6d9e8b022121fc57b7160adc0fbbb2a=127.0.0.1:5000/openshift/openshift4/ose-logging-curator5 | |
registry.redhat.io/openshift4/ose-oauth-proxy@sha256:75c9edbacf55ff44f1e2b5f3c656f42064e548a8559cf1bffa51312c0c3c8958=127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7:1.12.6=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7:1.12.6 | |
registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel7@sha256:535379c05aa75405254bf0139dfad43dd8568ae6de37650746c8c961e473dcf2=127.0.0.1:5000/openshift/openshift4/ose-csi-external-provisioner-rhel7 | |
registry.redhat.io/openshift-serverless-1/serving-controller-rhel8@sha256:6c98a3ed3ec8351311ca8b4b122e188e3d45dd4d94b3c9a0d3adb65ba707a37e=127.0.0.1:5000/openshift/openshift-serverless-1/serving-controller-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/application-ui-rhel8@sha256:6dbf7ac1fe5ea0d870063ee91d41c6171c9b56126ae5cb035cb1f773b1567268=127.0.0.1:5000/openshift/rhacm1-tech-preview/application-ui-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/multicluster-operators-application-rhel8@sha256:7db9522402fcf4076a819731e8cf805d6ac4c96b784e0f80398dab2cd8adab79=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-application-rhel8 | |
registry.redhat.io/openshift4/ose-metering-hive@sha256:f05d0f169cbf104d02a62c437de20f3cdf2cce299920f7c491e0b81fca0599e3=127.0.0.1:5000/openshift/openshift4/ose-metering-hive | |
registry.redhat.io/ocs4/rook-ceph-rhel8-operator@sha256:9addc80eb620d5d48ab4a51d3525ea6149a19a9719be71d4e3263eca2e1ceb13=127.0.0.1:5000/openshift/ocs4/rook-ceph-rhel8-operator | |
registry.redhat.io/openshift-service-mesh/pilot-rhel8@sha256:dc8dbd48401e7aa01ad38d881d8edfcf527f2a74d7058887191e137df7bff838=127.0.0.1:5000/openshift/openshift-service-mesh/pilot-rhel8 | |
registry.redhat.io/amq7/amq-online-1-address-space-controller:1.4=127.0.0.1:5000/openshift/amq7/amq-online-1-address-space-controller:1.4 | |
registry.redhat.io/container-native-virtualization/kubevirt-ssp-operator@sha256:844e1d87204ab5a3b8a17f8017019916ba701f5db5dbe75c17703f61f9e37837=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-ssp-operator | |
registry.redhat.io/ocs4/rook-ceph-rhel8-operator@sha256:8dee92b1f069fe7d5a00d4427a56b15f55034d58013e0f30bb68859bbc608914=127.0.0.1:5000/openshift/ocs4/rook-ceph-rhel8-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/knative-rhel8-operator@sha256:55623cc6982e3b25d2077d6331f74d784f366eb2af1835f4b923be583e3bb35b=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/knative-rhel8-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-broker-ingress-rhel8@sha256:0115c6c6306b20884905cd3a676622cd3c43030ac0b4ab0aba422f89c400108c=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-broker-ingress-rhel8 | |
registry.redhat.io/rh-sso-7-tech-preview/sso74-rhel8-operator:7.4=127.0.0.1:5000/openshift/rh-sso-7-tech-preview/sso74-rhel8-operator:7.4 | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator:1.0.1=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator:1.0.1 | |
registry.redhat.io/openshift-service-mesh/galley-rhel8@sha256:d2d095b1b752823566506408ea6c783e0a3126df72dfb18b86f90606571a7144=127.0.0.1:5000/openshift/openshift-service-mesh/galley-rhel8 | |
registry.redhat.io/rhcam-1-1/openshift-migration-controller-rhel8@sha256:db3247ffbaaace242cfd3d530994ccdeb0a39f4e3b46e43f7f3870279cf65d1a=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-controller-rhel8 | |
registry.redhat.io/openshift4/ose-oauth-proxy@sha256:dc0fcd9252214037a45f15bdfdd703f47fd95e8f98895552bb6e7b2d205081c5=127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
registry.redhat.io/container-native-virtualization/virt-operator:v2.2.0-15=127.0.0.1:5000/openshift/container-native-virtualization/virt-operator:v2.2.0-15 | |
registry.redhat.io/container-native-virtualization/virtio-win@sha256:5e46d286fc4195c692b8833e4cf9dd8b004a315a15f9968e9b1410b08b9a81e7=127.0.0.1:5000/openshift/container-native-virtualization/virtio-win | |
registry.redhat.io/openshift4/ose-metering-hive@sha256:3670c54b53d8c26715b03fb35fb2e306388b5b94f07ded2392403207e720eb56=127.0.0.1:5000/openshift/openshift4/ose-metering-hive | |
registry.redhat.io/openshift4/ose-logging-kibana5@sha256:32c7cfd9249a3d009a32e6649002ddfe1826a8bcdd2e15ae03a073a978266bf1=127.0.0.1:5000/openshift/openshift4/ose-logging-kibana5 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7@sha256:76667b3532df11a511b03c4efa165723cff48aa5fb2e56a2ceb693c02a6bce7a=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7 | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-controller-rhel8@sha256:93ba2d008cb5d8af82c4c18f1985f7e9bb1567e5e4a9179306f8c62fd6eec2c7=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-controller-rhel8 | |
registry.redhat.io/ocs4/rook-ceph-rhel8-operator@sha256:ac9d216d2d691f910f6b4772bddf5b6857d01f31595f2e929e5fcb589fa212c2=127.0.0.1:5000/openshift/ocs4/rook-ceph-rhel8-operator | |
registry.redhat.io/amq7-tech-preview/amq-online-1-iot-http-adapter:1.4=127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-http-adapter:1.4 | |
registry.redhat.io/openshift4/ose-cluster-logging-operator@sha256:5022affd44c11ccfd79861976d0f2d2a5117cbb22753ed2cce00eba7a1ccefa3=127.0.0.1:5000/openshift/openshift4/ose-cluster-logging-operator | |
registry.redhat.io/fuse7-tech-preview/fuse-apicurito-operator:1.5=127.0.0.1:5000/openshift/fuse7-tech-preview/fuse-apicurito-operator:1.5 | |
registry.redhat.io/container-native-virtualization/virt-cdi-cloner@sha256:c194d04d5501e18cccd7d9d4433aa7da804d2d6aea95c5b27c0b62aae89384a9=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-cloner | |
registry.redhat.io/container-native-virtualization/kubevirt-metrics-collector@sha256:e5a9f5e19a399d267c28cdc8d7fb2d1465d541d8a8fa8c2c4d20ad4ea069d0e0=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-metrics-collector | |
registry.redhat.io/container-native-virtualization/ovs-cni-plugin@sha256:16bd66a241c1c7d0e0090963dce033453f283748f953a0cb70d5daa625849efe=127.0.0.1:5000/openshift/container-native-virtualization/ovs-cni-plugin | |
registry.redhat.io/openshift-serverless-1/knative-rhel8-operator@sha256:86b76bb49e0aa1c09808ae8c1b734483155e9332a8fa6e2434f084fc2376bfa2=127.0.0.1:5000/openshift/openshift-serverless-1/knative-rhel8-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-queue-rhel8@sha256:63d3b837aacbec5967063be5eada4ab65b733f0dba088a6f9c518c5c1b409c9a=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-queue-rhel8 | |
registry.redhat.io/openshift-service-mesh/istio-cni-rhel8@sha256:b7b36d109847b11748442358178892d1e19ac121c920efe940f3b8dbc70ee28b=127.0.0.1:5000/openshift/openshift-service-mesh/istio-cni-rhel8 | |
registry.redhat.io/openshift-service-mesh/prometheus-rhel8@sha256:6773d9a72465724c71f2ff988c37f42cc8ebddb0678f75e4d3e953a1e1e81c76=127.0.0.1:5000/openshift/openshift-service-mesh/prometheus-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/img-minio-mc-rhel7@sha256:7ef82fa816799d8b55857baa6e53681ff5212acfb201b6fa22e831e5a31218df=127.0.0.1:5000/openshift/rhacm1-tech-preview/img-minio-mc-rhel7 | |
registry.redhat.io/3scale-amp2/apicast-rhel7-operator@sha256:bcf2f453d7f828ad9df2a29e31cde4b4d3bd08b1205e1928b8362d7331854761=127.0.0.1:5000/openshift/3scale-amp2/apicast-rhel7-operator | |
registry.redhat.io/rhpam-7/rhpam-rhel8-operator:7.6.0=127.0.0.1:5000/openshift/rhpam-7/rhpam-rhel8-operator:7.6.0 | |
registry.redhat.io/openshift4/ose-logging-fluentd@sha256:c20ff48fc4595e09c039ea7fe7eedb3208608d9c4258449b58ee3793eca98175=127.0.0.1:5000/openshift/openshift4/ose-logging-fluentd | |
registry.redhat.io/openshift4/ose-ptp-operator@sha256:a00dac527acc4bd2702374523e93f81e3f076f205e24aea0c939a65b6c1cafc0=127.0.0.1:5000/openshift/openshift4/ose-ptp-operator | |
registry.redhat.io/openshift-service-mesh/grafana-rhel8@sha256:f76e8bbd26c2bd474d55ce6378874fcb736e464aa0737ca22897a7b58b55661f=127.0.0.1:5000/openshift/openshift-service-mesh/grafana-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/multicluster-operators-subscription-release-rhel8@sha256:3ad83fc9cf2fdc8615f8d85e35dd1e56dbc955e503a67562e5a42fcebc50d6ad=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-subscription-release-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/multicluster-operators-deployable-rhel8@sha256:a46e30b8a3debf19340ee45a7734b85dd6e497fb8e136630bc95e5db8314ef68=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-deployable-rhel8 | |
registry.redhat.io/openshift4/ose-logging-curator5@sha256:ff373d55c58aa440c9757994857b5f9b2fc4afe9ec89feedf8245d3c77062999=127.0.0.1:5000/openshift/openshift4/ose-logging-curator5 | |
registry.access.redhat.com/ubi8-minimal@sha256:9285da611437622492f9ef4229877efe302589f1401bbd4052e9bb261b3d4387=127.0.0.1:5000/openshift/ubi8-minimal | |
registry.redhat.io/container-native-virtualization/virt-operator:v2.1.0-17=127.0.0.1:5000/openshift/container-native-virtualization/virt-operator:v2.1.0-17 | |
registry.redhat.io/amq7-tech-preview/amq-online-1-iot-auth-service:1.4=127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-auth-service:1.4 | |
registry.redhat.io/openshift3/ose-cli@sha256:eda798d5c0f026b2221716f5df33fd97cd25bfb565f969e76e62815f1bd3a924=127.0.0.1:5000/openshift/openshift3/ose-cli | |
registry.redhat.io/rhcam-1-2/openshift-migration-velero-plugin-for-gcp-rhel8@sha256:37c0b170d168fcebb104e465621e4ce97515d82549cd37cb42be94e3e55a4271=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-velero-plugin-for-gcp-rhel8 | |
registry.redhat.io/3scale-amp2/3scale-rhel7-operator:1.10-6=127.0.0.1:5000/openshift/3scale-amp2/3scale-rhel7-operator:1.10-6 | |
registry.redhat.io/rhacm1-tech-preview/drishti-cis-rhel7@sha256:835c20e661d1c6246788bde01e92ecf64d35edeb1b7b7913a714fc0d04efff80=127.0.0.1:5000/openshift/rhacm1-tech-preview/drishti-cis-rhel7 | |
registry.redhat.io/rhacm1-tech-preview/openshift-hive-rhel7-operator@sha256:d73f6b889cb5e7f500dfc8d2f2622b10465f08bed90c04dd23ec638082bc15cb=127.0.0.1:5000/openshift/rhacm1-tech-preview/openshift-hive-rhel7-operator | |
registry.redhat.io/rhacm1-tech-preview/console-ui-rhel8@sha256:cf1cfb61a9c05e3a552747ad5e37d38d8d2304cfab39d41bdbde183cb142604b=127.0.0.1:5000/openshift/rhacm1-tech-preview/console-ui-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/iam-policy-controller-rhel7@sha256:bd21762cc02c26e01d53a24ec29bc17fabeed07fd603f1c06b7baaf738e80eb7=127.0.0.1:5000/openshift/rhacm1-tech-preview/iam-policy-controller-rhel7 | |
registry.redhat.io/3scale-amp2/apicast-gateway-rhel8@sha256:3023b37ccfc902bfafd2c344dc5595295369a2dc00ea38b27c193ca5b138942b=127.0.0.1:5000/openshift/3scale-amp2/apicast-gateway-rhel8 | |
registry.redhat.io/openshift-serverless-1/serving-controller-rhel8@sha256:9c4bf2e4671e3e5d878544fcfe03f760f38fcb58ff939968e5645c98f6ad7879=127.0.0.1:5000/openshift/openshift-serverless-1/serving-controller-rhel8 | |
registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:871fa4802e4573fbaa524da7926162a9fd79d1f79552d1585dd9be612e20fd24=127.0.0.1:5000/openshift/openshift4/ose-node-feature-discovery | |
registry.redhat.io/rhacm1-tech-preview/rcm-controller-rhel8@sha256:6fec25c8d474ebafcba1cbfc61dc62a7db7393fe4180d1b0f56ed6d5f73ceebe=127.0.0.1:5000/openshift/rhacm1-tech-preview/rcm-controller-rhel8 | |
registry.redhat.io/amq7/amq-online-1-console-server-rhel7:1.4=127.0.0.1:5000/openshift/amq7/amq-online-1-console-server-rhel7:1.4 | |
registry.redhat.io/amq7-tech-preview/amq-online-1-iot-lorawan-adapter-rhel7:1.4=127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-lorawan-adapter-rhel7:1.4 | |
registry.redhat.io/3scale-amp2/apicast-rhel7-operator@sha256:b3b0426e6248fcbc20ecd37ec62d00e1baa924c4dc2a5fa461030a2d3ef0c9f0=127.0.0.1:5000/openshift/3scale-amp2/apicast-rhel7-operator | |
registry.redhat.io/container-native-virtualization/cluster-network-addons-operator:v2.2.0-8=127.0.0.1:5000/openshift/container-native-virtualization/cluster-network-addons-operator:v2.2.0-8 | |
registry.redhat.io/rhacm1-tech-preview/kui-web-terminal-rhel8@sha256:b1c14b6dad25a982b83429bc7466931a379c696d534476604067eca31ef10bd9=127.0.0.1:5000/openshift/rhacm1-tech-preview/kui-web-terminal-rhel8 | |
registry.redhat.io/openshift4/ose-descheduler@sha256:15a0ae6188000adc8a9b8e494d8461f45d61f4b914d2eb3a2062e59dbfca9f04=127.0.0.1:5000/openshift/openshift4/ose-descheduler | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7@sha256:1b9eff98f69d3f4cc7083f558cea07e73f24d7c864a6f956904969368acf4401=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7 | |
registry.redhat.io/openshift-service-mesh/proxyv2-rhel8@sha256:944bc9ab11dfcd9fcc5069a4a9b9d6f9443ab95b5d14975b209dc39d22d136ff=127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:7c1424bfa25585e2f1a725b51043c23eb86b1d858f85a368cb19c6e307d89a77=127.0.0.1:5000/openshift/openshift4/ose-sriov-dp-admission-controller | |
registry.redhat.io/rhacm1-tech-preview/multiclusterhub-rhel8-operator@sha256:40256d3b1bd7a5e484c91c8d09e5cc4680f6676944b7e60583bf67074977fb3e=127.0.0.1:5000/openshift/rhacm1-tech-preview/multiclusterhub-rhel8-operator | |
registry.redhat.io/rhdm-7/rhdm-kieserver-rhel8@sha256:16461e4b59424965608a2bd0519525e33468dbacdeb32aac44bf77d81419f04d=127.0.0.1:5000/openshift/rhdm-7/rhdm-kieserver-rhel8 | |
registry.redhat.io/openshift4/ose-promtail@sha256:1264aa92ebc6cccf46da3a35fbb54421b806dda5640c7e9706e6e815d13f509d=127.0.0.1:5000/openshift/openshift4/ose-promtail | |
registry.redhat.io/openshift4/ose-metering-presto@sha256:2dc9526f5f4fd2f12fcd74369d226d9d03646604a38a2ae7ec6b4bae394d9da3=127.0.0.1:5000/openshift/openshift4/ose-metering-presto | |
registry.redhat.io/openshift-service-mesh/proxyv2-rhel8@sha256:f8650fc4452da86d5a7a15a8a798b5b9d15acd0d0bf795624ef619b8fd1fbaf2=127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/hcm-compliance-rhel8@sha256:8921e20ff4480b1233ef87733a46b06d9fe8612c6c8bebadf31970bda3162644=127.0.0.1:5000/openshift/rhacm1-tech-preview/hcm-compliance-rhel8 | |
registry.redhat.io/rhcam-1-1/openshift-migration-velero-plugin-for-aws-rhel8@sha256:2623e239a43208390680fb1da81f547248773d48da546b9cc6c516b2e60daee4=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-velero-plugin-for-aws-rhel8 | |
registry.redhat.io/openshift-service-mesh/proxy-init-rhel7@sha256:7d14fc0fb52b7bf98427e9fb0cefbb3fd269e8a9341c2e17ba9cc347e53f73b8=127.0.0.1:5000/openshift/openshift-service-mesh/proxy-init-rhel7 | |
registry.redhat.io/openshift4/ose-cluster-logging-operator@sha256:c7c1af490fec56a15dfd1ab51d08edb79bd8d2a29ea6f4855e68d3a28e61520d=127.0.0.1:5000/openshift/openshift4/ose-cluster-logging-operator | |
registry.redhat.io/openshift4/ose-local-storage-diskmaker@sha256:2c0c040928ab3b83b30896b83ddc2a415c0a7fa282e370e46b1b375638f2814d=127.0.0.1:5000/openshift/openshift4/ose-local-storage-diskmaker | |
registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:dc4a70de7491290bcabae9518c907d681992a27304efe75d543a0937c74da030=127.0.0.1:5000/openshift/openshift4/ose-cluster-nfd-operator | |
registry.redhat.io/openshift4/ose-ansible-service-broker@sha256:a2acd20ea4ad20f9e2ae28ad14f15bfc3e7ca65196a118c6a465232a4d12e539=127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker | |
registry.redhat.io/openshift-service-mesh/proxyv2-rhel8@sha256:e7813217b71b1004f7fcf5e212bf4f13ae7148f498860fb8b1e521a0147580ad=127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator:1.0.10=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator:1.0.10 | |
registry.redhat.io/container-native-virtualization/kubevirt-vmware:v2.2.0-6=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-vmware:v2.2.0-6 | |
registry.redhat.io/container-native-virtualization/node-maintenance-operator:v2.2.0-4=127.0.0.1:5000/openshift/container-native-virtualization/node-maintenance-operator:v2.2.0-4 | |
registry.redhat.io/rhacm1-tech-preview/multicluster-mongodb-init-rhel7@sha256:59de102215b7b144a1e2d25792ca50f43a8326be4ebf8c65dc9c5d7802513f42=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-mongodb-init-rhel7 | |
registry.redhat.io/rhacm1-tech-preview/grc-ui-rhel8@sha256:164fb996b824e5207ab9b7efa2e7881c9938fc94183ddf08bb83a9e4a9be4f1e=127.0.0.1:5000/openshift/rhacm1-tech-preview/grc-ui-rhel8 | |
registry.redhat.io/amq7/amq-streams-bridge-rhel7@sha256:a224012f5b28e3525a0a63a30dfc6975cb1f6e7ff09cdcfc33469fa1e1cfedaa=127.0.0.1:5000/openshift/amq7/amq-streams-bridge-rhel7 | |
registry.redhat.io/amq7/amq-streams-bridge-rhel7@sha256:b62d0f14862c50c5568e12249a131a76436be1f678e7ba8a767d1a4d607d7405=127.0.0.1:5000/openshift/amq7/amq-streams-bridge-rhel7 | |
registry.redhat.io/distributed-tracing/jaeger-ingester-rhel7@sha256:9e9ef992dfe2b432cd3a603c1fcce5e9f490bc6d39abc832dc65070a86bdc56e=127.0.0.1:5000/openshift/distributed-tracing/jaeger-ingester-rhel7 | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-rhel8-operator:0.8.1-3=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-rhel8-operator:0.8.1-3 | |
registry.redhat.io/jboss-datagrid-7/datagrid73-openshift@sha256:3375ec169d274278da56d1401c5c1285f7d2812ea0bde2ac9ad9652b69f80893=127.0.0.1:5000/openshift/jboss-datagrid-7/datagrid73-openshift | |
registry.redhat.io/rhpam-7/rhpam-smartrouter-rhel8@sha256:4fbfe67e9b7d8411ef963815d2c2bbbd8071025741f8f0184d48b5bd769dc9e3=127.0.0.1:5000/openshift/rhpam-7/rhpam-smartrouter-rhel8 | |
registry.redhat.io/container-native-virtualization/kubevirt-cpu-node-labeller:v2.2.0-3=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-cpu-node-labeller:v2.2.0-3 | |
registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:4366949bcc5ea8a7270c0b3523f849e0d9ab98a1c80a81f0c1e772e7ddda20a8=127.0.0.1:5000/openshift/openshift4/ose-sriov-network-device-plugin | |
registry.redhat.io/3scale-amp26/3scale-operator=127.0.0.1:5000/openshift/3scale-amp26/3scale-operator | |
registry.redhat.io/rhacm1-tech-preview/multicluster-mongodb-init-rhel7@sha256:2531142f26d31f2beba7e089ce23a2646b0a501dfb7c8df51c035e7ddb818bbd=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-mongodb-init-rhel7 | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-networking-istio-rhel8@sha256:4e19f90b1aea1b7f4ba04f5d6b659f33a27904b37ca3f500e4aa982a9730b48b=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-networking-istio-rhel8 | |
registry.redhat.io/openshift-service-mesh/istio-cni-rhel8@sha256:b91b7890135b3e998a8d23650f7399093d1a6df7bc59edb609494f9bbedf3ac5=127.0.0.1:5000/openshift/openshift-service-mesh/istio-cni-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/multicluster-operators-deployable-rhel8@sha256:62b28d696eb97476666157a73973c3b47ceb2118309161e545d5e0ab911c86f6=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-deployable-rhel8 | |
registry.redhat.io/rhscl/postgresql-10-rhel7@sha256:de3ab628b403dc5eed986a7f392c34687bddafee7bdfccfd65cecf137ade3dfd=127.0.0.1:5000/openshift/rhscl/postgresql-10-rhel7 | |
registry.redhat.io/openshift4/ose-logging-elasticsearch5@sha256:e4cca1134b7213c8877ac6522fcad172e0f47eea799020eed25b90dc928af28e=127.0.0.1:5000/openshift/openshift4/ose-logging-elasticsearch5 | |
registry.redhat.io/datagrid/datagrid-8-rhel8:1.0-8.0.0.GA.1=127.0.0.1:5000/openshift/datagrid/datagrid-8-rhel8:1.0-8.0.0.GA.1 | |
registry.redhat.io/ocs4/ocs-rhel8-operator@sha256:e7c9490b5d8d430d25f269548a3cfec2f5f6669e3950f9c3418a429a9ce492aa=127.0.0.1:5000/openshift/ocs4/ocs-rhel8-operator | |
registry.redhat.io/distributed-tracing/jaeger-es-index-cleaner-rhel7@sha256:55d12b987d97f9e3ad94c929f838c82a6594f0103345922cb58cfef81cffeb09=127.0.0.1:5000/openshift/distributed-tracing/jaeger-es-index-cleaner-rhel7 | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-cronjob-receive-adapter-rhel8@sha256:d38ed556aac18549c7770b211b7ed5b53b6bec63d7b18dc3c5c1b106609b18ee=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-cronjob-receive-adapter-rhel8 | |
registry.redhat.io/openshift-service-mesh/grafana-rhel8@sha256:35a8fb6206216b01444e5fa31f4a15ccef42b254e0313ac640b2ebefb43a2de4=127.0.0.1:5000/openshift/openshift-service-mesh/grafana-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/hcm-compliance-rhel8@sha256:91e1fd6e84bbbb957ddc5b5fdb1cc2326d34d5fc5ccb3250697d412bc72164df=127.0.0.1:5000/openshift/rhacm1-tech-preview/hcm-compliance-rhel8 | |
registry.redhat.io/amq7/amq-online-1-standard-controller:1.4=127.0.0.1:5000/openshift/amq7/amq-online-1-standard-controller:1.4 | |
registry.redhat.io/rhcam-1-1/openshift-migration-plugin-rhel8@sha256:a0761f3014e50ba6832bccff248d53e1cb41bf8a3100833bc05adec26eb04c49=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-plugin-rhel8 | |
registry.redhat.io/rhcam-1-1/openshift-migration-ui-rhel8@sha256:11c8c729bd4871c33b52f0405a0c5ec0438aefd2ed0ffc712034ba89160ed133=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-ui-rhel8 | |
registry.redhat.io/distributed-tracing/jaeger-es-rollover-rhel7:1.17.1-2=127.0.0.1:5000/openshift/distributed-tracing/jaeger-es-rollover-rhel7:1.17.1-2 | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator@sha256:aee6bebfa43d80936f16fa3ce15b671e2102080d2677d0238790974c2aff8e8d=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
registry.redhat.io/openshift4/ose-oauth-proxy@sha256:0fed2ea034f2fce7894959568ecd5bb65d1aec709b47cc81a23171df8c59300d=127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
registry.redhat.io/amq7-tech-preview/amq-online-1-iot-tenant-service:1.4=127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-tenant-service:1.4 | |
registry.redhat.io/openshift4/ose-ansible-service-broker@sha256:cfd2f0c135e5af036301b5efc2dd495fc66a45e5d9a88e6ade3c7210b8f0c8b6=127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker | |
registry.redhat.io/amq7/amq-streams-rhel7-operator@sha256:49206f4add46050cdd0da7cb74f1f767240892403695e9e7119f68784da545af=127.0.0.1:5000/openshift/amq7/amq-streams-rhel7-operator | |
registry.redhat.io/distributed-tracing/jaeger-es-index-cleaner-rhel7:1.17.1-2=127.0.0.1:5000/openshift/distributed-tracing/jaeger-es-index-cleaner-rhel7:1.17.1-2 | |
registry.redhat.io/openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:69cc201480707a5726a8fac665b70dd299df226b7dd21451686e2f064ebd319d=127.0.0.1:5000/openshift/openshift-serverless-1/kn-cli-artifacts-rhel8 | |
registry.redhat.io/container-native-virtualization/kubevirt-cpu-model-nfd-plugin:v2.2.0-3=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-cpu-model-nfd-plugin:v2.2.0-3 | |
registry.redhat.io/container-native-virtualization/virt-api:v2.2.0-15=127.0.0.1:5000/openshift/container-native-virtualization/virt-api:v2.2.0-15 | |
registry.redhat.io/openshift4/ose-metering-ansible-operator@sha256:da75351c9aae263500e89b5c1fffe3903a8becba013666ef5777d20e46381b05=127.0.0.1:5000/openshift/openshift4/ose-metering-ansible-operator | |
registry.redhat.io/3scale-amp2/3scale-rhel7-operator@sha256:1ba6ec8ed984a011796bbe1eafabb2791957f58ed66ec4a484c024dd96eaf427=127.0.0.1:5000/openshift/3scale-amp2/3scale-rhel7-operator | |
registry.redhat.io/rhacm1-tech-preview/multicluster-operators-application-rhel8@sha256:505d3d1d02dbe054e8033a3db538a9f11a0a7dd3935f7893ee225471797232e1=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-application-rhel8 | |
registry.redhat.io/amq7/amq-online-1-address-space-controller:1.3=127.0.0.1:5000/openshift/amq7/amq-online-1-address-space-controller:1.3 | |
registry.redhat.io/rhcam-1-1/openshift-migration-plugin-rhel8@sha256:94d5f45f5e8236614e124d2753da7165b913b0e2d8199f164d8f2d208339e85e=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-plugin-rhel8 | |
registry.redhat.io/rhcam-1-2/openshift-migration-registry-rhel8@sha256:ea6301a15277d448c8756881c7e2e712893ca8041c913476640f52da9e76cad9=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-registry-rhel8 | |
registry.redhat.io/rhcam-1-1/openshift-migration-plugin-rhel8@sha256:4009d8488a9aa382d7799e8d25617048f57b273c298a9c89a4f233d7a12af628=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-plugin-rhel8 | |
registry.redhat.io/rhcam-1-2/openshift-migration-ui-rhel8@sha256:3b28ebad6a402a4e6cd46e5391dbc41e5e2c3e01fae8253b6e85ea22ceec9821=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-ui-rhel8 | |
registry.redhat.io/rhcam-1-2/openshift-migration-plugin-rhel8@sha256:c71aef654c46500c6486129ee3f38da12ea8fe5ba4cadcb23a66c3b08c225c67=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-plugin-rhel8 | |
registry.redhat.io/openshift4/ose-oauth-proxy@sha256:5fe478210770b21c1eb26c1570bcbda40bc5a79011580ff5ebd4c701a5b04eb2=127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
registry.redhat.io/amq7/amq-broker:7.6=127.0.0.1:5000/openshift/amq7/amq-broker:7.6 | |
registry.redhat.io/amq7-tech-preview/amq-online-1-iot-device-registry-file:1.4=127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-device-registry-file:1.4 | |
registry.redhat.io/rhdm-7/rhdm-kieserver-rhel8@sha256:372d0de47fe02ecacca9f2b48f7ae0f7bfa81f0130eba4f3c6bd8d280c5a9fc1=127.0.0.1:5000/openshift/rhdm-7/rhdm-kieserver-rhel8 | |
registry.redhat.io/rhpam-7/rhpam-kieserver-rhel8@sha256:75372031305a597171895641edf46f19664d08bea19d9c41e6d8d43042a3c97d=127.0.0.1:5000/openshift/rhpam-7/rhpam-kieserver-rhel8 | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-webhook-rhel8@sha256:08b2b05ef9f1fbd1b1aee971eda730e97cbb8e0921dc273305fd26f988a998c6=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-webhook-rhel8 | |
registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:4cbf3005954396be04e12bc5459b5e348106658e2f88434c06149c3d54cbeeb7=127.0.0.1:5000/openshift/openshift4/ose-sriov-dp-admission-controller | |
registry.redhat.io/distributed-tracing/jaeger-es-rollover-rhel7@sha256:9cbb170efc4ba2e97d6f7d8b6dac655081dda2c18c0d0650b766c831fbab10ad=127.0.0.1:5000/openshift/distributed-tracing/jaeger-es-rollover-rhel7 | |
registry.redhat.io/container-native-virtualization/virt-controller:v2.2.0-15=127.0.0.1:5000/openshift/container-native-virtualization/virt-controller:v2.2.0-15 | |
registry.redhat.io/openshift4/ose-local-storage-operator@sha256:f81f62b896d2622cf9196971b972d4364d2eeedc46f3f98735b13b0944b7e723=127.0.0.1:5000/openshift/openshift4/ose-local-storage-operator | |
registry.redhat.io/ocs4/mcg-core-rhel8@sha256:527b648dbb9d2754eaecd24d6d9eaf36c4434994ad59d65013d18e06ae400c23=127.0.0.1:5000/openshift/ocs4/mcg-core-rhel8 | |
registry.redhat.io/openshift-serverless-1-tech-preview/ingress-rhel8-operator@sha256:46932bef2b7ccd657e00080000abbdbb9cb1f20ed6de587dd2a7efd67804be52=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
registry.redhat.io/ocs4/ocs-rhel8-operator@sha256:35da0c0bda55f6cb599da9d8b756d45ca9f0e89c29762752fd44b0da2683882d=127.0.0.1:5000/openshift/ocs4/ocs-rhel8-operator | |
registry.redhat.io/rhacm1-tech-preview/cis-controller-rhel7@sha256:f12dc32c9d6ac72dc4e04aa9d8cb6a7f7d8b9230bdaa4c766d437ed279c464b3=127.0.0.1:5000/openshift/rhacm1-tech-preview/cis-controller-rhel7 | |
registry.redhat.io/rhpam-7/rhpam-controller-rhel8@sha256:b731ec8d1d87a24711b525aaf254ee15d701b60003b97199a097e09d96571666=127.0.0.1:5000/openshift/rhpam-7/rhpam-controller-rhel8 | |
registry.redhat.io/openshift4/ose-logging-elasticsearch5@sha256:1882555578f590eadc01086028e337f5c71c8e70ae94e52da60538f4a9efa23f=127.0.0.1:5000/openshift/openshift4/ose-logging-elasticsearch5 | |
registry.redhat.io/container-native-virtualization/bridge-marker:v2.2.0-3=127.0.0.1:5000/openshift/container-native-virtualization/bridge-marker:v2.2.0-3 | |
registry.redhat.io/openshift4/ose-local-storage-operator@sha256:18b6ec00290e7866b413af41650b9e6b8d6998165aaadff06b1e5b0bd5fbaf6c=127.0.0.1:5000/openshift/openshift4/ose-local-storage-operator | |
registry.redhat.io/codeready-workspaces/server-rhel8@sha256:f7b27fb525a24c4273f0a3e18461a70f3cbb897e845e44abd8ca10fd1de3e1b2=127.0.0.1:5000/openshift/codeready-workspaces/server-rhel8 | |
registry.redhat.io/openshift-service-mesh/proxyv2-rhel8@sha256:37bf20d0b77587db4217ef38912e4f7527543602fe8c5b98b3c58de93d67ef8e=127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:0939883aeffb7b23df69b03cf25b43cecb497179b2a22778ce217bb60f8f6391=127.0.0.1:5000/openshift/openshift4/ose-sriov-network-operator | |
registry.redhat.io/rhacm1-tech-preview/multicloud-manager-rhel8@sha256:a8fb58443c3177e5ac78933a35198a75b7746396d68f477d484b4e0c4bc7d295=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicloud-manager-rhel8 | |
registry.redhat.io/container-native-virtualization/virt-cdi-operator:v2.1.0-22=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-operator:v2.1.0-22 | |
registry.redhat.io/integration-tech-preview/camel-k-rhel8-operator:1.0-13=127.0.0.1:5000/openshift/integration-tech-preview/camel-k-rhel8-operator:1.0-13 | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator:1.1.0=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator:1.1.0 | |
registry.redhat.io/amq7/amq-streams-rhel7-operator@sha256:531f5dd3d6e02b2ac84b11667bf826f589305974994170a53e702e3942ea2869=127.0.0.1:5000/openshift/amq7/amq-streams-rhel7-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/ingress-rhel8-operator@sha256:43abf91f54a4679acc5d29bcfd6420d882b0eaddea5ed4a906bd25f8a54b8f4f=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/ingress-rhel8-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-in-memory-channel-controller-rhel8@sha256:576e251520b4f93e217f3ce92b618718d56cdb47aae3c678c9674b595a09162a=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-in-memory-channel-controller-rhel8 | |
registry.redhat.io/openshift-service-mesh/galley-rhel8@sha256:099e233bec27e0653e0eec41f1da296df2065985ae721d7da0c6461ee2e97a4f=127.0.0.1:5000/openshift/openshift-service-mesh/galley-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/kui-web-terminal-rhel8@sha256:360aabf1a028a760a0ceb807dee4b3602aa2e815c64924e9f39ee5fcb9073860=127.0.0.1:5000/openshift/rhacm1-tech-preview/kui-web-terminal-rhel8 | |
registry.redhat.io/rhpam-7/rhpam-businesscentral-rhel8@sha256:4b634fbd2e44cca9bd04d69ff80d36c9d52590c2c02c49e11fb5818c17b9da61=127.0.0.1:5000/openshift/rhpam-7/rhpam-businesscentral-rhel8 | |
registry.redhat.io/container-native-virtualization/kubevirt-template-validator:v2.2.0-5=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-template-validator:v2.2.0-5 | |
registry.redhat.io/openshift4/ose-oauth-proxy@sha256:caa1663ea800851a592a4cc28e835e9618213206a153e3f0c0fcd99bd8ab65b3=127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
registry.redhat.io/openshift4/ose-template-service-broker@sha256:08fa3421deb996b7944884cf28097aa2cc6e4038ba83f43037e74e632329440a=127.0.0.1:5000/openshift/openshift4/ose-template-service-broker | |
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7@sha256:71adeeb9e6468eaab207bab221cf3e40422f962a989b234360f4febdcaf1ecf8=127.0.0.1:5000/openshift/amq7/amq-streams-kafka-25-rhel7 | |
registry.redhat.io/openshift4/ose-cluster-logging-operator@sha256:3ac14efa8258a693c1379ba7f2d3e0799a43ec5e4f7932c73b6479920f5c0850=127.0.0.1:5000/openshift/openshift4/ose-cluster-logging-operator | |
registry.redhat.io/openshift4/ose-ansible-service-broker-operator@sha256:1b482ef81f8d3eb3ba6fe58ad01feae5d6fb318ed8d6c6d8a965b08fd2ca266c=127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker-operator | |
registry.redhat.io/openshift-service-mesh/pilot-rhel8@sha256:d04c3ff0b16055acdbdb484061dfbf7fd201784c754a5eede3ca1f8f51ae5369=127.0.0.1:5000/openshift/openshift-service-mesh/pilot-rhel8 | |
registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:806e2fb074ef5553361245dafedf335f7db263385d56cb05490206070b8f049e=127.0.0.1:5000/openshift/openshift4/ose-cluster-nfd-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-queue-rhel8@sha256:f9ea8bd70789e67ff00cc134cd966fda8d9e7a764926551d650acc71776db73c=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-queue-rhel8 | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator:1.0.0=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator:1.0.0 | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator@sha256:00e9dc96b46596c8a0da521cb32042dbf06a1c5e8bcc1988dee37ba17e5d964f=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator | |
registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:7ee90f6c4e05d7cde697053120030e2f6f9bf20e88a6469bdde26c12c8743a9b=127.0.0.1:5000/openshift/openshift4/ose-sriov-network-webhook | |
registry.redhat.io/rhcam-1-1/openshift-migration-velero-restic-restore-helper-rhel8@sha256:44f0362c8570d707582bd428aaf18f390ce915ef72cdeb60cf2699171dbda3c8=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-velero-restic-restore-helper-rhel8 | |
registry.redhat.io/ocs4/ocs-rhel8-operator@sha256:d678524eecae519a94894cf76bfdbf6ee4807cf95adfd2ba00b67a399f8b0732=127.0.0.1:5000/openshift/ocs4/ocs-rhel8-operator | |
registry.redhat.io/openshift-service-mesh/grafana-rhel8@sha256:c0d7b78cbfa3bcd023f06a7403da7e7284e185dc0097e9432312444df47a93c5=127.0.0.1:5000/openshift/openshift-service-mesh/grafana-rhel8 | |
registry.access.redhat.com/amqstreams-1/amqstreams10-clusteroperator-openshift:1.0.0=127.0.0.1:5000/openshift/amqstreams-1/amqstreams10-clusteroperator-openshift:1.0.0 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator:1.0.8=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator:1.0.8 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7@sha256:e37e26fb0875b22cd18727da81bb228e503ad78769710a9d58676b7ffa05187b=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7 | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-controller-rhel8@sha256:e655d181bb8b50114f133c86cea6aaf1d1f6e00b848aaa6b94e0efdba2642959=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-controller-rhel8 | |
registry.redhat.io/container-native-virtualization/virt-handler@sha256:45945ab29e98c1f983744a0639100350badb8da95d43527c1d0c2b6d2e29d5aa=127.0.0.1:5000/openshift/container-native-virtualization/virt-handler | |
registry.redhat.io/amq7/amq-broker-lts-rhel7-operator:0.9=127.0.0.1:5000/openshift/amq7/amq-broker-lts-rhel7-operator:0.9 | |
registry.redhat.io/rhcam-1-2/openshift-migration-velero-plugin-for-aws-rhel8@sha256:22c58f575ce2f54bf995fced82f89ba173329d9b88409cf371122f9ae8cabda1=127.0.0.1:5000/openshift/rhcam-1-2/openshift-migration-velero-plugin-for-aws-rhel8 | |
registry.redhat.io/openshift4/ose-logging-fluentd@sha256:3f06254368618499d20d9598789e7b9936d23bda44f28f6b72fc29b8a643e14b=127.0.0.1:5000/openshift/openshift4/ose-logging-fluentd | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator:1.0.5=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator:1.0.5 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7:1.0.8=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7:1.0.8 | |
registry.redhat.io/quay/quay-rhel8-operator@sha256:855743b29f8e050fb1f124b47f622b9e179998df60ad9465b51553f1c729197d=127.0.0.1:5000/openshift/quay/quay-rhel8-operator | |
registry.redhat.io/openshift4/ose-sriov-cni@sha256:4aec3f347c820a223e7c638439f0a90853740f216cc4370d8c33c85b761a8a0c=127.0.0.1:5000/openshift/openshift4/ose-sriov-cni | |
registry.redhat.io/rhacm1-tech-preview/multicluster-operators-subscription-release-rhel8@sha256:bae486699d86b062ff060b3948276ea2202783e6f8526e66ed1afa42256684bb=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-subscription-release-rhel8 | |
registry.redhat.io/amq7/amq-online-1-auth-plugin:1.4=127.0.0.1:5000/openshift/amq7/amq-online-1-auth-plugin:1.4 | |
registry.redhat.io/distributed-tracing/jaeger-all-in-one-rhel7@sha256:393f42201ebd2239d679dcd639ab1b8d5accf8d68c541979dc7e7f51f9c7dcf8=127.0.0.1:5000/openshift/distributed-tracing/jaeger-all-in-one-rhel7 | |
registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel8:v2.2.0-6=127.0.0.1:5000/openshift/container-native-virtualization/hostpath-provisioner-rhel8:v2.2.0-6 | |
registry.redhat.io/ocs4/rook-ceph-rhel8-operator@sha256:708c5e3b3d075235b8031618e2342d4d8df383d191e197fb81a7f7416494eb14=127.0.0.1:5000/openshift/ocs4/rook-ceph-rhel8-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-in-memory-channel-controller-rhel8@sha256:b5d865287e1202266129eeb58b6c0979efb097a607368089e4f666af1ed274c6=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-in-memory-channel-controller-rhel8 | |
registry.redhat.io/openshift-service-mesh/prometheus-rhel8@sha256:70960efc418688d96d6e9b1ee8a35905ce221cb08d9e5aefff9616e44b95cd9f=127.0.0.1:5000/openshift/openshift-service-mesh/prometheus-rhel8 | |
registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:5ebf3de18aa92cb3d73329f01ceb13b59abbf50dca5930c3346341b94c0b0301=127.0.0.1:5000/openshift/openshift4/ose-sriov-network-webhook | |
registry.redhat.io/rhacm1-tech-preview/console-ui-rhel8@sha256:d500c6ddbbe713163729df210d5a70df6232b173f080fbe6a557f39a34ad358a=127.0.0.1:5000/openshift/rhacm1-tech-preview/console-ui-rhel8 | |
registry.redhat.io/amq7/amq-streams-kafka-23-rhel7@sha256:3f64833b8b5c5a9c4cab78134fa3e12594ce845d2a0cfb9acdbf8cdb78958d66=127.0.0.1:5000/openshift/amq7/amq-streams-kafka-23-rhel7 | |
registry.redhat.io/openshift4/ose-oauth-proxy@sha256:46e796b768c848bb24d19ca028cd87c73a0b330601758b9d9f25869b94586725=127.0.0.1:5000/openshift/openshift4/ose-oauth-proxy | |
registry.redhat.io/container-native-virtualization/kubevirt-ssp-operator:v2.2.0-24=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-ssp-operator:v2.2.0-24 | |
registry.redhat.io/container-native-virtualization/kubemacpool:v2.2.0-7=127.0.0.1:5000/openshift/container-native-virtualization/kubemacpool:v2.2.0-7 | |
registry.redhat.io/datagrid/datagrid-8-rhel8-operator:1.0-8.0.0.GA.1=127.0.0.1:5000/openshift/datagrid/datagrid-8-rhel8-operator:1.0-8.0.0.GA.1 | |
registry.redhat.io/jboss-datagrid-7/datagrid73-openshift@sha256:cfd8c4ac1c495b766dd3ff1a85c35afe092858f8f65b52a5b044811719482236=127.0.0.1:5000/openshift/jboss-datagrid-7/datagrid73-openshift | |
registry.redhat.io/fuse7/fuse-online-operator:1.5=127.0.0.1:5000/openshift/fuse7/fuse-online-operator:1.5 | |
registry.redhat.io/openshift4/ose-metering-ansible-operator@sha256:c100e8cba19ec8f56d80188ab21ee2f5791eeff2b3ebbf3b125b8691e32f1cd0=127.0.0.1:5000/openshift/openshift4/ose-metering-ansible-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-rhel8-operator@sha256:1b4dbf4288e6e0921563121115a4836db51a368dc2220b1c3fc651c75fa9fb30=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-rhel8-operator | |
registry.redhat.io/openshift-service-mesh/proxy-init-rhel7@sha256:5f4989ea6f73ad7056c8661584f1f134625e1cba884fec228648f5f2c4c021a0=127.0.0.1:5000/openshift/openshift-service-mesh/proxy-init-rhel7 | |
registry.redhat.io/3scale-amp2/system-rhel7@sha256:a934997501b41be2ca2b62e37c35bd334252b5e2ed28652c275bd1de8a9d324a=127.0.0.1:5000/openshift/3scale-amp2/system-rhel7 | |
registry.redhat.io/rhacm1-tech-preview/redisgraph-tls-rhel8@sha256:03c3be1786f910ad112c175a6bdd70b940ecb927f96761269ed985a8f0118099=127.0.0.1:5000/openshift/rhacm1-tech-preview/redisgraph-tls-rhel8 | |
registry.redhat.io/openshift4/ose-cluster-kube-descheduler-operator@sha256:335682ab2d762b26634dec029864ab43e86faa8729461af197c5018b9a014186=127.0.0.1:5000/openshift/openshift4/ose-cluster-kube-descheduler-operator | |
registry.redhat.io/distributed-tracing/jaeger-query-rhel7:1.17.1-2=127.0.0.1:5000/openshift/distributed-tracing/jaeger-query-rhel7:1.17.1-2 | |
registry.redhat.io/container-native-virtualization/kubevirt-template-validator@sha256:1fdf19a20571cf3cb7ba8fe217abaef552db6b9e5fff9c159f4314ac479c9ac9=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-template-validator | |
registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:6c66d80bb369f29bcdc7956838434806f1672380a2ff2d1b422b96904f3f812b=127.0.0.1:5000/openshift/openshift4/ose-cluster-nfd-operator | |
registry.redhat.io/openshift4/ose-ptp@sha256:55f4151c18e779ef12a620a10fdc5ae1a80283a0ace377b3cd4b37ee15a69e9e=127.0.0.1:5000/openshift/openshift4/ose-ptp | |
registry.redhat.io/container-native-virtualization/virt-cdi-importer:v2.2.0-5=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-importer:v2.2.0-5 | |
registry.redhat.io/rhacm1-tech-preview/search-collector-rhel7@sha256:5db4a6bf7ea639c72d4c46e41592ff941c163f172d6a2ae55874fd89b0a7f993=127.0.0.1:5000/openshift/rhacm1-tech-preview/search-collector-rhel7 | |
registry.redhat.io/rhacm1-tech-preview/endpoint-rhel8-operator@sha256:970fb1bb2f481d82d171464803d21c1ceed8f9034889fd74d8f5a9b433a8216a=127.0.0.1:5000/openshift/rhacm1-tech-preview/endpoint-rhel8-operator | |
registry.redhat.io/rhacm1-tech-preview/multiclusterhub-repo-rhel8@sha256:54a7d40d6ac07234e72d8c7aa322c51d30cc431b70a2d2f8b08ca24ed9f5afe3=127.0.0.1:5000/openshift/rhacm1-tech-preview/multiclusterhub-repo-rhel8 | |
registry.redhat.io/amq7/amq-online-1-controller-manager:1.3=127.0.0.1:5000/openshift/amq7/amq-online-1-controller-manager:1.3 | |
registry.redhat.io/amq7/amq-streams-bridge-rhel7@sha256:022ad2207d77c501e8b735317df08ba471ca398d7eaea5d06e0833566b09d37f=127.0.0.1:5000/openshift/amq7/amq-streams-bridge-rhel7 | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-activator-rhel8@sha256:e11202ebdd7ad5523bd21ecb30ce436592d2edf4360cfc82e3ceb545b44cce4c=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-activator-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/search-api-rhel8@sha256:a0e24ddf1d5bb715638b85c5a0173525ea874eb20b404bd5a89ea8e34f5ebfaa=127.0.0.1:5000/openshift/rhacm1-tech-preview/search-api-rhel8 | |
registry.redhat.io/codeready-workspaces/machineexec-rhel8@sha256:24b64b5e258e9bd62cbdbdab24780c4f68112696bfdd98687f5895f542cefd77=127.0.0.1:5000/openshift/codeready-workspaces/machineexec-rhel8 | |
registry.redhat.io/distributed-tracing/jaeger-agent-rhel7@sha256:6ad21491d876ddc6f0625169a3ba4526214906b28e6e051061016d8c63878a60=127.0.0.1:5000/openshift/distributed-tracing/jaeger-agent-rhel7 | |
registry.redhat.io/container-native-virtualization/virt-cdi-uploadproxy@sha256:283aadb1db8148f0891352ba1ec50f63227264ffa3e707028de8cca98f86e1bc=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-uploadproxy | |
registry.redhat.io/openshift4/ose-ptp-operator@sha256:a407f78815fdbaea6412cbefc18fd9cf7358777661762aeb33abf50de7cb6840=127.0.0.1:5000/openshift/openshift4/ose-ptp-operator | |
registry.redhat.io/rhpam-7/rhpam-smartrouter-rhel8@sha256:d0d426173e6e3fed9747147e34d19388611815bc93f38dd6f5b3c2f2bd6cc0cd=127.0.0.1:5000/openshift/rhpam-7/rhpam-smartrouter-rhel8 | |
registry.redhat.io/openshift4/ose-logging-elasticsearch5@sha256:cd4a581acc7eb704da125b8d5176a76654480769892e9a396efff8390bebfa0d=127.0.0.1:5000/openshift/openshift4/ose-logging-elasticsearch5 | |
registry.redhat.io/openshift-service-mesh/kiali-rhel7-operator@sha256:d0ec68445b8f4019fc2b59015a586f81fe60ddf9b52b0f174c79b08095954b57=127.0.0.1:5000/openshift/openshift-service-mesh/kiali-rhel7-operator | |
registry.redhat.io/openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:87a16076068a3880ff62dcc7d1ec902f3c8e8977538996a957b04e11dfbcf439=127.0.0.1:5000/openshift/openshift-serverless-1/serving-autoscaler-hpa-rhel8 | |
registry.redhat.io/3scale-amp2/3scale-rhel7-operator:1.10-5=127.0.0.1:5000/openshift/3scale-amp2/3scale-rhel7-operator:1.10-5 | |
registry.redhat.io/container-native-virtualization/virt-cdi-importer@sha256:701ba1f8bcfe6c70fc92ac8e68ec9bd229ca6d9ddf9e453827a46bda6dd0ebd0=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-importer | |
registry.redhat.io/ocs4/mcg-rhel8-operator@sha256:ecb1c4e486aca77bda000fa71d190f90e06173447cff1bed983fb6e246975863=127.0.0.1:5000/openshift/ocs4/mcg-rhel8-operator | |
registry.redhat.io/ocs4/ocs-rhel8-operator@sha256:78b97049b194ebf4f72e29ac83b0d4f8aaa5659970691ff459bf19cfd661e93a=127.0.0.1:5000/openshift/ocs4/ocs-rhel8-operator | |
registry.redhat.io/openshift-serverless-1/serving-webhook-rhel8@sha256:d940978a90c6388d8739d477f1382b34f999c6be4a8d23345bc21aac913552b2=127.0.0.1:5000/openshift/openshift-serverless-1/serving-webhook-rhel8 | |
registry.redhat.io/container-native-virtualization/kubernetes-nmstate-handler-rhel8@sha256:a7946b4d171184c1c0f6cee1f4e63fb18a66121a7024da0132723387d945d459=127.0.0.1:5000/openshift/container-native-virtualization/kubernetes-nmstate-handler-rhel8 | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-in-memory-channel-dispatcher-rhel8@sha256:5c7a11004ac766c27c83eb2502b6f2add455a65cc7858139a978ff75c21f80ca=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-in-memory-channel-dispatcher-rhel8 | |
registry.redhat.io/3scale-amp2/backend-rhel7@sha256:bd626295c55a7815a816d7049fba1febdec6a3305dee2a3292e92a26d56036b0=127.0.0.1:5000/openshift/3scale-amp2/backend-rhel7 | |
registry.redhat.io/rhacm1-tech-preview/console-api-rhel8@sha256:a7a4ced134c7bee6afab801479b3db9ff0dadd093b0eae108590e85c324ac865=127.0.0.1:5000/openshift/rhacm1-tech-preview/console-api-rhel8 | |
registry.redhat.io/amq7/amq-online-1-controller-manager-rhel7-operator:1.4=127.0.0.1:5000/openshift/amq7/amq-online-1-controller-manager-rhel7-operator:1.4 | |
registry.redhat.io/rhdm-7/rhdm-decisioncentral-rhel8@sha256:39afa1dcb5634bbe4901c0ed36d66b92713e8101ffa5ea9f20b94d9d93de9b5f=127.0.0.1:5000/openshift/rhdm-7/rhdm-decisioncentral-rhel8 | |
registry.redhat.io/rhcam-1-1/openshift-migration-rhel7-operator@sha256:a4c461aecdb7428be38c854f4c301db6bc5cbca9d13deacb479c750e45ad8856=127.0.0.1:5000/openshift/rhcam-1-1/openshift-migration-rhel7-operator | |
registry.redhat.io/rhacm1-tech-preview/search-aggregator-rhel7@sha256:c5eb1a93757691dfa08236639a15dfa13651a7474d838afd22c802767ecc1e27=127.0.0.1:5000/openshift/rhacm1-tech-preview/search-aggregator-rhel7 | |
registry.redhat.io/distributed-tracing/jaeger-es-rollover-rhel7@sha256:7c1400ebcd3de94cc937ae337924f95aad45de9739e721c4c61db1f62279636f=127.0.0.1:5000/openshift/distributed-tracing/jaeger-es-rollover-rhel7 | |
registry.redhat.io/openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:095e3f4d918ccdf00bad012380e24eb93a33ce8c44c95978e4f8a23cdf4df8d2=127.0.0.1:5000/openshift/openshift-serverless-1/kn-cli-artifacts-rhel8 | |
registry.redhat.io/openshift-service-mesh/istio-cni-rhel8@sha256:187adf6108d6f35a9ef6ad2f36b99915641e58f41089efc992aeba3ea5a59930=127.0.0.1:5000/openshift/openshift-service-mesh/istio-cni-rhel8 | |
registry.redhat.io/codeready-workspaces/server-operator-rhel8:1.2=127.0.0.1:5000/openshift/codeready-workspaces/server-operator-rhel8:1.2 | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-in-memory-channel-dispatcher-rhel8@sha256:7d76c912ac54181c53628191f6102ec6bb4549a5088b3d407a690912b7cced00=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-in-memory-channel-dispatcher-rhel8 | |
registry.redhat.io/3scale-amp2/apicast-gateway-rhel8@sha256:52013cc8722ce507e3d0b066a8ae4edb930fb54e24e9f653016658ad1708b5d7=127.0.0.1:5000/openshift/3scale-amp2/apicast-gateway-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/mcm-topology-api-rhel8@sha256:1621d3d8f3cf5def19003185bac0cf313423ba049038930cc6a9849561890cbd=127.0.0.1:5000/openshift/rhacm1-tech-preview/mcm-topology-api-rhel8 | |
registry.redhat.io/amq7/amq-broker-rhel7-operator:0.13=127.0.0.1:5000/openshift/amq7/amq-broker-rhel7-operator:0.13 | |
registry.redhat.io/amq7/amq-cert-manager:1.0=127.0.0.1:5000/openshift/amq7/amq-cert-manager:1.0 | |
registry.redhat.io/openshift4/ose-logging-fluentd@sha256:c996f464de52cf613e0613d7b4a86d6fd7e68015b2496fe8f5e19ac8f02ebe2c=127.0.0.1:5000/openshift/openshift4/ose-logging-fluentd | |
registry.redhat.io/3scale-amp2/apicast-gateway-rhel8@sha256:21be62a6557846337dc0cf764be63442718fab03b95c198a301363886a9e74f9=127.0.0.1:5000/openshift/3scale-amp2/apicast-gateway-rhel8 | |
registry.redhat.io/openshift4/ose-logging-curator5@sha256:249de0ec238356802e8d047b874ef33b790ca052ce46c52d546c3f4d4f1e0ef5=127.0.0.1:5000/openshift/openshift4/ose-logging-curator5 | |
registry.redhat.io/codeready-workspaces/stacks-java-rhel8@sha256:7d0f9205cf0cdf8894a7eb4adfd99fbba437297990306fb79cc74f33796d5fca=127.0.0.1:5000/openshift/codeready-workspaces/stacks-java-rhel8 | |
registry.redhat.io/openshift4/ose-metering-hadoop@sha256:83d3960692dae37d4365d025bcd778e74e2b2c27dfcbccef3af56c95f46d08be=127.0.0.1:5000/openshift/openshift4/ose-metering-hadoop | |
registry.redhat.io/openshift4/ose-template-service-broker@sha256:59e84ec57024465d566f03accbfebf4c28e609452f31ca6c69a57277006f2b19=127.0.0.1:5000/openshift/openshift4/ose-template-service-broker | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-controller-rhel8@sha256:c90855656d95db2bf45f7410b494c15da99b2ba93560f0e6e14ec697953e1c3c=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-controller-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/multicluster-mongodb-rhel7@sha256:90aef0f45eafdb4917878a7b70f105bb73b17720e829c46ad859a90f77bc97f0=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-mongodb-rhel7 | |
registry.redhat.io/amq7-tech-preview/amq-online-1-iot-tenant-cleaner-rhel7:1.4=127.0.0.1:5000/openshift/amq7-tech-preview/amq-online-1-iot-tenant-cleaner-rhel7:1.4 | |
registry.redhat.io/container-native-virtualization/virt-cdi-cloner:v2.2.0-5=127.0.0.1:5000/openshift/container-native-virtualization/virt-cdi-cloner:v2.2.0-5 | |
registry.redhat.io/container-native-virtualization/virt-operator@sha256:abe87564ffd2e419aa7c2d4e3b3e2ed1c6306b5b8739a50cc2eb3c9b750859dc=127.0.0.1:5000/openshift/container-native-virtualization/virt-operator | |
registry.redhat.io/openshift4/ose-ansible-service-broker-operator@sha256:fb8d96aa9711e578a853c8ef690b3b7d202ae810a91bd282f314b924465631e9=127.0.0.1:5000/openshift/openshift4/ose-ansible-service-broker-operator | |
registry.redhat.io/openshift-service-mesh/proxyv2-rhel8@sha256:96d9f45b773c9367880a6bfea263d99a691006514732ef8f8e40f79c98603c1a=127.0.0.1:5000/openshift/openshift-service-mesh/proxyv2-rhel8 | |
registry.redhat.io/amq7/amq-interconnect:1.7=127.0.0.1:5000/openshift/amq7/amq-interconnect:1.7 | |
registry.redhat.io/rhpam-7/rhpam-rhel8-operator:7.5.1=127.0.0.1:5000/openshift/rhpam-7/rhpam-rhel8-operator:7.5.1 | |
registry.redhat.io/openshift3/oauth-proxy@sha256:4a5d0a92b80ab0738c0a3e3c975a7c59a4242d4337def418bec7f9ec77785ada=127.0.0.1:5000/openshift/openshift3/oauth-proxy | |
registry.redhat.io/codeready-workspaces/pluginbroker-artifacts-rhel8@sha256:5815bab69fc343cbf6dac0fd67dd70a25757fac08689a15e4a762655fa2e8a2c=127.0.0.1:5000/openshift/codeready-workspaces/pluginbroker-artifacts-rhel8 | |
registry.redhat.io/container-native-virtualization/cluster-network-addons-operator:v2.1.0-13=127.0.0.1:5000/openshift/container-native-virtualization/cluster-network-addons-operator:v2.1.0-13 | |
registry.redhat.io/3scale-amp2/memcached-rhel7@sha256:2be57d773843135c0677e31d34b0cd24fa9dafc4ef1367521caa2bab7c6122e6=127.0.0.1:5000/openshift/3scale-amp2/memcached-rhel7 | |
registry.redhat.io/amq7/amq-interconnect-operator:1.2=127.0.0.1:5000/openshift/amq7/amq-interconnect-operator:1.2 | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-broker-ingress-rhel8@sha256:dfbf17a5626f4968622dd233e135c20fba1eda4cff21411ae87db7a4ce43f465=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-broker-ingress-rhel8 | |
registry.redhat.io/openshift-service-mesh/istio-rhel8-operator:1.0.7=127.0.0.1:5000/openshift/openshift-service-mesh/istio-rhel8-operator:1.0.7 | |
registry.redhat.io/3scale-amp2/3scale-rhel7-operator@sha256:6c3b4026a343896dd35e5820c6122815b94d7c682cf55634ea7f6d46f86b3aaa=127.0.0.1:5000/openshift/3scale-amp2/3scale-rhel7-operator | |
registry.redhat.io/ocs4/mcg-rhel8-operator@sha256:8c8162794741f5d0214b314a75e8dd17d8030db94c6a773f8c82bdeb0049090f=127.0.0.1:5000/openshift/ocs4/mcg-rhel8-operator | |
registry.redhat.io/3scale-amp2/zync-rhel7@sha256:34fa60de75f5a0e220105c6bf0ed676f16c8b206812fad65078cf98a16a6d4ef=127.0.0.1:5000/openshift/3scale-amp2/zync-rhel7 | |
registry.redhat.io/amq7/amq-online-1-console-init:1.4=127.0.0.1:5000/openshift/amq7/amq-online-1-console-init:1.4 | |
registry.redhat.io/container-native-virtualization/cluster-network-addons-operator@sha256:2ec373edc6a1307248e9d4e4276f26052aafcd6058e5ddc182de847f9e794ff8=127.0.0.1:5000/openshift/container-native-virtualization/cluster-network-addons-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-rhel8-operator@sha256:990ff0bea65dd28ad8bf3e72c6785013b79f5ba1ff19458ca38e22ffd56736a1=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-rhel8-operator | |
registry.redhat.io/openshift-serverless-1-tech-preview/eventing-webhook-rhel8@sha256:622ddf0468e3ee08dbc2c09e6dc14f6bbe0b63959309744f92e16d81c649883e=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/eventing-webhook-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/console-header-rhel8@sha256:516182905d507d6f4ae198a2dd92ce36fdccb66acd5d5ede7ae9245d360b835b=127.0.0.1:5000/openshift/rhacm1-tech-preview/console-header-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/multicluster-operators-channel-rhel8@sha256:b45eeb2a934b5b35126513b38285f8ce35351819eba2ef35e12ade353355d649=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicluster-operators-channel-rhel8 | |
registry.redhat.io/quay/quay-container-security-rhel8-operator@sha256:2078373c852377a276e6be6039b836a0d9f68f2471216ade0019a2f64e65ff44=127.0.0.1:5000/openshift/quay/quay-container-security-rhel8-operator | |
registry.redhat.io/container-native-virtualization/node-maintenance-operator@sha256:88433245e3810e48831732d26b63ceff520d99708ef34eb27ffb85ceb0db39d8=127.0.0.1:5000/openshift/container-native-virtualization/node-maintenance-operator | |
registry.redhat.io/openshift4/ose-metering-hadoop@sha256:badf9c1d7086854410d160e37b720d3c3977602d41b019f4cd1531f51b55620c=127.0.0.1:5000/openshift/openshift4/ose-metering-hadoop | |
registry.redhat.io/openshift4/ose-template-service-broker@sha256:f00b6025de7732d87728c161f3c85ec271b6b54bb6490132fc6afb4047719dd8=127.0.0.1:5000/openshift/openshift4/ose-template-service-broker | |
registry.redhat.io/openshift-serverless-1-tech-preview/serving-autoscaler-hpa-rhel8@sha256:98a68724567a8f6737223d5edccfd4021312649338c63742b6ccf1c08c89aabc=127.0.0.1:5000/openshift/openshift-serverless-1-tech-preview/serving-autoscaler-hpa-rhel8 | |
registry.redhat.io/3scale-amp2/backend-rhel7@sha256:0ceee4e929476ce1ea9731794d6ac7c7332eee44baf25ada4b00c2709098f409=127.0.0.1:5000/openshift/3scale-amp2/backend-rhel7 | |
registry.redhat.io/rhacm1-tech-preview/multicloud-manager-rhel8@sha256:bd41cf9f0ba4bb144e27bfee02a46eb8c1230d89e9fba9198ddafeef2572c452=127.0.0.1:5000/openshift/rhacm1-tech-preview/multicloud-manager-rhel8 | |
registry.redhat.io/rhacm1-tech-preview/management-ingress-rhel7@sha256:5f0cdc2f5e4d135b86a9b558089218c7f4d4c35f092e9e1683ccf93fb9d7dd4f=127.0.0.1:5000/openshift/rhacm1-tech-preview/management-ingress-rhel7 | |
registry.redhat.io/rhacm1-tech-preview/mcm-topology-rhel8@sha256:100432f05db86f1c59cd612dc0ca89886763e0959f247e42d9d0defa6809fcc0=127.0.0.1:5000/openshift/rhacm1-tech-preview/mcm-topology-rhel8 | |
registry.redhat.io/amq7/amq-streams-kafka-24-rhel7@sha256:20fb4af80cb6f8b2e714a5b38fb7599b34f2a55e21e51dbc44f4594442a01680=127.0.0.1:5000/openshift/amq7/amq-streams-kafka-24-rhel7 | |
registry.redhat.io/container-native-virtualization/kubevirt-v2v-conversion:v2.2.0-9=127.0.0.1:5000/openshift/container-native-virtualization/kubevirt-v2v-conversion:v2.2.0-9 | |
registry.redhat.io/openshift4/ose-local-storage-diskmaker@sha256:7c6f5f3361af17f6bb9b64e7dc3d35d09af1c819be9b1ac018051c8e55927577=127.0.0.1:5000/openshift/openshift4/ose-local-storage-diskmaker | |
registry.redhat.io/openshift4/ose-template-service-broker-operator@sha256:2918fe7a16c5ef07b7edbf244481a843e170adb21d85568c1979650467def015=127.0.0.1:5000/openshift/openshift4/ose-template-service-broker-operator |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment