File tree Expand file tree Collapse file tree 4 files changed +21
-1
lines changed Expand file tree Collapse file tree 4 files changed +21
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ - name : Login to docker registry
3
+ docker_login :
4
+ registry_url : " {{ kolla_docker_registry or omit }}"
5
+ username : " {{ kolla_docker_registry_username }}"
6
+ password : " {{ kolla_docker_registry_password }}"
7
+ reauthorize : yes
8
+ when :
9
+ - seed_pulp_container_enabled | bool
Original file line number Diff line number Diff line change 27
27
when :
28
28
- stackhpc_pulp_sync_for_local_container_build | bool
29
29
- pulp_settings.changed
30
+
31
+ - name : Login to docker registry
32
+ docker_login :
33
+ registry_url : " {{ kolla_docker_registry or omit }}"
34
+ username : " {{ kolla_docker_registry_username }}"
35
+ password : " {{ kolla_docker_registry_password }}"
36
+ reauthorize : yes
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ kayobe seed vm provision
87
87
kayobe seed host configure
88
88
89
89
# Deploy local pulp server as a container on the seed VM
90
- kayobe seed service deploy --tags seed-deploy-containers --kolla-tags none -e deploy_containers_registry_attempt_login=False
90
+ kayobe seed service deploy --tags seed-deploy-containers --kolla-tags
91
91
92
92
# Deploying the seed restarts networking interface, run configure-local-networking.sh again to re-add routes.
93
93
$KAYOBE_CONFIG_PATH /environments/$KAYOBE_ENVIRONMENT /configure-local-networking.sh
Original file line number Diff line number Diff line change @@ -152,6 +152,10 @@ seed_containers: >-
152
152
153
153
seed_extra_containers : {}
154
154
155
+ # Whether to attempt a basic authentication login to a registry when
156
+ # deploying seed containers
157
+ seed_deploy_containers_registry_attempt_login : " {{ not seed_pulp_container_enabled | bool }}"
158
+
155
159
# ##############################################################################
156
160
# Seed node firewalld configuration.
157
161
You can’t perform that action at this time.
0 commit comments