Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 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 "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". 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 "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-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.

Bug 1627614

Summary: Openvswitch fails as atomic-registry which is it's dependency fails due to Bug #1523224
Product: Red Hat Enterprise Linux 7 Reporter: Miheer Salunke <misalunk>
Component: atomicAssignee: Lokesh Mandvekar <lsm5>
Status: CLOSED INSUFFICIENT_DATA QA Contact: atomic-bugs <atomic-bugs>
Severity: medium Docs Contact:
Priority: unspecified    
Version: 7.5CC: adimania, amurdaca, bbaude, Bert.Deknuydt, ddarrah, dornelas, dwalsh, extras-qa, fkluknav, lsm5, walters
Target Milestone: rcKeywords: Extras, Reopened
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: 1523224 Environment:
Last Closed: 2018-12-19 00:17:27 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On: 1523224    
Bug Blocks: 1186913, 1523799    

Description Miheer Salunke 2018-09-11 03:54:49 UTC
+++ This bug was initially created as a clone of Bug #1523224 +++

Description of problem:

When you have your /etc/containers/registries.conf file in the 'old' YAML format, the registries.service gives a warning you should convert it to TOML:

Dec 04 15:18:13 coco.esat.kuleuven.be registries.log_warning[751]: /etc/containers/registries.conf is in YAML format and should be in TOML format. Back this file up and then use /usr/libexec/registries_migrator > /etc/containers/registries.conf to convert it to TOML.

However:

*) When you follow the recipe, it will simply wipe out your
   file (replaced with an essentially empty file).  Probably 
   the redirection problem (start outputting while still reading 
   the same file). Tool should read first the complete input file, 
   then spit out the result.
   
*) When you circumvent this problem by redirecting somewhere else, 
   it still fails to produce a correct file, as it puts quotes in
   the wrong place.

Version-Release number of selected component (if applicable):

F27: atomic-registries-1.20.1-3.fc27.x86_64
F26: atomic-registries-1.20.1-1.fc26.x86_64

How reproducible:

Always

Steps to Reproduce:
1. Check original correct YAML file: (I removed the comment)
 
   >> cat /etc/containers/registries.conf
   registries:
   - docker-registry.esat.kuleuven.be:5000
   - registry.fedoraproject.org
   - registry.access.redhat.com

2. Follow the recipe literally:

   >> /usr/libexec/registries_migrator > /etc/containers/registries.conf
 
   See the file gone:

   >> cat /etc/containers/registries.conf
   ["registries.search"]
   registries = []

   ["registries.insecure"]
   registries = []

   ["registries.block"]
   registries = []

3. Follow the recipe, but redirect elsewhere

   (After putting back the original obviously)
 
   >> /usr/libexec/registries_migrator > /etc/containers/registries.conf.new
   
   >> cat /etc/containers/registries.conf.new
   ["registries.search"]
   registries = ["docker-registry.esat.kuleuven.be:5000",    "registry.fedoraproject.org", "registry.access.redhat.com"]

   ["registries.insecure"]
   registries = []

   ["registries.block"]
   registries = []

   No it's not empty, but ... the quotes inside the []'s are afaik not
   valid TOML.

4. Try start registries service

   >> mv /etc/containers/registries.conf.new /etc/containers/registries.conf

   >> systemctl start registries.service
   Job for registries.service failed because the control process exited with error code.
   See "systemctl  status registries.service" and "journalctl  -xe" for details.

   Error is:
   Dec 07 13:39:11 coco.esat.kuleuven.be registries[11347]: Unable to load and parse /etc/containers/registries.conf

5. Remove the incorrect quotes from the file, so that it looks like;

   [registries.search]
   registries = ["docker-registry.esat.kuleuven.be:5000", "registry.fedoraproject.org", "registry.access.redhat.com"]

   [registries.insecure]
   registries = []

   [registries.block]
   registries = []
   
Additional info:

Not really convinced the the move from YAML to TOML was really worth the trouble. Keeping in mind that the only
thing it does, is output a single bash line for an environment variable ...

--- Additional comment from Brent Baude on 2017-12-07 10:38:10 EST ---

Hey Bert,

Thanks for the bugzilla report.  I built new Fedora binaries to resolve this yesterday but it looks like Fedora is still having infrastructure issues.  I still am not able to log into bodhi to release them.

When koji's web interfaces work again, I'll drop a pointer here for the new packages.

--- Additional comment from Brent Baude on 2017-12-07 10:40:23 EST ---

Bert, oh wait, this is a different issue.  Lemme dive into this.

--- Additional comment from Brent Baude on 2017-12-07 11:48:20 EST ---

@Bert, I'm about to build what I think is a fixed package.  I'm curious if you are on IRC freenode? If so, /query me (rangerpb) and maybe we can collaborate to make sure it works for you.

--- Additional comment from Fedora Update System on 2017-12-07 15:33:19 EST ---

