From 94e86e683f42593d899e7f61b438df63eef513c1 Mon Sep 17 00:00:00 2001 From: Egor Vasilyev Date: Fri, 31 May 2024 15:42:52 +0300 Subject: [PATCH] fix install python command --- molecule/configure-k8s-instances.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/molecule/configure-k8s-instances.yml b/molecule/configure-k8s-instances.yml index 5a61b4b..f1602b5 100644 --- a/molecule/configure-k8s-instances.yml +++ b/molecule/configure-k8s-instances.yml @@ -1,7 +1,8 @@ --- - name: Install Python - ansible.builtin.raw: apt update && apt install -y python3-pip python3 python3-apt + ansible.builtin.raw: | + apt update && apt install -yq --no-install-recommends python3 python3-pip python3-apt changed_when: false - name: Install prerequisites