Adapt Kolla to stack-oriented framework
This change adapts kolla installer to SOF approach. The change summary is as
below:
1. Package playbook and role are moved to the stack
2. playbooks and roles for pre-deployment and post-deployment are renamed to
preinstall and postinstall respectively.
3. vars moved to the stack and only the kolla installer version is
controlled in this repo
4. install.sh modified for SOF
5. pre/post operations moved to the stack
Depends-On: Ia0bb0b386faf17aad76dc65224aba597e0d82ead
Signed-off-by: Prasad Mukhedkar <prasad.mukhedkar@est.tech>
Change-Id: I13a8a066932b74fab8da7c4c19a78c7fded098bd
diff --git a/vars/kolla.yaml b/vars/kolla.yaml
index 99d6708..cb5e104 100644
--- a/vars/kolla.yaml
+++ b/vars/kolla.yaml
@@ -29,11 +29,8 @@
# -------------------------------------------------------------------------------
# -------------------------------------------------------------------------------
-# OpenDev: kolla-ansible and openstack versions
+# OpenDev: kolla-ansible version compatible
# -------------------------------------------------------------------------------
# kolla-ansible for stable/train as of 08.04.2020
kolla_ansible_version: "{{ lookup('env', 'KOLLA_ANSIBLE_VERSION') | default('779b1caa114a43e63f04aa431caf7524dc3e31a9', true) }}"
-# openstack version that is supported by the pinned kolla-ansibe version
-openstack_version: "{{ lookup('env', 'OPENSTACK_VERSION') | default('train', true) }}"
-
# vim: set ts=2 sw=2 expandtab: