From e2c554c856a923c4a6323c96a190fd82e3d049d7 Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Sun, 3 Jun 2018 18:31:03 +0200 Subject: [patch] maas: rebase artifact download Upstream refactored maas/regions.sls to introduce kitchen tests in [1], rebase our patches on top of it. [1] https://github.com/salt-formulas/salt-formula-maas/commit/8a0d52e Change-Id: I491fb2e05679ebc226a27141e685d429e0ff8bcc Signed-off-by: Alexandru Avadanii --- .../0003-maas-region-force-artifact-download.patch | 54 ++++++++++++---------- 1 file changed, 30 insertions(+), 24 deletions(-) (limited to 'mcp/patches') diff --git a/mcp/patches/0003-maas-region-force-artifact-download.patch b/mcp/patches/0003-maas-region-force-artifact-download.patch index 50ef66aba..2982f3621 100644 --- a/mcp/patches/0003-maas-region-force-artifact-download.patch +++ b/mcp/patches/0003-maas-region-force-artifact-download.patch @@ -21,33 +21,14 @@ This fixup should be temporary at best. Signed-off-by: Alexandru Avadanii --- + maas/files/maas-artifact-sync.sh | 20 ++++++++++++++++++++ + maas/region.sls | 10 +++++++++- + 2 files changed, 29 insertions(+), 1 deletion(-) + create mode 100644 maas/files/maas-artifact-sync.sh -diff --git a/maas/region.sls b/maas/region.sls ---- a/maas/region.sls -+++ b/maas/region.sls -@@ -109,11 +109,19 @@ - cmd.run: - - name: "maas-region apikey --username {{ region.admin.username }} > /var/lib/maas/.maas_credentials" - -+maas_force_artifact_sync: -+ cmd.script: -+ - name: salt://maas/files/maas-artifact-sync.sh -+ - template: jinja -+ - shell: /bin/bash -+ - require: -+ - cmd: maas_login_admin -+ - maas_config: - module.run: - - name: maas.process_maas_config - - require: -- - cmd: maas_login_admin -+ - cmd: maas_force_artifact_sync - - maas_commissioning_scripts: - module.run: diff --git a/maas/files/maas-artifact-sync.sh b/maas/files/maas-artifact-sync.sh new file mode 100644 +index 0000000..1715c51 --- /dev/null +++ b/maas/files/maas-artifact-sync.sh @@ -0,0 +1,20 @@ @@ -71,3 +52,28 @@ new file mode 100644 +wait_for 90 "! maas opnfv boot-resources is-importing | grep -q 'true'" +maas opnfv rack-controllers import-boot-images || exit 3 +wait_for 30 "true {%- for arch in region.opnfv_arches.split(' ') %} && test -d /var/lib/maas/boot-resources/current/ubuntu/{{ arch }}{%- endfor %}" +diff --git a/maas/region.sls b/maas/region.sls +index aed295d..d6d28bb 100644 +--- a/maas/region.sls ++++ b/maas/region.sls +@@ -161,11 +161,19 @@ maas_login_admin: + - onlyif: /bin/false + {%- endif %} + ++maas_force_artifact_sync: ++ cmd.script: ++ - name: salt://maas/files/maas-artifact-sync.sh ++ - template: jinja ++ - shell: /bin/bash ++ - require: ++ - cmd: maas_login_admin ++ + maas_config: + module.run: + - name: maas.process_maas_config + - require: +- - cmd: maas_login_admin ++ - cmd: maas_force_artifact_sync + {%- if grains.get('kitchen-test') %} + - onlyif: /bin/false + {%- endif %} -- cgit 1.2.3-korg