From e1b638e96b132f0471597c746ef121bd66e75a57 Mon Sep 17 00:00:00 2001 From: Ayumu Ueha Date: Wed, 19 Apr 2023 00:45:28 +0000 Subject: [PATCH] Fix tox4 error This patch changes to use allowlist_externals instead of whitelist_externals for fixing tox4 error. Also this patch contains fixing typo to trigger the Jenkins Job. Signed-off-by: Ayumu Ueha Change-Id: Ia931ee87a331a85e0718238089a25e483292e181 --- docs/tacker-user-guide-cnf.rst | 2 +- docs/tacker-user-guide-vnf.rst | 2 +- tox.ini | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tacker-user-guide-cnf.rst b/docs/tacker-user-guide-cnf.rst index bf0b9e6..2d138d1 100644 --- a/docs/tacker-user-guide-cnf.rst +++ b/docs/tacker-user-guide-cnf.rst @@ -37,7 +37,7 @@ Register Kubernetes VIM (Virtualized Infrastructure Manager) by following proced .. code:: bash $ source ${devstack_dir}/openrc admin admin - $ openstack vim register --confi-file vim_config_k8s.yaml vim-kubernetes + $ openstack vim register --config-file vim_config_k8s.yaml vim-kubernetes 3. Check the registered VIM status is ``REACHABLE``. diff --git a/docs/tacker-user-guide-vnf.rst b/docs/tacker-user-guide-vnf.rst index 4a63f50..9ff6508 100644 --- a/docs/tacker-user-guide-vnf.rst +++ b/docs/tacker-user-guide-vnf.rst @@ -39,7 +39,7 @@ Register OpenStack VIM (Virtualized Infrastructure Manager) by following procedu .. code:: bash $ source ${devstack_dir}/openrc admin admin - $ openstack vim register --confi-file vim_config.yaml vim-openstack + $ openstack vim register --config-file vim_config.yaml vim-openstack 3. Check the registered VIM status is ``REACHABLE``. diff --git a/tox.ini b/tox.ini index a2250a7..9de440b 100644 --- a/tox.ini +++ b/tox.ini @@ -20,7 +20,7 @@ commands = echo "Generated docs available in {toxinidir}/docs/_build/html" -whitelist_externals = echo +allowlist_externals = echo [testenv:docs-linkcheck] basepython = python3 -- 2.16.6