From 679de79cfc9374cf28661e019b2f2e6d94cb1714 Mon Sep 17 00:00:00 2001 From: Mark Goddard Date: Wed, 29 Aug 2018 12:13:21 +0100 Subject: [PATCH] Switch inspection store to use stable docker image The latest image is currently failing to download, with the following error: no matching manifest for unknown in the manifest list entries This is currently blocking CI. Change-Id: I3b4acadd53fe171e71ee16e0eb0b7a711fa97a4f TrivialFix --- ansible/roles/inspection-store/defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/inspection-store/defaults/main.yml b/ansible/roles/inspection-store/defaults/main.yml index 941068e7e..d6d6c3998 100644 --- a/ansible/roles/inspection-store/defaults/main.yml +++ b/ansible/roles/inspection-store/defaults/main.yml @@ -33,7 +33,7 @@ inspection_store_config_path: "/etc/inspection-store" # container to never update to new images. inspection_store_namespace: "" inspection_store_image: "{{ inspection_store ~ '/' if inspection_store | default else '' }}{{ inspection_store_namespace ~ '/' if inspection_store_namespace else '' }}nginx" -inspection_store_tag: "latest" +inspection_store_tag: "stable" inspection_store_image_full: "{{ inspection_store_image }}:{{ inspection_store_tag }}" inspection_store_restart_policy: "unless-stopped"