summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2017-09-21 19:05:03 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-21 19:05:03 +0000
commitfbc49a7d84eefbecb2ef9774bae99d30e66a52be (patch)
treed57f6937f754af2cd033b379765199a6d78ee904
parent330a071566034447fa6a4de17e56be1cceb1c83b (diff)
parent18b0862b97850f3e4bfb9abf0dc5835e90f0dada (diff)
Merge "Revert "Adds Calipso scenario""
-rw-r--r--apex/deploy.py1
-rw-r--r--apex/settings/deploy_settings.py3
-rw-r--r--build/rpm_specs/opnfv-apex-common.spec3
-rwxr-xr-xbuild/undercloud.sh4
-rw-r--r--build/variables.sh3
-rw-r--r--config/deploy/os-nosdn-calipso-noha.yaml9
-rw-r--r--lib/ansible/playbooks/post_deploy_undercloud.yml4
7 files changed, 1 insertions, 26 deletions
diff --git a/apex/deploy.py b/apex/deploy.py
index 28416eec..9ebc3f62 100644
--- a/apex/deploy.py
+++ b/apex/deploy.py
@@ -404,7 +404,6 @@ def main():
deploy_vars['congress'] = True
else:
deploy_vars['congress'] = False
- deploy_vars['calipso'] = ds_opts.get('calipso', False)
# TODO(trozet): this is probably redundant with getting external
# network info from undercloud.py
if 'external' in net_settings.enabled_network_list:
diff --git a/apex/settings/deploy_settings.py b/apex/settings/deploy_settings.py
index 35c911bd..793e43ac 100644
--- a/apex/settings/deploy_settings.py
+++ b/apex/settings/deploy_settings.py
@@ -32,8 +32,7 @@ OPT_DEPLOY_SETTINGS = ['performance',
'dovetail',
'odl_vpp_routing_node',
'odl_vpp_netvirt',
- 'barometer',
- 'calipso']
+ 'barometer']
VALID_ROLES = ['Controller', 'Compute', 'ObjectStorage']
VALID_PERF_OPTS = ['kernel', 'nova', 'vpp', 'ovs']
diff --git a/build/rpm_specs/opnfv-apex-common.spec b/build/rpm_specs/opnfv-apex-common.spec
index 3b0e1aa5..c2e2f14e 100644
--- a/build/rpm_specs/opnfv-apex-common.spec
+++ b/build/rpm_specs/opnfv-apex-common.spec
@@ -69,7 +69,6 @@ install config/inventory/pod_example_settings.yaml %{buildroot}%{_docdir}/opnfv/
%{_sysconfdir}/opnfv-apex/os-nosdn-nofeature-noha.yaml
%{_sysconfdir}/opnfv-apex/os-nosdn-bar-noha.yaml
%{_sysconfdir}/opnfv-apex/os-nosdn-bar-ha.yaml
-%{_sysconfdir}/opnfv-apex/os-nosdn-calipso-noha.yaml
%{_sysconfdir}/opnfv-apex/os-nosdn-fdio-noha.yaml
%{_sysconfdir}/opnfv-apex/os-nosdn-fdio-ha.yaml
%{_sysconfdir}/opnfv-apex/os-nosdn-ovs_dpdk-noha.yaml
@@ -113,8 +112,6 @@ install config/inventory/pod_example_settings.yaml %{buildroot}%{_docdir}/opnfv/
%doc %{_docdir}/opnfv/inventory.yaml.example
%changelog
-* Wed Sep 20 2017 Tim Rozet <trozet@redhat.com> - 5.0-7
-- Add calipso
* Fri Sep 08 2017 Tim Rozet <trozet@redhat.com> - 5.0-6
- Updates clean to use python
* Wed Aug 23 2017 Tim Rozet <trozet@redhat.com> - 5.0-5
diff --git a/build/undercloud.sh b/build/undercloud.sh
index d225958f..05cbf552 100755
--- a/build/undercloud.sh
+++ b/build/undercloud.sh
@@ -26,9 +26,6 @@ popd > /dev/null
# inject rt_kvm kernel rpm name into the enable file
sed "s/kvmfornfv_kernel.rpm/$kvmfornfv_kernel_rpm/" ${BUILD_ROOT}/enable_rt_kvm.yaml | tee ${BUILD_DIR}/enable_rt_kvm.yaml
-# grab latest calipso
-populate_cache $calipso_uri_base/$calipso_script
-
# Turn off GSSAPI Auth in sshd
# installing forked apex-tht
# enabling ceph OSDs to live on the controller
@@ -55,7 +52,6 @@ LIBGUESTFS_BACKEND=direct virt-customize \
--upload ${BUILD_ROOT}/virtual-environment.yaml:/home/stack/ \
--upload ${BUILD_ROOT}/baremetal-environment.yaml:/home/stack/ \
--uninstall "libvirt-client" \
- --upload ${CACHE_DIR}/${calipso_script}:/root/ \
--install "libguestfs-tools" \
-a undercloud_build.qcow2
diff --git a/build/variables.sh b/build/variables.sh
index 444c5e80..a611073c 100644
--- a/build/variables.sh
+++ b/build/variables.sh
@@ -38,9 +38,6 @@ dpdk_rpms=(
kvmfornfv_uri_base="http://artifacts.opnfv.org/kvmfornfv/danube"
kvmfornfv_kernel_rpm="kvmfornfv-4bfeded9-apex-kernel-4.4.50_rt62_centos.x86_64.rpm"
-calipso_uri_base="https://git.opnfv.org/calipso/plain/app/install"
-calipso_script="calipso-installer.py"
-
netvpp_repo="https://github.com/openstack/networking-vpp"
netvpp_branch="master"
netvpp_commit=$(git ls-remote ${netvpp_repo} ${netvpp_branch} | awk '{print substr($1,1,7)}')
diff --git a/config/deploy/os-nosdn-calipso-noha.yaml b/config/deploy/os-nosdn-calipso-noha.yaml
deleted file mode 100644
index ce5c8a5e..00000000
--- a/config/deploy/os-nosdn-calipso-noha.yaml
+++ /dev/null
@@ -1,9 +0,0 @@
----
-global_params:
- ha_enabled: false
-
-deploy_options:
- sdn_controller: false
- sfc: false
- vpn: false
- calipso: true
diff --git a/lib/ansible/playbooks/post_deploy_undercloud.yml b/lib/ansible/playbooks/post_deploy_undercloud.yml
index a5b8677f..d6b8805a 100644
--- a/lib/ansible/playbooks/post_deploy_undercloud.yml
+++ b/lib/ansible/playbooks/post_deploy_undercloud.yml
@@ -115,7 +115,3 @@
become_user: stack
when: congress
with_items: "{{ congress_datasources }}"
- - name: Install Calipso
- command: python3 /root/calipso-installer.py --command start-all --copy q
- become: yes
- when: calipso