-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sets kolla_docker_registry_insecure to true #297
Conversation
We currently don't configure TLS for the the local pulp registry. This adds the pulp server to the list of insecure-registries, so that we can pull images.
We've set this in the ci-* environments, so it could be dropped there now. |
Based on comments in code review.
Done. It did make me think we could have a better default rather than hard-coding |
Yes, it's not ideal. I suppose we could use the same value that was in the environment config, which is most likely to be correct. |
Hoping this will prevent breakage for people already running pulp with TLS.
* Sets kolla_docker_registry_insecure to true We currently don't configure TLS for the the local pulp registry. This adds the pulp server to the list of insecure-registries, so that we can pull images. * Remove kolla_docker_registry_insecure override in CI environment Based on comments in code review. * Use a better default for kolla_docker_registry_insecure Hoping this will prevent breakage for people already running pulp with TLS. (cherry picked from commit 78055cf)
We currently don't configure TLS for the the local pulp registry. This adds the pulp server to the list of insecure-registries, so that we can pull images.