Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
Red Hat Satellite engineering is moving the tracking of its product development work on Satellite to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "Satellite project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs will be migrated starting at the end of May. If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "Satellite project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/SAT-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Description of problem:
For yum repositories we offer a feature called "repo discovery" which makes it easier to identify and configure repositories if they are coming from one source and are available for different RHEL versions and architectures.
Until we ship docker images in CDN and can just select and enable these repos inside the Docker Images tab under Content -> Red Hat repositories we need to manually configure each invidual container image (repo) we want to sync into Sat6.
Docker search provides all required information to browse and filter the available docker images inside a registry.
This is even more relevant for ISV images inside our federated registry where we use registry.access.redhat.com as an index and provide back the url to the deviating ISV registry in rhcloud:
[root@dherrman ~]# docker search nginx
INDEX NAME DESCRIPTION STARS OFFICIAL AUTOMATED
redhat.com registry-nginxinc.rhcloud.com/nginx/rhel7-nginx:1.9.2 Run by the busiest web sites on the Intern... 0
redhat.com registry.access.redhat.com/rhscl_beta/nginx-16-rhel7 Nginx 1.6 server and a reverse proxy server 0
This would make it significantly easier to identify, select and configure (Sat6 repo and product) multiple container image repositories at once and would include ISV images in our federated registry as well.
Version-Release number of selected component (if applicable):
N/A
How reproducible:
N/A
Steps to Reproduce:
N/A
Actual results:
currently repo discovery only works for yum repos
Expected results:
Repo discovery works for docker images if I provide the registry (and maybe additionally a search term since a blind search listing all images seems to not work)
Additional info:
Workaround using hammer CLI:
for RESULT in $(docker search ${SEARCH} | grep -vi INDEX | sed -e 's/^redhat.com[[:blank:]]*\([[:graph:]]*\)[[:blank:]]*.*/\1/')
do
# divide between registry and upstream repo name
REGISTRY_URL=$(echo $RESULT | cut -d'/' -f1)
REPO_NAME=$(echo $RESULT | cut -d'/' -f2-)
echo "Adding REPO: $REPO_NAME REGISTRY: $REGISTRY_URL "
hammer repository create --name="${REPO_NAME}" \
--product='Container Images' --content-type='docker' \
--url="https://${REGISTRY_URL}" \
--docker-upstream-name="${REPO_NAME}" \
--publish-via-http="true" \
--organization="$ORG"
done
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA.
For information on the advisory, and where to find the updated files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHSA-2018:0336
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA.
For information on the advisory, and where to find the updated files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHSA-2018:0336
Comment 14Satellite Program
2018-02-21 16:51:07 UTC
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA.
>
> For information on the advisory, and where to find the updated files, follow the link below.
>
> If the solution does not work for you, open a new bug report.
>
> https://access.redhat.com/errata/RHSA-2018:0336
Description of problem: For yum repositories we offer a feature called "repo discovery" which makes it easier to identify and configure repositories if they are coming from one source and are available for different RHEL versions and architectures. Until we ship docker images in CDN and can just select and enable these repos inside the Docker Images tab under Content -> Red Hat repositories we need to manually configure each invidual container image (repo) we want to sync into Sat6. Docker search provides all required information to browse and filter the available docker images inside a registry. This is even more relevant for ISV images inside our federated registry where we use registry.access.redhat.com as an index and provide back the url to the deviating ISV registry in rhcloud: [root@dherrman ~]# docker search nginx INDEX NAME DESCRIPTION STARS OFFICIAL AUTOMATED redhat.com registry-nginxinc.rhcloud.com/nginx/rhel7-nginx:1.9.2 Run by the busiest web sites on the Intern... 0 redhat.com registry.access.redhat.com/rhscl_beta/nginx-16-rhel7 Nginx 1.6 server and a reverse proxy server 0 This would make it significantly easier to identify, select and configure (Sat6 repo and product) multiple container image repositories at once and would include ISV images in our federated registry as well. Version-Release number of selected component (if applicable): N/A How reproducible: N/A Steps to Reproduce: N/A Actual results: currently repo discovery only works for yum repos Expected results: Repo discovery works for docker images if I provide the registry (and maybe additionally a search term since a blind search listing all images seems to not work) Additional info: Workaround using hammer CLI: for RESULT in $(docker search ${SEARCH} | grep -vi INDEX | sed -e 's/^redhat.com[[:blank:]]*\([[:graph:]]*\)[[:blank:]]*.*/\1/') do # divide between registry and upstream repo name REGISTRY_URL=$(echo $RESULT | cut -d'/' -f1) REPO_NAME=$(echo $RESULT | cut -d'/' -f2-) echo "Adding REPO: $REPO_NAME REGISTRY: $REGISTRY_URL " hammer repository create --name="${REPO_NAME}" \ --product='Container Images' --content-type='docker' \ --url="https://${REGISTRY_URL}" \ --docker-upstream-name="${REPO_NAME}" \ --publish-via-http="true" \ --organization="$ORG" done