diff --git a/dev/functions b/dev/functions index 52b31ac94..ac76920dc 100644 --- a/dev/functions +++ b/dev/functions @@ -436,7 +436,8 @@ function overcloud_deploy { run_kayobe kolla ansible run certificates \ --kolla-extra kolla_certificates_dir=${KAYOBE_CONFIG_PATH}/kolla/certificates \ --kolla-extra ansible_user=$USER \ - --kolla-extra ansible_python_interpreter=/usr/bin/python3 + --kolla-extra ansible_python_interpreter=/usr/bin/python3 \ + --skip-tags kolla-openstack unset ANSIBLE_CACHE_PLUGIN # Add CA cert to trust store. diff --git a/kayobe/cli/commands.py b/kayobe/cli/commands.py index 196e72365..165d0fdeb 100644 --- a/kayobe/cli/commands.py +++ b/kayobe/cli/commands.py @@ -373,6 +373,11 @@ class KollaAnsibleRun(KollaAnsibleMixin, KayobeAnsibleMixin, VaultMixin, def take_action(self, parsed_args): self.app.LOG.debug("Running Kolla Ansible command") + + # First prepare configuration. + self.generate_kolla_ansible_config(parsed_args) + + # Run the kolla-ansible command. self.run_kolla_ansible(parsed_args, parsed_args.command, parsed_args.kolla_inventory_filename) diff --git a/releasenotes/notes/generate-ka-config-on-ka-run-8ff96b27017b2c62.yaml b/releasenotes/notes/generate-ka-config-on-ka-run-8ff96b27017b2c62.yaml new file mode 100644 index 000000000..eef8cd394 --- /dev/null +++ b/releasenotes/notes/generate-ka-config-on-ka-run-8ff96b27017b2c62.yaml @@ -0,0 +1,11 @@ +--- +features: + - | + ``kayobe kolla ansible run`` will now generate Kolla-Ansible configuration + before the command is run. You can use ``--skip-tags kolla-openstack`` to + skip this for commands that do not require the kolla config. +upgrade: + - | + ``kayobe kolla ansible run`` will now generate Kolla-Ansible configuration + before the command is run. You can use ``--skip-tags kolla-openstack`` to + skip this for commands that do not require the kolla config.