atomic-1.20.1-8.fc26 has been submitted as an update to Fedora 26. https://bodhi.fedoraproject.org/updates/FEDORA-2017-ae5e48371f

--- Additional comment from Fedora Update System on 2017-12-07 15:33:27 EST ---

atomic-1.20.1-8.fc27 has been submitted as an update to Fedora 27. https://bodhi.fedoraproject.org/updates/FEDORA-2017-11adc9ee2c

--- Additional comment from Brent Baude on 2017-12-07 15:34:45 EST ---

@Bert, would you mind checking the newly built packages out and providing karma (links above in the bz) if they work for you?

BTW, thanks for your thorough bug description.

--- Additional comment from Bert DeKnuydt on 2017-12-08 03:32:12 EST ---


Hi Brent,

Just tested atomic-registries-1.20.1-8.fc26.x86_64.  It makes no change
whatsoever:

* When used with redirect: 'empty' file.
* When used otherwise:  invalid TOML file.

So no Karma yet :P

--- Additional comment from Fedora Update System on 2017-12-08 10:39:34 EST ---

atomic-1.20.1-9.fc27 has been submitted as an update to Fedora 27. https://bodhi.fedoraproject.org/updates/FEDORA-2017-7f99dc8add

--- Additional comment from Fedora Update System on 2017-12-08 10:39:43 EST ---

atomic-1.20.1-9.fc26 has been submitted as an update to Fedora 26. https://bodhi.fedoraproject.org/updates/FEDORA-2017-7150e3f48f

--- Additional comment from Brent Baude on 2017-12-08 10:41:17 EST ---

After working with Bert, the migration looks good and we decided to add an output option to the migration tool to avoid the piping issues.

--- Additional comment from Bert DeKnuydt on 2017-12-08 10:43:41 EST ---

All fixed now.  Thanks Brent.

--- Additional comment from Fedora Update System on 2017-12-09 02:28:54 EST ---

atomic-1.20.1-9.fc26 has been pushed to the Fedora 26 testing repository. If problems still persist, please make note of it in this bug report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2017-7150e3f48f

--- Additional comment from Fedora Update System on 2017-12-09 19:33:31 EST ---

atomic-1.20.1-9.fc27 has been pushed to the Fedora 27 testing repository. If problems still persist, please make note of it in this bug report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2017-7f99dc8add

--- Additional comment from Fedora Update System on 2017-12-19 14:47:42 EST ---

atomic-1.20.1-9.fc27 has been pushed to the Fedora 27 stable repository. If problems still persist, please make note of it in this bug report.

--- Additional comment from Fedora Update System on 2017-12-19 16:35:03 EST ---

atomic-1.20.1-9.fc26 has been pushed to the Fedora 26 stable repository. If problems still persist, please make note of it in this bug report.


/installed-rpms | grep "atomic"
atomic-1.22.1-3.git2fd0860.el7.x86_64                       Wed May  9 04:25:59 2018
atomic-devmode-0.3.7-2.el7.noarch                           Wed May  9 04:26:04 2018
atomic-registries-1.22.1-3.git2fd0860.el7.x86_64            Wed May  9 04:25:21 2018
nss-altfiles-0-2.atomic.git20131217gite2a80593.el7.x86_64   Wed May  9 04:26:16 2018
redhat-release-atomic-host-7.5-20171206.0.atomic.el7.0.x86_64 Wed May  9 04:24:54 2018
rpm-ostree-client-2018.1-1.atomic.el7.x86_64                Wed May  9 04:26:00 2018
tuned-profiles-atomic-2.9.0-1.el7.noarch                    Wed May  9 04:26:08 2018


/installed-rpms | grep "atomic"
atomic-1.22.1-3.git2fd0860.el7.x86_64                       Wed May  9 04:25:59 2018
atomic-devmode-0.3.7-2.el7.noarch                           Wed May  9 04:26:04 2018
atomic-registries-1.22.1-3.git2fd0860.el7.x86_64            Wed May  9 04:25:21 2018
nss-altfiles-0-2.atomic.git20131217gite2a80593.el7.x86_64   Wed May  9 04:26:16 2018
redhat-release-atomic-host-7.5-20171206.0.atomic.el7.0.x86_64 Wed May  9 04:24:54 2018
rpm-ostree-client-2018.1-1.atomic.el7.x86_64                Wed May  9 04:26:00 2018
tuned-profiles-atomic-2.9.0-1.el7.noarch                    Wed May  9 04:26:08 2018

Comment 2 Miheer Salunke 2018-09-11 03:56:32 UTC
$ cat /etc/redhat-release 
Fedora release 26 (Twenty Six)

Comment 8 Red Hat Bugzilla 2023-09-15 00:12:07 UTC
The needinfo request[s] on this closed bug have been removed as they have been unresolved for 500 days