24/02/21 Notes
Podman, Selinux & Cloud Design
* Troubleshot a Podman issue where scheduled image creations had stopped working since moving to Steam 8.
Was caused by two additional Red Hat registries being added to the registry.conf file (declares what registries will be used by default).
The scheduled image creation was hanging on selecting one of these registries.
Resolved by setting a single correct registry.
# Set default Docker registry so that builds don't hang
/usr/bin/cat < /etc/containers/registries.conf
[registries.search]
registries = ['docker.io']
[registries.insecure]
registries = []
[registries.block]
registries = []
EOF

* Short Selinux training on Linux Academy.

* Cloud customer design & planning.