insecure registry 사용

Getting image source signatures
Checking if image destination supports signatures
Error: Can not copy signatures to docker://localhost:5000/rhosp-rhel8/openstack-etcd:16.2: pinging container registry localhost:5000: Get "https://localhost:5000/v2/": http: server gave HTTP response to HTTPS client

특정 사설 레지스트리를 사용할때 https가 아닌 http insecure registry 로 등록하여 사용하려면
/etc/containers/registries.conf.d/myregistry.conf 파일을 생성해서 아래와 같이 등록하면 된다.

여러개인경우 [[registry]] 항목을 여러개 만들면 된다.

[[registry]]
location = "registry.mycluster.williamlieurance.com:5000"
insecure = true

[[registry]]
location = "localhost:5000"
insecure = true

참조링크