### Set environement VARIABLEs to install a specific CLO [root@bastion-ocptest OCP4_DIR]# cat env.sh #!/bin/bash ############# export HOME_DIR=/root/NESIC/OCP4_DIR export INSTALL_DIR=${HOME_DIR}/OCP4_INSTALL/ocp4_install_directory export KUBECONFIG=${INSTALL_DIR}/auth/kubeconfig export INTERNAL_BASTION_IP=172.16.84.9 export EXTERNAL_SERVER_IP=172.16.84.9 export OCP_VERSION=4.6.25 export OCP_MINOR_VERSION=4.6 export RH_OPERATOR_INDEXTAG=v4.6 export LOCAL_SECRET_JSON=${HOME_DIR}/secret.json export LOCAL_REGISTRY_FQDN=mirrorreg.refocp.nec.test export LOCAL_REGISTRY_PORT=5000 export LOCAL_REGISTRY=${LOCAL_REGISTRY_FQDN}:${LOCAL_REGISTRY_PORT} export CLUSTERLOGGING_SHA256=sha256:d52c96ee7197c9958501388258fd4a20f7c3ff243ce9e8d93503bcdbccc09c1c ### Same as "4.6.0-202106021513" tag export ELASTICSEARCH_SHA256=sha256:d4a302e170db9c689fc32749fa22dad7157352b4499e40c80867f09d2b697768 ### Same as "4.6.0-202106100456" tag export MY_OPERATOR_INDEXTAG=my4.6-03 ############# [root@bastion-ocptest OCP4_DIR]# [root@bastion-ocptest OCP4_DIR]# source env.sh ### Check cluster version [root@bastion-ocptest OCP4_DIR]# oc version Client Version: 4.6.25 Server Version: 4.6.25 Kubernetes Version: v1.19.0+a5a0987 [root@bastion-ocptest OCP4_DIR]# ### Create a Dockerfile to host opm command [root@bastion-ocptest OCP4_DIR]# export WORK_DIR=${HOME_DIR}/OCP4_OPM_CATALOG [root@bastion-ocptest OCP4_DIR]# mkdir ${WORK_DIR} [root@bastion-ocptest OCP4_DIR]# ls -d ${WORK_DIR} /root/NESIC/OCP4_DIR/OCP4_OPM_CATALOG [root@bastion-ocptest OCP4_DIR]# [root@bastion-ocptest OCP4_DIR]# cat << EOF > ${WORK_DIR}/Dockerfile > FROM rhel8/podman:8.3-22 > WORKDIR /opm > RUN curl https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp/${OCP_VERSION}/opm-linux-${OCP_VERSION}.tar.gz | gunzip -c | tar xvf - > RUN mv opm /usr/local/bin > ENTRYPOINT ["/usr/local/bin/opm"] > EOF [root@bastion-ocptest OCP4_DIR]# [root@bastion-ocptest OCP4_DIR]# ### Build a container image to host opm command [root@bastion-ocptest OCP4_DIR]# [root@bastion-ocptest OCP4_DIR]# sudo podman build --authfile=${LOCAL_SECRET_JSON} -f ${WORK_DIR}/Dockerfile -t myopm:${OCP_VERSION}-with-8.3-22 STEP 1: FROM rhel8/podman:8.3-22 STEP 2: WORKDIR /opm --> Using cache add576299d707b587d36bcde993d90e39dcbcfb0f9203c6f7889a74b646952de STEP 3: RUN curl https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp/4.6.25/opm-linux-4.6.25.tar.gz | gunzip -c | tar xvf - % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 21.8M 0 32768 0 0 5237 0 1:12:53 0:00:06 1:12:47 6574opm 100 21.8M 100 21.8M 0 0 1627k 0 0:00:13 0:00:13 --:--:-- 4248k 871bac99c26da5851d35806aeacb6c72be021ba9904b2e4bf59f5ae043f85745 STEP 4: RUN mv opm /usr/local/bin b0b2f3adcf79147ce49ac536d51e3f99dd2eee96fbf8ac802f8e5589e5f56c47 STEP 5: ENTRYPOINT ["/usr/local/bin/opm"] STEP 6: COMMIT myopm:4.6.25-with-8.3-22 893ee8ddfcc20d822b068f627b955ba6a3cb392f81751eb9d748ab00cb2e7c2f 893ee8ddfcc20d822b068f627b955ba6a3cb392f81751eb9d748ab00cb2e7c2f [root@bastion-ocptest OCP4_DIR]# ### Generate a Dockerfile to generate the OperatorCatalog image with bundle images for ClusterLogging and Elasticksearch to add to the index [root@bastion-ocptest OCP4_DIR]# mkdir -p ${WORK_DIR}/opm [root@bastion-ocptest OCP4_DIR]# sudo podman run -it --rm --privileged --network host --name myopm \ > -v ${LOCAL_SECRET_JSON}:/root/.docker/config.json \ > -v ${WORK_DIR}/opm:/opm \ > localhost/myopm:${OCP_VERSION}-with-8.3-22 \ > index add --bundles registry.redhat.io/openshift4/ose-elasticsearch-operator-bundle@${ELASTICSEARCH_SHA256},registry.redhat.io/openshift4/ose-cluster-logging-operator-bundle@${CLUSTERLOGGING_SHA256} \ > --permissive \ > --out-dockerfile /opm/Dockerfile \ > -t ${LOCAL_REGISTRY}/redhat/redhat-operator-index:${MY_OPERATOR_INDEXTAG} --generate INFO[0000] building the index bundles="[registry.redhat.io/openshift4/ose-elasticsearch-operator-bundle@sha256:d4a302e170db9c689fc32749fa22dad7157352b4499e40c80867f09d2b697768 registry.redhat.io/openshift4/ose-cluster-logging-operator-bundle@sha256:d52c96ee7197c9958501388258fd4a20f7c3ff243ce9e8d93503bcdbccc09c1c]" INFO[0011] resolved name: registry.redhat.io/openshift4/ose-elasticsearch-operator-bundle@sha256:d4a302e170db9c689fc32749fa22dad7157352b4499e40c80867f09d2b697768 INFO[0011] fetched digest="sha256:d4a302e170db9c689fc32749fa22dad7157352b4499e40c80867f09d2b697768" INFO[0011] fetched digest="sha256:984fbaa13b6dd52a5e14e0a0e454f66112ddfa21353f63b75164e5220274648b" INFO[0011] fetched digest="sha256:a13e5db0a2b1e6513551a03dc1f6ef78e8cdabf153cc6460b4e37c285f1d2a38" INFO[0012] unpacking layer: {application/vnd.docker.image.rootfs.diff.tar.gzip sha256:984fbaa13b6dd52a5e14e0a0e454f66112ddfa21353f63b75164e5220274648b 9841 [] map[] } INFO[0017] resolved name: registry.redhat.io/openshift4/ose-cluster-logging-operator-bundle@sha256:d52c96ee7197c9958501388258fd4a20f7c3ff243ce9e8d93503bcdbccc09c1c INFO[0017] fetched digest="sha256:d52c96ee7197c9958501388258fd4a20f7c3ff243ce9e8d93503bcdbccc09c1c" INFO[0017] fetched digest="sha256:cec9eecc6899318858696cfb1a6722f61452bbf066fa379bbaaf3da003840037" INFO[0017] fetched digest="sha256:c2847b7d54ebc9e53e620cc56a4fc50671e6564e3552bf5c1d4b81ee892aca8b" INFO[0018] unpacking layer: {application/vnd.docker.image.rootfs.diff.tar.gzip sha256:cec9eecc6899318858696cfb1a6722f61452bbf066fa379bbaaf3da003840037 13675 [] map[] } INFO[0018] Could not find optional dependencies file dir=bundle_tmp400705147 file=bundle_tmp400705147/metadata load=annotations INFO[0018] found csv, loading bundle dir=bundle_tmp400705147 file=bundle_tmp400705147/manifests load=bundle INFO[0018] loading bundle file dir=bundle_tmp400705147/manifests file=elasticsearch-operator.v4.6.0.clusterserviceversion.yaml load=bundle INFO[0018] loading bundle file dir=bundle_tmp400705147/manifests file=logging.openshift.io_elasticsearches_crd.yaml load=bundle INFO[0018] loading bundle file dir=bundle_tmp400705147/manifests file=logging.openshift.io_kibanas_crd.yaml load=bundle INFO[0018] Could not find optional dependencies file dir=bundle_tmp471483294 file=bundle_tmp471483294/metadata load=annotations INFO[0018] found csv, loading bundle dir=bundle_tmp471483294 file=bundle_tmp471483294/manifests load=bundle INFO[0018] loading bundle file dir=bundle_tmp471483294/manifests file=0100_clusterroles.yaml load=bundle INFO[0018] loading bundle file dir=bundle_tmp471483294/manifests file=0110_clusterrolebindings.yaml load=bundle INFO[0018] loading bundle file dir=bundle_tmp471483294/manifests file=cluster-logging.v4.6.0.clusterserviceversion.yaml load=bundle INFO[0018] loading bundle file dir=bundle_tmp471483294/manifests file=logging.openshift.io_clusterlogforwarders_crd.yaml load=bundle INFO[0018] loading bundle file dir=bundle_tmp471483294/manifests file=logging.openshift.io_clusterloggings_crd.yaml load=bundle INFO[0018] Generating dockerfile bundles="[registry.redhat.io/openshift4/ose-elasticsearch-operator-bundle@sha256:d4a302e170db9c689fc32749fa22dad7157352b4499e40c80867f09d2b697768 registry.redhat.io/openshift4/ose-cluster-logging-operator-bundle@sha256:d52c96ee7197c9958501388258fd4a20f7c3ff243ce9e8d93503bcdbccc09c1c]" INFO[0018] writing dockerfile: /opm/Dockerfile bundles="[registry.redhat.io/openshift4/ose-elasticsearch-operator-bundle@sha256:d4a302e170db9c689fc32749fa22dad7157352b4499e40c80867f09d2b697768 registry.redhat.io/openshift4/ose-cluster-logging-operator-bundle@sha256:d52c96ee7197c9958501388258fd4a20f7c3ff243ce9e8d93503bcdbccc09c1c]" [root@bastion-ocptest OCP4_DIR]# ### Build a custom OperatorCatalog image from the generated Dockerfile [root@bastion-ocptest OCP4_DIR]# cd ${WORK_DIR}/opm [root@bastion-ocptest opm]# ls database Dockerfile [root@bastion-ocptest opm]# sudo podman build -t ${LOCAL_REGISTRY}/redhat/redhat-operator-index:${MY_OPERATOR_INDEXTAG} . STEP 1: FROM quay.io/operator-framework/upstream-opm-builder STEP 2: LABEL operators.operatorframework.io.index.database.v1=/database/index.db --> Using cache eee56e899c00ae2f2ec2ed7b7449936b599cb65ef267e9d39d713898a3e2e33d STEP 3: ADD database/index.db /database/index.db 05f97b3a3a2db079191d96f4c8d6d243aad2d9b304eec1eaf1c6fafdd5b08d65 STEP 4: EXPOSE 50051 d8a0eff6bdb36a29571098d5d0c2e4bf44e5f8f6b3d5b79458e76b1fece005d6 STEP 5: ENTRYPOINT ["/bin/opm"] 360042dd9cbc96e099194c7b50586fb39fa73d3c884525ebac804fbf7ce2ef21 STEP 6: CMD ["registry", "serve", "--database", "/database/index.db"] STEP 7: COMMIT mirrorreg.refocp.nec.test:5000/redhat/redhat-operator-index:my4.6-03 bea37512490e21d3061b99c8605a1bff17fcd85e9f209e0211da2f80629ba8b7 bea37512490e21d3061b99c8605a1bff17fcd85e9f209e0211da2f80629ba8b7 [root@bastion-ocptest opm]# ### Create manifest files for ImageContentSourcePolicy and CatalogSource [root@bastion-ocptest opm]# sudo podman image list REPOSITORY TAG IMAGE ID CREATED SIZE mirrorreg.refocp.nec.test:5000/redhat/redhat-operator-index my4.6-03 bea37512490e 5 minutes ago 64.6 MB localhost/myopm 4.6.25-with-8.3-22 893ee8ddfcc2 14 minutes ago 491 MB c73c33a7255b 2 months ago 87.4 MB localhost/myopm 4.6.20-with-8.3-22 256afccc1bd6 2 months ago 491 MB quay.io/operator-framework/upstream-opm-builder latest 0f695af1afb8 2 months ago 64.4 MB registry.redhat.io/rhel8/podman 8.3-22 504204c39816 4 months ago 382 MB [root@bastion-ocptest opm]# IMAGE_ID=bea37512490e [root@bastion-ocptest opm]# sudo podman push ${IMAGE_ID} \ > ${LOCAL_REGISTRY}/redhat/redhat-operator-index:${MY_OPERATOR_INDEXTAG} \ > --authfile=${LOCAL_SECRET_JSON} Getting image source signatures Copying blob bda05e102a09 done Copying blob d3c853b30bb8 skipped: already exists Copying blob 161273f53988 skipped: already exists Copying blob f2b8f5b1bd26 skipped: already exists Copying blob 8ea3b23f387b skipped: already exists Copying blob f0684f0a0c4a skipped: already exists Copying config bea3751249 done Writing manifest to image destination Writing manifest to image destination Storing signatures [root@bastion-ocptest opm]# mkdir -p ${WORK_DIR}/tmp_operator [root@bastion-ocptest opm]# cd ${WORK_DIR}/tmp_operator [root@bastion-ocptest tmp_operator]# oc adm catalog mirror -a ${LOCAL_SECRET_JSON} \ > --index-filter-by-os="linux/amd64" \ > ${LOCAL_REGISTRY}/redhat/redhat-operator-index:${MY_OPERATOR_INDEXTAG} \ > ${LOCAL_REGISTRY}/openshift --manifests-only src image has index label for database path: /database/index.db using database path mapping: /database/index.db:/tmp/203774189 wrote database to /tmp/203774189 using database at: /tmp/203774189/index.db no digest mapping available for mirrorreg.refocp.nec.test:5000/redhat/redhat-operator-index:my4.6-03, skip writing to ImageContentSourcePolicy wrote mirroring manifests to manifests-redhat-operator-index-1624435208 [root@bastion-ocptest tmp_operator]# ls . manifests-redhat-operator-index-1624435208 [root@bastion-ocptest tmp_operator]# mv manifests-redhat-operator-index-1624435208 manifests-redhat-operator-index_contents ### Retrieve the contents of my custom catalog image to generate the manifests required for mirroring. [root@bastion-ocptest tmp_operator]# oc adm catalog mirror -a ${LOCAL_SECRET_JSON} \ > --index-filter-by-os="linux/amd64" \ > ${LOCAL_REGISTRY}/redhat/redhat-operator-index:${MY_OPERATOR_INDEXTAG} \ > file:///openshift:${MY_OPERATOR_INDEXTAG} src image has index label for database path: /database/index.db using database path mapping: /database/index.db:/tmp/679282546 wrote database to /tmp/679282546 using database at: /tmp/679282546/index.db openshift/openshift4/ose-cluster-logging-operator blobs: registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:4422ea938fce292799f3089e923d72ed3e9430832cb96382f0f77b52871524a5 1.391KiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:6e3e429f889334f9dd8e023c3fb30fb304860c106070b0e811c141cfa7de4c9b 1.393KiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:765e8c8c13dae1b8ffa8d9ddc2d3171d8ddedf5f7cde21e6b46022d50e7b439e 1.4KiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:87facc9adf32e0d38fd488685848d77d05c3fa0b1aca51ed596d7e7e58cb1fe0 5.969KiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:1b716ddf33d573eb13f6eef86f7318e1ca823bb6f02d696d4f8044d9d36aa275 5.97KiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:25854c46f68d6840ee4a826b2f69f6e93eb0017f2f6f0d02de346f9b0e766d4f 5.98KiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:9882ea2ea8db8863ddb2740173c368d645868593c42813f0377a94f33f907f3f 10.71MiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:766555f27bbb7234c6a2ea22f6e212784d6de0e878acec759954d7ffea7facc4 11.22MiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:0c28a8fafa836eac4a134a92b97092518e9225c3a9f108e6f25e95fc8d1908bd 11.26MiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:b794ebf61aad4f09507327ca58b70e702eafd80e9223351e103343154f768f05 33.74MiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:41b1ca394e44780ccfba11f52c017c73778b9fbd4d07a91ac23b27ba0441bb6c 35.14MiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:e4d43cb91af3ece759ec5148aa80787971c294d7aa7954b89f14e94e254d0fed 36.2MiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:d40fbc59c975a5b2679c4159a6671d4f96dfd9c684cf4401aa27f301b8f4670b 39.83MiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:30bb175bbca1f219db4a032583249b4ccec9bb653ac9b3017745cf2fe5f1bcdb 41.59MiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:d4d530fbd31283e0e34448d0a3abe88c6d414ab1b8343f725170e12de9ad4a09 44.87MiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:b03ed90e4d12661f20919749f09737832c83b46efa9e1987aa76e6bba1d97f9c 68MiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:505209649de3925b2fd4b70634942756afb5719a953414d5db57d9520dbabe07 70.56MiB registry.redhat.io/openshift4/ose-cluster-logging-operator sha256:2a293d5656cf6c297982a70eaaf6cb7342dfcb0ecb0b02915e0ff3af4a63893e 78.05MiB manifests: sha256:133e67d7ee03f70708584a779b2e4b3b5903f023237a37ea85f379451db85300 sha256:5aa8966f31e224cbd312c4058cec33805a0d66361eb79460823dbe453f791a76 sha256:738a3a2dc591103baf07ba586c2e6ff7eb5e4e8ad0e5f9940fde100e89b156bf sha256:a033f70f0836bca622ea594feeb116771c2bfb186c11babedc0678d6cd8808ce sha256:5aa8966f31e224cbd312c4058cec33805a0d66361eb79460823dbe453f791a76 -> 69b50423 openshift/openshift4/ose-cluster-logging-operator-bundle blobs: registry.redhat.io/openshift4/ose-cluster-logging-operator-bundle sha256:c2847b7d54ebc9e53e620cc56a4fc50671e6564e3552bf5c1d4b81ee892aca8b 5.579KiB registry.redhat.io/openshift4/ose-cluster-logging-operator-bundle sha256:cec9eecc6899318858696cfb1a6722f61452bbf066fa379bbaaf3da003840037 13.35KiB manifests: sha256:d52c96ee7197c9958501388258fd4a20f7c3ff243ce9e8d93503bcdbccc09c1c -> 6474084f openshift/openshift4/ose-elasticsearch-operator blobs: registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:4422ea938fce292799f3089e923d72ed3e9430832cb96382f0f77b52871524a5 1.391KiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:6e3e429f889334f9dd8e023c3fb30fb304860c106070b0e811c141cfa7de4c9b 1.393KiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:765e8c8c13dae1b8ffa8d9ddc2d3171d8ddedf5f7cde21e6b46022d50e7b439e 1.4KiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:4f2d327935d54656fc9eec82c2290bcf799eb6e22bb716310e624ba0f74c7c75 6.169KiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:9a3a24d6a521f114007406b9d9112e5ff1a23e49d121ef0f10a89ae193f71ffd 6.174KiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:8fa735c8bb81f89f05dcb3159629f48e1af1da8559f3e6a88d9fadca93fddc7f 6.186KiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:9882ea2ea8db8863ddb2740173c368d645868593c42813f0377a94f33f907f3f 10.71MiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:766555f27bbb7234c6a2ea22f6e212784d6de0e878acec759954d7ffea7facc4 11.22MiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:0c28a8fafa836eac4a134a92b97092518e9225c3a9f108e6f25e95fc8d1908bd 11.26MiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:9351b1ec72ae89d8886cdbbc3d4dd50fdf2186240c1f3ff79e1496652c751b79 15.61MiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:a3463642043039c142fb8e55f2d06c194e5a8c090ce65fb5b87a33d0bf1e64b3 18.01MiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:063c4030cf2860292a59857d0d789d06d36fe9ad87b3fa73d0a5fd7c8e83af21 18.19MiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:b794ebf61aad4f09507327ca58b70e702eafd80e9223351e103343154f768f05 33.74MiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:41b1ca394e44780ccfba11f52c017c73778b9fbd4d07a91ac23b27ba0441bb6c 35.14MiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:d40fbc59c975a5b2679c4159a6671d4f96dfd9c684cf4401aa27f301b8f4670b 39.83MiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:b03ed90e4d12661f20919749f09737832c83b46efa9e1987aa76e6bba1d97f9c 68MiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:505209649de3925b2fd4b70634942756afb5719a953414d5db57d9520dbabe07 70.56MiB registry.redhat.io/openshift4/ose-elasticsearch-operator sha256:2a293d5656cf6c297982a70eaaf6cb7342dfcb0ecb0b02915e0ff3af4a63893e 78.05MiB manifests: sha256:547e062b889528946a076b1561c1e676c4554ca1f63fcef251d7f2e402afb29b sha256:697b3a988001446c0dfeec023aaa70ff668cbbf531cd37ce94479427b71e6650 sha256:7c43654a21fcefbf0d01000da448e7b5b548de17af7b85d317ada50bf5bae358 sha256:c6c23d0d1f6c153ee14af284adac83fd6cc59a712e9cb6a9c620a38f6356aee5 sha256:697b3a988001446c0dfeec023aaa70ff668cbbf531cd37ce94479427b71e6650 -> 170b3495 openshift/openshift4/ose-elasticsearch-operator-bundle blobs: registry.redhat.io/openshift4/ose-elasticsearch-operator-bundle sha256:a13e5db0a2b1e6513551a03dc1f6ef78e8cdabf153cc6460b4e37c285f1d2a38 5.473KiB registry.redhat.io/openshift4/ose-elasticsearch-operator-bundle sha256:984fbaa13b6dd52a5e14e0a0e454f66112ddfa21353f63b75164e5220274648b 9.61KiB manifests: sha256:d4a302e170db9c689fc32749fa22dad7157352b4499e40c80867f09d2b697768 -> fcfd1c51 openshift/openshift4/ose-elasticsearch-proxy blobs: registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:4422ea938fce292799f3089e923d72ed3e9430832cb96382f0f77b52871524a5 1.391KiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:6e3e429f889334f9dd8e023c3fb30fb304860c106070b0e811c141cfa7de4c9b 1.393KiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:765e8c8c13dae1b8ffa8d9ddc2d3171d8ddedf5f7cde21e6b46022d50e7b439e 1.4KiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:0914b73e39afd95fc95e1b83e1965a2f2128b53865aafd428079bde993eb32fa 5.618KiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:f2674e77cf04d0cf63f727e6e6aaa4a402c8ff7975c2a442dd68d90e372e67ac 5.619KiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:b9d56469ab8fcace17733d1c4f4cc3cb64d6f7aab19165d51070018e65806a2c 5.63KiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:9882ea2ea8db8863ddb2740173c368d645868593c42813f0377a94f33f907f3f 10.71MiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:766555f27bbb7234c6a2ea22f6e212784d6de0e878acec759954d7ffea7facc4 11.22MiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:0c28a8fafa836eac4a134a92b97092518e9225c3a9f108e6f25e95fc8d1908bd 11.26MiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:a59a556bf2deab770c2b825cf3f0400c3884d699ffbd1429c3234030ab7c985c 11.66MiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:14c5dd9f32e1c27c547236d077319033ea6eb597c4baa97b15fd71154965fb13 13.37MiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:45dc0b6a557c5ffbe2ae43f641f20e8394758d03950962e5c93d69b84977b666 13.49MiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:b794ebf61aad4f09507327ca58b70e702eafd80e9223351e103343154f768f05 33.74MiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:41b1ca394e44780ccfba11f52c017c73778b9fbd4d07a91ac23b27ba0441bb6c 35.14MiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:d40fbc59c975a5b2679c4159a6671d4f96dfd9c684cf4401aa27f301b8f4670b 39.83MiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:b03ed90e4d12661f20919749f09737832c83b46efa9e1987aa76e6bba1d97f9c 68MiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:505209649de3925b2fd4b70634942756afb5719a953414d5db57d9520dbabe07 70.56MiB registry.redhat.io/openshift4/ose-elasticsearch-proxy sha256:2a293d5656cf6c297982a70eaaf6cb7342dfcb0ecb0b02915e0ff3af4a63893e 78.05MiB manifests: sha256:228f3a8304651c0c6f6604bd3e55b83a98634e3d1e6341dee3fd05406b980f26 sha256:29ba3036e3b72b4cf740c1c3fef2693b2ab249ac3bc3cc791be9134559acdccc sha256:2c96258f2ab06cf2b68e1d965185d4586eb507260ed9b372de15c52548c0dd1a sha256:5a17b8c0f66c72282e9fbb8a2b0842dc4fc9c46a54404fac0d3685a527f8a423 sha256:2c96258f2ab06cf2b68e1d965185d4586eb507260ed9b372de15c52548c0dd1a -> 9609d5c9 openshift/openshift4/ose-logging-curator5 blobs: registry.redhat.io/openshift4/ose-logging-curator5 sha256:22c9828540e6b1025fca7b45987bbd0b670c2a9ca78043147a42da37156a8173 1.739KiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:c4d668e229cd131e0a8e4f8218dca628d9cf9697572875e355fe4b247b6aa9f0 1.747KiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:34fd41f9801e60f1598818f1a245f68828bf63da35256d5d904a8880d50061aa 1.748KiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:200231ce80f7a4398dc3f2fcdd9e8ca6daa7bc4d8f9e33753494fb451e6bd46d 9.84KiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:6e25928d7a1397a323965bb7f6b5159ef0eb605fbe7a07af9c9aa5a07c5c22f1 9.842KiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:9ad7ade80a6fadcac7cb652402a150de7535303ad36daea073c68e978b61473b 9.852KiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:9eb76dead289eaf1ff4accb35e59676239135faa13f9547813e646b9bd012c52 15.93MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:da1cc572023a942fff15d59aefa5abbb59d2c24a03966db8074ef8f9bab277d4 15.94MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:056baa80ccfe46acdc434727d81ef14ad6934c9cb369ffd80bed2f2ea9a1f0da 16.48MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:57eb65056d656b92403ecbd58500feafee0c4361535ccf89b155e35d74844e80 18.25MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:0bca2f7d7f706bcf4e28b6c2d29b8b917b4db9ff82d952d25e7680d2e401c261 18.26MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:ceaef62c3c204393f68df37dc436a29f37ed21fe0d623f6c37fce6d73dcba466 18.26MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:10207b27a396e4bf940c51a6a8e96cf150224fd13eae6610c67e13151ad2ae3e 51.25MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:7ddaa2f37c8cb5e76c39d48c7ceb484cc6e04f8e1a859f581efdfe96f845a191 53.86MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:17501273e0ddc93a45b1139bb879c08a8b38acae3fe5c0b10afa2ea9df676167 57.46MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:024e289f9d3059db8f47e89e0e13314df01f8651dcf9afb50c4c68d58cb92520 68.07MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:ec1681b6a383e4ecedbeddd5abc596f3de835aed6db39a735f62395c8edbff30 70.44MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:e6f49bf29f19be8655a98cccc60739bc0fd31a6da3427a21d684b54b23616122 73.89MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:5a48a75c8022e9e3115e58dfe85136c29fc28728a34a8d4f383f7e5063d50743 78.03MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:f7df4ad22d92ffe3ec4634ad345aeefdd190f9f7797cf98572a63775dd382f9f 81.72MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:e44d6c021c503181b79b54eb2769182ff747be0b9e169b227f295498308bf769 84.46MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:5723fa61e3830a31875ff93cd18cd1685bf79f31e315416a0e8000c8498eb47d 118.2MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:35ad9b4fba1fa6b00a6f266303348dc0cf9a7c341616e800c2738030c0f64167 129.5MiB registry.redhat.io/openshift4/ose-logging-curator5 sha256:9f35c8a93f0d7470513dbed27282bd9e74d3e60e96d541588b5a90491da7388f 135.5MiB manifests: sha256:012c9e99c850b328ea286c63f70cf9f84b0f0b03d40ea335b472e1baaf37941b sha256:3c8a68125efebad59634af0f9995b8cdbc357dee4b4105f3a6b26eb14028211b sha256:d00de4ae0be20c19558a59d2f052479deae337c98a87effd359fa83ab30cb5ea sha256:fccd7bb4bc56f31503c34dba25e99095747a1ee42c353b4279635e759a1b7685 sha256:fccd7bb4bc56f31503c34dba25e99095747a1ee42c353b4279635e759a1b7685 -> b8929970 openshift/openshift4/ose-logging-elasticsearch6 blobs: registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:4422ea938fce292799f3089e923d72ed3e9430832cb96382f0f77b52871524a5 1.391KiB registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:6e3e429f889334f9dd8e023c3fb30fb304860c106070b0e811c141cfa7de4c9b 1.393KiB registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:765e8c8c13dae1b8ffa8d9ddc2d3171d8ddedf5f7cde21e6b46022d50e7b439e 1.4KiB registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:5ce2d88522e5c87687eebc382bc94a6ee064d72f0da435450cb76c228afa550a 6.367KiB registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:3c3b7a8f070ee0914f48ce33b91caf531e427a6c736f2ea37e8804729cffc2fb 6.368KiB registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:2763bb092e4eb87f691f378f2311beab6b955ba61b61cf45d016e0525a0aedbc 6.379KiB registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:b794ebf61aad4f09507327ca58b70e702eafd80e9223351e103343154f768f05 33.74MiB registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:41b1ca394e44780ccfba11f52c017c73778b9fbd4d07a91ac23b27ba0441bb6c 35.14MiB registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:d40fbc59c975a5b2679c4159a6671d4f96dfd9c684cf4401aa27f301b8f4670b 39.83MiB registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:b03ed90e4d12661f20919749f09737832c83b46efa9e1987aa76e6bba1d97f9c 68MiB registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:505209649de3925b2fd4b70634942756afb5719a953414d5db57d9520dbabe07 70.56MiB registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:2a293d5656cf6c297982a70eaaf6cb7342dfcb0ecb0b02915e0ff3af4a63893e 78.05MiB registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:8bdbba865eb090373b72ad9102f59becd1192af4661e39e4c3150a67406f12ce 192.9MiB registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:71b5f7511ca3d1ee24b3750d7fbbc421d6fa057fc2666ef097ca8873fc7be538 195.5MiB registry.redhat.io/openshift4/ose-logging-elasticsearch6 sha256:d4760cea1015903c814eae53f33f900f184513a5860e25760dd27a8d3d673e53 199.9MiB manifests: sha256:3bf74c2e2be4982404c945db4ee06dfcf9b8419742e1eb74429d89545acd1f71 sha256:592a57ea0d07d0914f2bb20392e90288f7b4c3ea5d70b4ed84a121c0f2ea24c3 sha256:90bea5ab3424c8a97f095fe48b36e07b67a2f1d10080f0ab1c10a1678f16bf96 sha256:e36f400092992d0c49ab9d1f22c781789ac08baf708f9f0f57a6bfc683e0df3d sha256:90bea5ab3424c8a97f095fe48b36e07b67a2f1d10080f0ab1c10a1678f16bf96 -> 35625647 openshift/openshift4/ose-logging-fluentd blobs: registry.redhat.io/openshift4/ose-logging-fluentd sha256:22c9828540e6b1025fca7b45987bbd0b670c2a9ca78043147a42da37156a8173 1.739KiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:c4d668e229cd131e0a8e4f8218dca628d9cf9697572875e355fe4b247b6aa9f0 1.747KiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:34fd41f9801e60f1598818f1a245f68828bf63da35256d5d904a8880d50061aa 1.748KiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:d123645e52afc051e7f515567147688fe9fbbbfa7a78aa9e5362b722296439fe 8.704KiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:16d4124efb1eb899cc30476c5a1441b4a152c8b52cf205306efff128d9fff123 8.707KiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:1a1aecd8eb0d79d38a9300d33bf45b2e42d6d41fb515288328ebb3858c6e8fed 8.717KiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:f6e7197fa7bc80d25b5c87657665e23d0f7a5e9cdd3cc29134bf2d5d48722531 14.12MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:99db1d4ae8749e7a46613ebe08cd3974e3754af6bb1d731cac8ad2f0a63a6a09 14.31MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:1c54de6090bef9240c0b354110713cf19a6e09a570acbdd9c7f8b6709f9354c0 14.56MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:9eb76dead289eaf1ff4accb35e59676239135faa13f9547813e646b9bd012c52 15.93MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:da1cc572023a942fff15d59aefa5abbb59d2c24a03966db8074ef8f9bab277d4 15.94MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:056baa80ccfe46acdc434727d81ef14ad6934c9cb369ffd80bed2f2ea9a1f0da 16.48MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:3442a35465f1183c382037663455640e5cfab5f9ae0184c3fce7dd56e8f70f0f 33.75MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:7995633cc6eed437d44a3cbf18247f71fe6506e4334312ba8ac4f15bb5d5aab0 34.04MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:4fcb2514b95080d5402de35541551105c7e2ec7a7228231b69397668bdb63f5f 34.41MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:024e289f9d3059db8f47e89e0e13314df01f8651dcf9afb50c4c68d58cb92520 68.07MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:ec1681b6a383e4ecedbeddd5abc596f3de835aed6db39a735f62395c8edbff30 70.44MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:c8f5a4ddd2c34cb51d5f93061e6a67cb97bce62aefd60cbdb3fddeb2a425ede6 72.57MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:5a48a75c8022e9e3115e58dfe85136c29fc28728a34a8d4f383f7e5063d50743 78.03MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:8aa98448b764b25d4ba9b72662838868be720f87301deafe25c19b5dddf3144b 80.46MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:e0250329b16ce17dbc0cce3f1b4c7db8324c8b04bc5eeea36fcc97aa723dacef 83.21MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:5723fa61e3830a31875ff93cd18cd1685bf79f31e315416a0e8000c8498eb47d 118.2MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:35ad9b4fba1fa6b00a6f266303348dc0cf9a7c341616e800c2738030c0f64167 129.5MiB registry.redhat.io/openshift4/ose-logging-fluentd sha256:9f35c8a93f0d7470513dbed27282bd9e74d3e60e96d541588b5a90491da7388f 135.5MiB manifests: sha256:0e9b0002ea177e80861f5a8517ccf62e05535d6e4a4d48a905e6b329865e4229 sha256:9ad591b1ce9d997c9897c7b720abff850346fbef1da6fe8a402504a5431bbb23 sha256:aace4da7b05f457b79bb19dff60ae15943dcf6b0656700907b0b44b82fcbf45d sha256:b405e2547014496a25d868934fc00bdb7e099e6586660a2ec439692bdc088e6a sha256:0e9b0002ea177e80861f5a8517ccf62e05535d6e4a4d48a905e6b329865e4229 -> 20cacb7d openshift/openshift4/ose-logging-kibana6 blobs: registry.redhat.io/openshift4/ose-logging-kibana6 sha256:22c9828540e6b1025fca7b45987bbd0b670c2a9ca78043147a42da37156a8173 1.739KiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:c4d668e229cd131e0a8e4f8218dca628d9cf9697572875e355fe4b247b6aa9f0 1.747KiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:34fd41f9801e60f1598818f1a245f68828bf63da35256d5d904a8880d50061aa 1.748KiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:1cde5dfbf4d84c1a995ac68936b4d529eabcde8f45f04672f542ffd792835595 9.487KiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:eeb4d67c5fe04d312183f15e08dc581a6f461cc4df0561bbcef6ea02361dc826 9.489KiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:838b391ae3bfd3f608c4781f7dbcfb4c4031e1ce318c796f63edde0cafbac07e 9.498KiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:9eb76dead289eaf1ff4accb35e59676239135faa13f9547813e646b9bd012c52 15.93MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:da1cc572023a942fff15d59aefa5abbb59d2c24a03966db8074ef8f9bab277d4 15.94MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:056baa80ccfe46acdc434727d81ef14ad6934c9cb369ffd80bed2f2ea9a1f0da 16.48MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:fd68902344101b28f621d8193597a63317f4b0146dc11dceed007b3af80f52ae 46.33MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:8966af8738bc1716bebab001681cd5554bdf3f948ab7403e7850127e4bf0076d 47.19MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:27f7dfe49e3291b297d5af687b533cccb1279b1b4ed1d103a0b0b05fda162b96 47.8MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:e4931b03c4fb3bf0f3ab990ef9231a96d84bf971e7fd329ffc302f1798299907 47.8MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:0ffc74d2458308cb36e6584be68fa6c20be8c01de4aca5c964e6278e75a92edd 47.8MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:f368142b4d51ad46f2cdcdfc0650523ebe6895edf887b9f37737e1d4b920e4d8 48.82MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:024e289f9d3059db8f47e89e0e13314df01f8651dcf9afb50c4c68d58cb92520 68.07MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:ec1681b6a383e4ecedbeddd5abc596f3de835aed6db39a735f62395c8edbff30 70.44MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:81a89a5d17c68476b2d452590f79927f0bf8f956c1fdbbf759d09a75532cb3dc 72.61MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:5a48a75c8022e9e3115e58dfe85136c29fc28728a34a8d4f383f7e5063d50743 78.03MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:2dedb13e4ba7e5514761bf17360f8ed5ffae28803f2e24fbbc6c48e4fb431641 80.35MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:7f0952b2a9db706ffed7e63bd9c483dfbac7dbe2ea0691aa344020d87bfb2f05 83.09MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:5723fa61e3830a31875ff93cd18cd1685bf79f31e315416a0e8000c8498eb47d 118.2MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:35ad9b4fba1fa6b00a6f266303348dc0cf9a7c341616e800c2738030c0f64167 129.5MiB registry.redhat.io/openshift4/ose-logging-kibana6 sha256:9f35c8a93f0d7470513dbed27282bd9e74d3e60e96d541588b5a90491da7388f 135.5MiB manifests: sha256:2a31c56521db7eacb4d64f7e09f48341bfad6499bc39bf2ba83ff1c02f996a60 sha256:887ca08b6e01fc0305bc30c63074ce368fef3b0847b19185fb34711321b7f94e sha256:8a28dddb24d373ad7a87b12d41408df0b405b93f47e15460cf488e0b41b7398d sha256:9ed4bb619e6cf495c57ccdd8437370f09b62b247222ed633c817e386b82bffad sha256:9ed4bb619e6cf495c57ccdd8437370f09b62b247222ed633c817e386b82bffad -> 47a558b5 openshift/openshift4/ose-oauth-proxy blobs: registry.redhat.io/openshift4/ose-oauth-proxy sha256:4422ea938fce292799f3089e923d72ed3e9430832cb96382f0f77b52871524a5 1.391KiB registry.redhat.io/openshift4/ose-oauth-proxy sha256:6e3e429f889334f9dd8e023c3fb30fb304860c106070b0e811c141cfa7de4c9b 1.393KiB registry.redhat.io/openshift4/ose-oauth-proxy sha256:765e8c8c13dae1b8ffa8d9ddc2d3171d8ddedf5f7cde21e6b46022d50e7b439e 1.4KiB registry.redhat.io/openshift4/ose-oauth-proxy sha256:c1730e1db61329104a8ad95e7ad632a09dacc2cc4020635034ecd0a383895fa6 5.585KiB registry.redhat.io/openshift4/ose-oauth-proxy sha256:5affb94e2f36fd9f2528f2795e0e26ee6b207995f19709391cfb3c990eed24e4 5.586KiB registry.redhat.io/openshift4/ose-oauth-proxy sha256:338b57befccadc6a9887f35e5c4d7d8eaa894de6e53c3b1f4940fc4300d10eb7 5.597KiB registry.redhat.io/openshift4/ose-oauth-proxy sha256:a386c4fe4de35dece1de6ac5a3c730dc11e5f8a0effed508fc1bd835a8728df7 15.19MiB registry.redhat.io/openshift4/ose-oauth-proxy sha256:4a371032d6fbf0ecd61e39dac7b0e1567e1793edf44e046e0e6fc7a0e95204db 17.51MiB registry.redhat.io/openshift4/ose-oauth-proxy sha256:e79a911142acba254232d3df89e90d739e9f9e3c93f5656ecd728ef09ab3d63a 17.66MiB registry.redhat.io/openshift4/ose-oauth-proxy sha256:b794ebf61aad4f09507327ca58b70e702eafd80e9223351e103343154f768f05 33.74MiB registry.redhat.io/openshift4/ose-oauth-proxy sha256:41b1ca394e44780ccfba11f52c017c73778b9fbd4d07a91ac23b27ba0441bb6c 35.14MiB registry.redhat.io/openshift4/ose-oauth-proxy sha256:d40fbc59c975a5b2679c4159a6671d4f96dfd9c684cf4401aa27f301b8f4670b 39.83MiB registry.redhat.io/openshift4/ose-oauth-proxy sha256:b03ed90e4d12661f20919749f09737832c83b46efa9e1987aa76e6bba1d97f9c 68MiB registry.redhat.io/openshift4/ose-oauth-proxy sha256:505209649de3925b2fd4b70634942756afb5719a953414d5db57d9520dbabe07 70.56MiB registry.redhat.io/openshift4/ose-oauth-proxy sha256:2a293d5656cf6c297982a70eaaf6cb7342dfcb0ecb0b02915e0ff3af4a63893e 78.05MiB manifests: sha256:083531561c391bebfa08a6ddf1b43ca475f8945d1f102c49a60bc43f8242108d sha256:4ff4ac6eb4caea43a3d32fcd64959608afec1c61355ffbdd0c57860b67533988 sha256:a642830fcf2875e678ce84b4d429abe4a2f933b58d8da60c4ae167a86a1289aa sha256:cb0f4320755346385e87c38b17ff046c0cba18894ad7a54bf6e77361344a520c sha256:a642830fcf2875e678ce84b4d429abe4a2f933b58d8da60c4ae167a86a1289aa -> bede2582 openshift/redhat/redhat-operator-index blobs: mirrorreg.refocp.nec.test:5000/redhat/redhat-operator-index sha256:e06808dcbe22025a1337df55c36b747675b7d928033b1f947890aaf2542f700c 169B mirrorreg.refocp.nec.test:5000/redhat/redhat-operator-index sha256:bea37512490e21d3061b99c8605a1bff17fcd85e9f209e0211da2f80629ba8b7 2.466KiB mirrorreg.refocp.nec.test:5000/redhat/redhat-operator-index sha256:4d61e717d27aa2e6d4d5e1ebee001393e9dd9d4875caf6f8873cab327654243c 26.51KiB mirrorreg.refocp.nec.test:5000/redhat/redhat-operator-index sha256:8a4d9204e975523595bed364c534fe9dc4b49232e5a67d587835c8d1e1fe7c59 2.169MiB mirrorreg.refocp.nec.test:5000/redhat/redhat-operator-index sha256:e648f20c2d8b1702abf33b92b3845ca583dfe552a13564cafcec54af4746c123 2.768MiB mirrorreg.refocp.nec.test:5000/redhat/redhat-operator-index sha256:c1728a3e85f19446d3a348b34c78a03432f1e202858fd1a59ee3b5bc34a8e6a0 3.753MiB mirrorreg.refocp.nec.test:5000/redhat/redhat-operator-index sha256:dc77490ef660986d6be25f027fd9c18b0c54c474d8a5ce0904ce17aafddc232c 14.76MiB manifests: sha256:3af8f8150840ecd6e95d816bd22961dcc6dac8c3e75161f83b087e610d43bbb8 -> my4.6-03 stats: shared=24 unique=77 size=3.166GiB ratio=0.69 phase 0: openshift/redhat/redhat-operator-index blobs=7 mounts=0 manifests=1 shared=0 openshift/openshift4/ose-elasticsearch-operator-bundle blobs=2 mounts=0 manifests=1 shared=0 openshift/openshift4/ose-cluster-logging-operator-bundle blobs=2 mounts=0 manifests=1 shared=0 openshift/openshift4/ose-elasticsearch-operator blobs=18 mounts=0 manifests=5 shared=12 openshift/openshift4/ose-logging-curator5 blobs=24 mounts=0 manifests=5 shared=12 phase 1: openshift/openshift4/ose-logging-fluentd blobs=24 mounts=12 manifests=5 shared=12 openshift/openshift4/ose-elasticsearch-proxy blobs=18 mounts=12 manifests=5 shared=12 openshift/openshift4/ose-cluster-logging-operator blobs=18 mounts=12 manifests=5 shared=12 openshift/openshift4/ose-logging-kibana6 blobs=24 mounts=12 manifests=5 shared=12 openshift/openshift4/ose-logging-elasticsearch6 blobs=15 mounts=9 manifests=5 shared=9 openshift/openshift4/ose-oauth-proxy blobs=15 mounts=9 manifests=5 shared=9 info: Planning completed in 18.74s uploading: file://openshift/openshift4/ose-elasticsearch-operator sha256:0c28a8fafa836eac4a134a92b97092518e9225c3a9f108e6f25e95fc8d1908bd 11.26MiB uploading: file://openshift/openshift4/ose-elasticsearch-operator sha256:9882ea2ea8db8863ddb2740173c368d645868593c42813f0377a94f33f907f3f 10.71MiB uploading: file://openshift/openshift4/ose-elasticsearch-operator sha256:a3463642043039c142fb8e55f2d06c194e5a8c090ce65fb5b87a33d0bf1e64b3 18.01MiB ... [root@bastion-ocptest ]# ls manifests-redhat-operator-index-1624435374 manifests-redhat-operator-index_contents v2 ### Copy ${HOME_DIR}/OCP4_OPM_CATALOG to the site that we want to deploy CLO with custom catalog imag. [root@bastion-ocptest OCP4_DIR]# tar cvzf OCP4_OPM_CATALOG.tar.gz ${WORK_DIR} [root@bastion-ocptest OCP4_DIR]# scp OCP4_OPM_CATALOG.tar.gz ### Copy OperatorCatalog image to the mirror registry [root@bastion-ocptest # tar xvzf OCP4_OPM_CATALOG.tar.gz ${WORK_DIR} [root@bastion-ocptest ]# oc image mirror -a ${LOCAL_SECRET_JSON} \ > --from-dir=${WORK_DIR}/tmp_operator \ > file://openshift/redhat/redhat-operator-index:${MY_OPERATOR_INDEXTAG} \ > ${LOCAL_REGISTRY}/openshift/redhat-redhat-operator-index:${MY_OPERATOR_INDEXTAG} mirrorreg.refocp.nec.test:5000/ openshift/redhat-redhat-operator-index blobs: file://openshift/redhat/redhat-operator-index sha256:e06808dcbe22025a1337df55c36b747675b7d928033b1f947890aaf2542f700c 169B file://openshift/redhat/redhat-operator-index sha256:bea37512490e21d3061b99c8605a1bff17fcd85e9f209e0211da2f80629ba8b7 2.466KiB file://openshift/redhat/redhat-operator-index sha256:4d61e717d27aa2e6d4d5e1ebee001393e9dd9d4875caf6f8873cab327654243c 26.51KiB file://openshift/redhat/redhat-operator-index sha256:8a4d9204e975523595bed364c534fe9dc4b49232e5a67d587835c8d1e1fe7c59 2.169MiB file://openshift/redhat/redhat-operator-index sha256:e648f20c2d8b1702abf33b92b3845ca583dfe552a13564cafcec54af4746c123 2.768MiB file://openshift/redhat/redhat-operator-index sha256:c1728a3e85f19446d3a348b34c78a03432f1e202858fd1a59ee3b5bc34a8e6a0 3.753MiB file://openshift/redhat/redhat-operator-index sha256:dc77490ef660986d6be25f027fd9c18b0c54c474d8a5ce0904ce17aafddc232c 14.76MiB manifests: sha256:3af8f8150840ecd6e95d816bd22961dcc6dac8c3e75161f83b087e610d43bbb8 -> my4.6-03 stats: shared=0 unique=7 size=23.48MiB ratio=1.00 phase 0: mirrorreg.refocp.nec.test:5000 openshift/redhat-redhat-operator-index blobs=7 mounts=0 manifests=1 shared=0 info: Planning completed in 90ms uploading: mirrorreg.refocp.nec.test:5000/openshift/redhat-redhat-operator-index sha256:4d61e717d27aa2e6d4d5e1ebee001393e9dd9d4875caf6f8873cab327654243c 26.51KiB sha256:3af8f8150840ecd6e95d816bd22961dcc6dac8c3e75161f83b087e610d43bbb8 mirrorreg.refocp.nec.test:5000/openshift/redhat-redhat-operator-index:my4.6-03 info: Mirroring completed in 600ms (49.44kB/s) [root@bastion-ocptest ]# ### Copy bundle images for ClusterLogging and Elasticksearch to the mirror registry [root@bastion-ocptest ]# for operators in $( ls ${WORK_DIR}/tmp_operator/v2/openshift/openshift4 ); > do > oc image mirror -a ${LOCAL_SECRET_JSON} \ > --from-dir=${WORK_DIR}/tmp_operator \ > file://openshift/openshift4/${operators} \ > --keep-manifest-list=true \ > --filter-by-os='.*' \ > ${LOCAL_REGISTRY}/openshift/openshift4-${operators}; > done mirrorreg.refocp.nec.test:5000/ openshift/openshift4-ose-cluster-logging-operator blobs: file://openshift/openshift4/ose-cluster-logging-operator sha256:4422ea938fce292799f3089e923d72ed3e9430832cb96382f0f77b52871524a5 1.391KiB file://openshift/openshift4/ose-cluster-logging-operator sha256:6e3e429f889334f9dd8e023c3fb30fb304860c106070b0e811c141cfa7de4c9b 1.393KiB file://openshift/openshift4/ose-cluster-logging-operator sha256:765e8c8c13dae1b8ffa8d9ddc2d3171d8ddedf5f7cde21e6b46022d50e7b439e 1.4KiB file://openshift/openshift4/ose-cluster-logging-operator sha256:87facc9adf32e0d38fd488685848d77d05c3fa0b1aca51ed596d7e7e58cb1fe0 5.969KiB file://openshift/openshift4/ose-cluster-logging-operator sha256:1b716ddf33d573eb13f6eef86f7318e1ca823bb6f02d696d4f8044d9d36aa275 5.97KiB file://openshift/openshift4/ose-cluster-logging-operator sha256:25854c46f68d6840ee4a826b2f69f6e93eb0017f2f6f0d02de346f9b0e766d4f 5.98KiB file://openshift/openshift4/ose-cluster-logging-operator sha256:9882ea2ea8db8863ddb2740173c368d645868593c42813f0377a94f33f907f3f 10.71MiB file://openshift/openshift4/ose-cluster-logging-operator sha256:766555f27bbb7234c6a2ea22f6e212784d6de0e878acec759954d7ffea7facc4 11.22MiB file://openshift/openshift4/ose-cluster-logging-operator sha256:0c28a8fafa836eac4a134a92b97092518e9225c3a9f108e6f25e95fc8d1908bd 11.26MiB file://openshift/openshift4/ose-cluster-logging-operator sha256:b794ebf61aad4f09507327ca58b70e702eafd80e9223351e103343154f768f05 33.74MiB file://openshift/openshift4/ose-cluster-logging-operator sha256:41b1ca394e44780ccfba11f52c017c73778b9fbd4d07a91ac23b27ba0441bb6c 35.14MiB file://openshift/openshift4/ose-cluster-logging-operator sha256:e4d43cb91af3ece759ec5148aa80787971c294d7aa7954b89f14e94e254d0fed 36.2MiB file://openshift/openshift4/ose-cluster-logging-operator sha256:d40fbc59c975a5b2679c4159a6671d4f96dfd9c684cf4401aa27f301b8f4670b 39.83MiB file://openshift/openshift4/ose-cluster-logging-operator sha256:30bb175bbca1f219db4a032583249b4ccec9bb653ac9b3017745cf2fe5f1bcdb 41.59MiB file://openshift/openshift4/ose-cluster-logging-operator sha256:d4d530fbd31283e0e34448d0a3abe88c6d414ab1b8343f725170e12de9ad4a09 44.87MiB file://openshift/openshift4/ose-cluster-logging-operator sha256:b03ed90e4d12661f20919749f09737832c83b46efa9e1987aa76e6bba1d97f9c 68MiB file://openshift/openshift4/ose-cluster-logging-operator sha256:505209649de3925b2fd4b70634942756afb5719a953414d5db57d9520dbabe07 70.56MiB file://openshift/openshift4/ose-cluster-logging-operator sha256:2a293d5656cf6c297982a70eaaf6cb7342dfcb0ecb0b02915e0ff3af4a63893e 78.05MiB manifests: sha256:133e67d7ee03f70708584a779b2e4b3b5903f023237a37ea85f379451db85300 sha256:5aa8966f31e224cbd312c4058cec33805a0d66361eb79460823dbe453f791a76 sha256:738a3a2dc591103baf07ba586c2e6ff7eb5e4e8ad0e5f9940fde100e89b156bf sha256:a033f70f0836bca622ea594feeb116771c2bfb186c11babedc0678d6cd8808ce sha256:5aa8966f31e224cbd312c4058cec33805a0d66361eb79460823dbe453f791a76 -> 69b50423 stats: shared=0 unique=18 size=481.2MiB ratio=1.00 phase 0: mirrorreg.refocp.nec.test:5000 openshift/openshift4-ose-cluster-logging-operator blobs=18 mounts=0 manifests=5 shared=0 info: Planning completed in 70ms sha256:738a3a2dc591103baf07ba586c2e6ff7eb5e4e8ad0e5f9940fde100e89b156bf mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-cluster-logging-operator sha256:a033f70f0836bca622ea594feeb116771c2bfb186c11babedc0678d6cd8808ce mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-cluster-logging-operator sha256:133e67d7ee03f70708584a779b2e4b3b5903f023237a37ea85f379451db85300 mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-cluster-logging-operator sha256:5aa8966f31e224cbd312c4058cec33805a0d66361eb79460823dbe453f791a76 mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-cluster-logging-operator:69b50423 info: Mirroring completed in 2.83s (0B/s) mirrorreg.refocp.nec.test:5000/ openshift/openshift4-ose-cluster-logging-operator-bundle blobs: file://openshift/openshift4/ose-cluster-logging-operator-bundle sha256:c2847b7d54ebc9e53e620cc56a4fc50671e6564e3552bf5c1d4b81ee892aca8b 5.579KiB file://openshift/openshift4/ose-cluster-logging-operator-bundle sha256:cec9eecc6899318858696cfb1a6722f61452bbf066fa379bbaaf3da003840037 13.35KiB manifests: sha256:d52c96ee7197c9958501388258fd4a20f7c3ff243ce9e8d93503bcdbccc09c1c -> 6474084f stats: shared=0 unique=2 size=18.93KiB ratio=1.00 phase 0: mirrorreg.refocp.nec.test:5000 openshift/openshift4-ose-cluster-logging-operator-bundle blobs=2 mounts=0 manifests=1 shared=0 info: Planning completed in 70ms sha256:d52c96ee7197c9958501388258fd4a20f7c3ff243ce9e8d93503bcdbccc09c1c mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-cluster-logging-operator-bundle:6474084f info: Mirroring completed in 20ms (0B/s) mirrorreg.refocp.nec.test:5000/ openshift/openshift4-ose-elasticsearch-operator blobs: file://openshift/openshift4/ose-elasticsearch-operator sha256:4422ea938fce292799f3089e923d72ed3e9430832cb96382f0f77b52871524a5 1.391KiB file://openshift/openshift4/ose-elasticsearch-operator sha256:6e3e429f889334f9dd8e023c3fb30fb304860c106070b0e811c141cfa7de4c9b 1.393KiB file://openshift/openshift4/ose-elasticsearch-operator sha256:765e8c8c13dae1b8ffa8d9ddc2d3171d8ddedf5f7cde21e6b46022d50e7b439e 1.4KiB file://openshift/openshift4/ose-elasticsearch-operator sha256:4f2d327935d54656fc9eec82c2290bcf799eb6e22bb716310e624ba0f74c7c75 6.169KiB file://openshift/openshift4/ose-elasticsearch-operator sha256:9a3a24d6a521f114007406b9d9112e5ff1a23e49d121ef0f10a89ae193f71ffd 6.174KiB file://openshift/openshift4/ose-elasticsearch-operator sha256:8fa735c8bb81f89f05dcb3159629f48e1af1da8559f3e6a88d9fadca93fddc7f 6.186KiB file://openshift/openshift4/ose-elasticsearch-operator sha256:9882ea2ea8db8863ddb2740173c368d645868593c42813f0377a94f33f907f3f 10.71MiB file://openshift/openshift4/ose-elasticsearch-operator sha256:766555f27bbb7234c6a2ea22f6e212784d6de0e878acec759954d7ffea7facc4 11.22MiB file://openshift/openshift4/ose-elasticsearch-operator sha256:0c28a8fafa836eac4a134a92b97092518e9225c3a9f108e6f25e95fc8d1908bd 11.26MiB file://openshift/openshift4/ose-elasticsearch-operator sha256:9351b1ec72ae89d8886cdbbc3d4dd50fdf2186240c1f3ff79e1496652c751b79 15.61MiB file://openshift/openshift4/ose-elasticsearch-operator sha256:a3463642043039c142fb8e55f2d06c194e5a8c090ce65fb5b87a33d0bf1e64b3 18.01MiB file://openshift/openshift4/ose-elasticsearch-operator sha256:063c4030cf2860292a59857d0d789d06d36fe9ad87b3fa73d0a5fd7c8e83af21 18.19MiB file://openshift/openshift4/ose-elasticsearch-operator sha256:b794ebf61aad4f09507327ca58b70e702eafd80e9223351e103343154f768f05 33.74MiB file://openshift/openshift4/ose-elasticsearch-operator sha256:41b1ca394e44780ccfba11f52c017c73778b9fbd4d07a91ac23b27ba0441bb6c 35.14MiB file://openshift/openshift4/ose-elasticsearch-operator sha256:d40fbc59c975a5b2679c4159a6671d4f96dfd9c684cf4401aa27f301b8f4670b 39.83MiB file://openshift/openshift4/ose-elasticsearch-operator sha256:b03ed90e4d12661f20919749f09737832c83b46efa9e1987aa76e6bba1d97f9c 68MiB file://openshift/openshift4/ose-elasticsearch-operator sha256:505209649de3925b2fd4b70634942756afb5719a953414d5db57d9520dbabe07 70.56MiB file://openshift/openshift4/ose-elasticsearch-operator sha256:2a293d5656cf6c297982a70eaaf6cb7342dfcb0ecb0b02915e0ff3af4a63893e 78.05MiB manifests: sha256:547e062b889528946a076b1561c1e676c4554ca1f63fcef251d7f2e402afb29b sha256:697b3a988001446c0dfeec023aaa70ff668cbbf531cd37ce94479427b71e6650 sha256:7c43654a21fcefbf0d01000da448e7b5b548de17af7b85d317ada50bf5bae358 sha256:c6c23d0d1f6c153ee14af284adac83fd6cc59a712e9cb6a9c620a38f6356aee5 sha256:697b3a988001446c0dfeec023aaa70ff668cbbf531cd37ce94479427b71e6650 -> 170b3495 stats: shared=0 unique=18 size=410.3MiB ratio=1.00 phase 0: mirrorreg.refocp.nec.test:5000 openshift/openshift4-ose-elasticsearch-operator blobs=18 mounts=0 manifests=5 shared=0 info: Planning completed in 70ms uploading: mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-elasticsearch-operator sha256:9351b1ec72ae89d8886cdbbc3d4dd50fdf2186240c1f3ff79e1496652c751b79 15.61MiB uploading: mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-elasticsearch-operator sha256:063c4030cf2860292a59857d0d789d06d36fe9ad87b3fa73d0a5fd7c8e83af21 18.19MiB uploading: mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-elasticsearch-operator sha256:a3463642043039c142fb8e55f2d06c194e5a8c090ce65fb5b87a33d0bf1e64b3 18.01MiB sha256:c6c23d0d1f6c153ee14af284adac83fd6cc59a712e9cb6a9c620a38f6356aee5 mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-elasticsearch-operator sha256:547e062b889528946a076b1561c1e676c4554ca1f63fcef251d7f2e402afb29b mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-elasticsearch-operator sha256:7c43654a21fcefbf0d01000da448e7b5b548de17af7b85d317ada50bf5bae358 mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-elasticsearch-operator sha256:697b3a988001446c0dfeec023aaa70ff668cbbf531cd37ce94479427b71e6650 mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-elasticsearch-operator:170b3495 info: Mirroring completed in 2.83s (19.2MB/s) mirrorreg.refocp.nec.test:5000/ openshift/openshift4-ose-elasticsearch-operator-bundle blobs: file://openshift/openshift4/ose-elasticsearch-operator-bundle sha256:a13e5db0a2b1e6513551a03dc1f6ef78e8cdabf153cc6460b4e37c285f1d2a38 5.473KiB file://openshift/openshift4/ose-elasticsearch-operator-bundle sha256:984fbaa13b6dd52a5e14e0a0e454f66112ddfa21353f63b75164e5220274648b 9.61KiB manifests: sha256:d4a302e170db9c689fc32749fa22dad7157352b4499e40c80867f09d2b697768 -> fcfd1c51 stats: shared=0 unique=2 size=15.08KiB ratio=1.00 phase 0: mirrorreg.refocp.nec.test:5000 openshift/openshift4-ose-elasticsearch-operator-bundle blobs=2 mounts=0 manifests=1 shared=0 info: Planning completed in 80ms sha256:d4a302e170db9c689fc32749fa22dad7157352b4499e40c80867f09d2b697768 mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-elasticsearch-operator-bundle:fcfd1c51 info: Mirroring completed in 70ms (206.3kB/s) mirrorreg.refocp.nec.test:5000/ openshift/openshift4-ose-elasticsearch-proxy blobs: file://openshift/openshift4/ose-elasticsearch-proxy sha256:4422ea938fce292799f3089e923d72ed3e9430832cb96382f0f77b52871524a5 1.391KiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:6e3e429f889334f9dd8e023c3fb30fb304860c106070b0e811c141cfa7de4c9b 1.393KiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:765e8c8c13dae1b8ffa8d9ddc2d3171d8ddedf5f7cde21e6b46022d50e7b439e 1.4KiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:0914b73e39afd95fc95e1b83e1965a2f2128b53865aafd428079bde993eb32fa 5.618KiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:f2674e77cf04d0cf63f727e6e6aaa4a402c8ff7975c2a442dd68d90e372e67ac 5.619KiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:b9d56469ab8fcace17733d1c4f4cc3cb64d6f7aab19165d51070018e65806a2c 5.63KiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:9882ea2ea8db8863ddb2740173c368d645868593c42813f0377a94f33f907f3f 10.71MiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:766555f27bbb7234c6a2ea22f6e212784d6de0e878acec759954d7ffea7facc4 11.22MiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:0c28a8fafa836eac4a134a92b97092518e9225c3a9f108e6f25e95fc8d1908bd 11.26MiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:a59a556bf2deab770c2b825cf3f0400c3884d699ffbd1429c3234030ab7c985c 11.66MiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:14c5dd9f32e1c27c547236d077319033ea6eb597c4baa97b15fd71154965fb13 13.37MiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:45dc0b6a557c5ffbe2ae43f641f20e8394758d03950962e5c93d69b84977b666 13.49MiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:b794ebf61aad4f09507327ca58b70e702eafd80e9223351e103343154f768f05 33.74MiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:41b1ca394e44780ccfba11f52c017c73778b9fbd4d07a91ac23b27ba0441bb6c 35.14MiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:d40fbc59c975a5b2679c4159a6671d4f96dfd9c684cf4401aa27f301b8f4670b 39.83MiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:b03ed90e4d12661f20919749f09737832c83b46efa9e1987aa76e6bba1d97f9c 68MiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:505209649de3925b2fd4b70634942756afb5719a953414d5db57d9520dbabe07 70.56MiB file://openshift/openshift4/ose-elasticsearch-proxy sha256:2a293d5656cf6c297982a70eaaf6cb7342dfcb0ecb0b02915e0ff3af4a63893e 78.05MiB manifests: sha256:228f3a8304651c0c6f6604bd3e55b83a98634e3d1e6341dee3fd05406b980f26 sha256:29ba3036e3b72b4cf740c1c3fef2693b2ab249ac3bc3cc791be9134559acdccc sha256:2c96258f2ab06cf2b68e1d965185d4586eb507260ed9b372de15c52548c0dd1a sha256:5a17b8c0f66c72282e9fbb8a2b0842dc4fc9c46a54404fac0d3685a527f8a423 sha256:2c96258f2ab06cf2b68e1d965185d4586eb507260ed9b372de15c52548c0dd1a -> 9609d5c9 stats: shared=0 unique=18 size=397MiB ratio=1.00 phase 0: mirrorreg.refocp.nec.test:5000 openshift/openshift4-ose-elasticsearch-proxy blobs=18 mounts=0 manifests=5 shared=0 info: Planning completed in 80ms ... ### Disable the default OperatorSources [root@bastion-ocptest ]# oc patch OperatorHub cluster --type json -p '[{"op": "add", "path": "/spec/disableAllDefaultSources", "value": true}]' operatorhub.config.openshift.io/cluster patched (no change) ### Apply for CatalogSource and ImageContentSourcePolicy [root@bastion-ocptest ]# cat ${WORK_DIR}/tmp_operator/manifests-redhat-operator-index_contents/imageContentSourcePolicy.yaml apiVersion: operator.openshift.io/v1alpha1 kind: ImageContentSourcePolicy metadata: name: redhat-operator-index spec: repositoryDigestMirrors: - mirrors: - mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-cluster-logging-operator source: registry.redhat.io/openshift4/ose-cluster-logging-operator - mirrors: - mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-logging-kibana6 source: registry.redhat.io/openshift4/ose-logging-kibana6 - mirrors: - mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-elasticsearch-proxy source: registry.redhat.io/openshift4/ose-elasticsearch-proxy - mirrors: - mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-logging-elasticsearch6 source: registry.redhat.io/openshift4/ose-logging-elasticsearch6 - mirrors: - mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-logging-fluentd source: registry.redhat.io/openshift4/ose-logging-fluentd - mirrors: - mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-cluster-logging-operator-bundle source: registry.redhat.io/openshift4/ose-cluster-logging-operator-bundle - mirrors: - mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-logging-curator5 source: registry.redhat.io/openshift4/ose-logging-curator5 - mirrors: - mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-elasticsearch-operator source: registry.redhat.io/openshift4/ose-elasticsearch-operator - mirrors: - mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-elasticsearch-operator-bundle source: registry.redhat.io/openshift4/ose-elasticsearch-operator-bundle - mirrors: - mirrorreg.refocp.nec.test:5000/openshift/openshift4-ose-oauth-proxy source: registry.redhat.io/openshift4/ose-oauth-proxy [root@bastion-ocptest ]# oc create -f ${WORK_DIR}/tmp_operator/manifests-redhat-operator-index_contents/imageContentSourcePolicy.yaml imagecontentsourcepolicy.operator.openshift.io/redhat-operator-index created [root@bastion-ocptest ]# oc get imagecontentsourcepolicy NAME AGE image-policy-0 8d image-policy-1 8d redhat-operator-index 33s [root@bastion-ocptest ]# oc get node NAME STATUS ROLES AGE VERSION infra01.cluster.refocp.nec.test Ready infra,worker 8d v1.19.0+a5a0987 infra02.cluster.refocp.nec.test Ready infra,worker 8d v1.19.0+a5a0987 infra03.cluster.refocp.nec.test Ready infra,worker 8d v1.19.0+a5a0987 master01.cluster.refocp.nec.test Ready master 8d v1.19.0+a5a0987 master02.cluster.refocp.nec.test Ready master 8d v1.19.0+a5a0987 master03.cluster.refocp.nec.test Ready master 8d v1.19.0+a5a0987 worker01.cluster.refocp.nec.test Ready worker 8d v1.19.0+a5a0987 [root@bastion-ocptest ]# cat ${WORK_DIR}/tmp_operator/manifests-redhat-operator-index_contents/catalogSource.yaml apiVersion: operators.coreos.com/v1alpha1 kind: CatalogSource metadata: name: redhat-operator-index namespace: openshift-marketplace spec: image: mirrorreg.refocp.nec.test:5000/openshift/redhat-redhat-operator-index:my4.6-03 sourceType: grpc [root@bastion-ocptest ]# oc create -f ${WORK_DIR}/tmp_operator/manifests-redhat-operator-index_contents/catalogSource.yaml catalogsource.operators.coreos.com/redhat-operator-index created [root@bastion-ocptest ]# oc get catalogsource -n openshift-marketplace NAME DISPLAY TYPE PUBLISHER AGE redhat-operator-index grpc 6m56s [root@bastion-ocptest ]# oc get pod -n openshift-marketplace NAME READY STATUS RESTARTS AGE marketplace-operator-f6db5f4cb-2b6h2 1/1 Running 0 20m redhat-operator-index-tbxj2 1/1 Running 0 59s [root@bastion-ocptest ]# oc get packagemanifest -n openshift-marketplace NAME CATALOG AGE cluster-logging 23s elasticsearch-operator 23s ### Create PVs for ClusterLogging [root@bastion-ocptest ~]# export WORK_DIR=/root/NESIC/OCP4_DIR/OCP4_EFK_WORK [root@bastion-ocptest ~]# ls ${WORK_DIR} clo-namespace.yaml clo-og.yaml clo-sub.yaml clusterlogging_fluentd.yaml clusterlogging.yaml eo-namespace.yaml eo-og.yaml eo-sub.yaml vsphere-200g-01.yaml vsphere-200g-02.yaml vsphere-200g-03.yaml [root@bastion-ocptest ~]# oc create -f ${WORK_DIR}/vsphere-200g-01.yaml persistentvolume/vsphere-200g-01 created [root@bastion-ocptest ~]# oc create -f ${WORK_DIR}/vsphere-200g-02.yaml persistentvolume/vsphere-200g-02 created [root@bastion-ocptest ~]# oc create -f ${WORK_DIR}/vsphere-200g-03.yaml persistentvolume/vsphere-200g-03 created [root@bastion-ocptest ~]# oc get pv | grep vsphere-200g vsphere-200g-01 200Gi RWO Retain Available vsphere-sc 28s vsphere-200g-02 200Gi RWO Retain Available vsphere-sc 47s vsphere-200g-03 200Gi RWO Retain Available vsphere-sc ### Create openshift-logging namespace [root@bastion-ocptest ~]# oc create -f ${WORK_DIR}/clo-namespace.yaml namespace/openshift-logging created ### Create openshift-operators-redhat namespace [root@bastion-ocptest ~]# oc create -f ${WORK_DIR}/eo-namespace.yaml namespace/openshift-operators-redhat created ### Create elasticsearch operator group [root@bastion-ocptest ~]# oc create -f ${WORK_DIR}/eo-og.yaml operatorgroup.operators.coreos.com/openshift-operators-redhat created [root@bastion-ocptest ~]# oc get operatorgroup openshift-operators-redhat -n openshift-operators-redhat NAME AGE openshift-operators-redhat 2m15s [root@bastion-ocptest ~]# oc create -f ${WORK_DIR}/eo-sub.yaml subscription.operators.coreos.com/elasticsearch-xnvf6 created [root@bastion-ocptest ~]# oc get sub -n openshift-operators-redhat NAME PACKAGE SOURCE CHANNEL elasticsearch-xnvf6 elasticsearch-operator redhat-operator-index 4.6 ### Create ClusterLogging operator group [root@bastion-ocptest ~]# oc create -f ${WORK_DIR}/clo-og.yaml operatorgroup.operators.coreos.com/openshift-logging created [root@bastion-ocptest ~]# oc get og -n openshift-logging NAME AGE openshift-logging 3m38s [root@bastion-ocptest ~]# oc create -f ${WORK_DIR}/clo-sub.yaml subscription.operators.coreos.com/cluster-logging created [root@bastion-ocptest ~]# oc get sub -n openshift-logging NAME PACKAGE SOURCE CHANNEL cluster-logging cluster-logging redhat-operator-index 4.6 ### Check the status of Job Pods(*) for operator-is "Completed" operator-bundle [root@bastion-ocptest ~]# oc get pod -n openshift-marketplace NAME READY STATUS RESTARTS AGE (*)7c17c12518123d152aaa1ab7595b7604703aad6dd9665863b4da060edf67ld7 0/1 Completed 0 5m (*)e1937f38056bba45b0cd45ddf9be9f744e70a71b23658441873af46e7cg9fnh 0/1 Completed 0 4m39s marketplace-operator-f6db5f4cb-2b6h2 1/1 Running 0 37m redhat-operator-index-tbxj2 1/1 Running 0 18m ### Check InstallPlan [root@bastion-ocptest ~]# oc get InstallPlan -A NAMESPACE NAME CSV APPROVAL APPROVED openshift-logging install-wf9xw clusterlogging.4.6.0-202106021513 Manual false openshift-operators-redhat install-s7jxt elasticsearch-operator.4.6.0-202106100456 Manual false ### Approve the InstallPlan for Elasticsaerch operator [root@bastion-ocptest ~]# oc patch Installplan install-s7jxt -n openshift-operators-redhat --type json -p '[{"op": "add", "path": "/spec/approved", "value": true}]' installplan.operators.coreos.com/install-s7jxt patched [root@bastion-ocptest ~]# oc get installplan -n openshift-operators-redhat NAME CSV APPROVAL APPROVED install-s7jxt elasticsearch-operator.4.6.0-202106100456 Manual true [root@bastion-ocptest ~]# oc get csv -n openshift-operators-redhat NAME DISPLAY VERSION REPLACES PHASE elasticsearch-operator.4.6.0-202106100456 OpenShift Elasticsearch Operator 4.6.0-202106100456 Succeeded ### Approve the InstallPlan for ClusterLogging [root@bastion-ocptest ~]# oc patch Installplan install-wf9xw -n openshift-logging --type json -p '[{"op": "add", "path": "/spec/approved", "value": true}]' installplan.operators.coreos.com/install-wf9xw patched [root@bastion-ocptest ~]# oc get installplan -n openshift-logging NAME CSV APPROVAL APPROVED install-wf9xw clusterlogging.4.6.0-202106021513 Manual true [root@bastion-ocptest ~]# [root@bastion-ocptest ~]# oc get csv -n openshift-logging NAME DISPLAY VERSION REPLACES PHASE clusterlogging.4.6.0-202106021513 Cluster Logging 4.6.0-202106021513 Succeeded elasticsearch-operator.4.6.0-202106100456 OpenShift Elasticsearch Operator 4.6.0-202106100456 Succeeded [root@bastion-ocptest ~]# ### Create clusterlogging/instance [root@bastion-ocptest ~]# oc create -f ${WORK_DIR}/clusterlogging.yaml clusterlogging.logging.openshift.io/instance created [root@bastion-ocptest ~]# oc get pod -n openshift-logging NAME READY STATUS RESTARTS AGE cluster-logging-operator-7b97dc77-lqz2v 1/1 Running 0 13m elasticsearch-cdm-kh8sx9p3-1-5f6bd685dc-lj5cb 2/2 Running 0 10m elasticsearch-cdm-kh8sx9p3-2-7f7f98bff4-t7l26 2/2 Running 0 10m elasticsearch-cdm-kh8sx9p3-3-6bb55f556f-hxx77 2/2 Running 0 10m elasticsearch-im-app-1624438800-zd52j 0/1 Completed 0 8m52s elasticsearch-im-audit-1624438800-5xk9v 0/1 Completed 0 8m52s elasticsearch-im-infra-1624438800-k55rr 0/1 Completed 0 8m52s fluentd-6dt7q 1/1 Running 0 10m fluentd-774bp 1/1 Running 0 10m fluentd-c7llj 1/1 Running 0 10m fluentd-cljvc 1/1 Running 0 10m fluentd-fp8s2 1/1 Running 0 33s fluentd-nwrtk 1/1 Running 0 10m fluentd-wr6wl 1/1 Running 0 10m kibana-66d45c8658-pgsfs 2/2 Running 0 10m