From 3a88efe701708f3f88ff8b9676ba2ed11d411727 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Tue, 24 Sep 2024 16:41:58 -0400 Subject: [PATCH] fix: Update to MorphoCloud/MorphoCloudWorkflow@a777131 List of MorphoCloudWorkflow changes: ``` $ git shortlog 15bc17c..a777131 --no-merges Jean-Christophe Fillion-Robin (3): fix(cloud-config): Update to MorphoCloud/exosphere@f8640dca1 fix(cloud-config): Update to MorphoCloud/exosphere@c0c274dee fix(cloud-config): Install "psutil" required by "community.general.pids" ``` See https://github.com/MorphoCloud/MorphoCloudWorkflow/compare/15bc17c...a777131 --- cloud-config | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cloud-config b/cloud-config index d36552ed..3b6d3b09 100644 --- a/cloud-config +++ b/cloud-config @@ -30,12 +30,13 @@ runcmd: pip install --upgrade pip pip install ansible-core pip install lxml # required by community.general.xml + pip install psutil # required by community.general.pids ansible-galaxy collection install community.general # --url "{instance-config-mgt-repo-url}" # --checkout "{instance-config-mgt-repo-checkout}" # -e "{ansible-extra-vars}" rm -rf /opt/instance-config-mgt - exosphere_sha="22ca67a8275d40654e078e71e50f9c5f666dc2e1" # morpho-cloud-portal-2024.07.17-78a7e2d93 + exosphere_sha="c0c274deec732bd3fae393f5b81009db70456db6" # morpho-cloud-portal-2024.07.17-78a7e2d93 ansible-pull \ --url "https://github.com/MorphoCloud/exosphere.git" \ --checkout "$exosphere_sha" \