From 826b0f384db92d9d818481d0645ac8afd5bc5f6f Mon Sep 17 00:00:00 2001 From: Kenichi Omichi Date: Tue, 12 May 2020 13:50:23 -0700 Subject: [PATCH] Add installation of requirements for Azure (#6076) Due to lack of requirements installation on Azure README, the error can happen: "The ipaddr filter requires python's netaddr be installed on the ansible controller" It is nice to add the installation for Azure users. --- contrib/azurerm/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/azurerm/README.md b/contrib/azurerm/README.md index 398bf4fae..078adc545 100644 --- a/contrib/azurerm/README.md +++ b/contrib/azurerm/README.md @@ -60,6 +60,7 @@ It will create the file ./inventory which can then be used with kubespray, e.g.: ```shell $ cd kubespray-root-dir +$ sudo pip3 install -r requirements.txt $ ansible-playbook -i contrib/azurerm/inventory -u devops --become -e "@inventory/sample/group_vars/all/all.yml" cluster.yml ```