Fix Stor4nfv CI issues due to repo changes 17/54117/3
authorramamani yeleswarapu <ramamani.yeleswarapu@intel.com>
Mon, 19 Mar 2018 14:42:47 +0000 (07:42 -0700)
committerramamani yeleswarapu <ramamani.yeleswarapu@intel.com>
Tue, 20 Mar 2018 21:47:30 +0000 (14:47 -0700)
Applies the changes in stor4nfv repo and consolidates
opensds and nbp inventories. This fixes the CI failure in
stor4nfv scenarios.

Change-Id: I91f291d52488771934e0e0e93da2c56715abc877
Signed-off-by: Ramamani Yeleswarapu <ramamani.yeleswarapu@intel.com>
plugins/stor4nfv/roles/stor4nfv/files/configure_vars.sh
plugins/stor4nfv/roles/stor4nfv/tasks/main.yml
plugins/stor4nfv/roles/stor4nfv/tasks/nbp.yml [deleted file]
plugins/stor4nfv/roles/stor4nfv/tasks/opensds.yml
plugins/stor4nfv/roles/stor4nfv/templates/nbp.hosts.j2 [deleted file]
plugins/stor4nfv/roles/stor4nfv/templates/opensds-nbp.hosts.j2 [moved from plugins/stor4nfv/roles/stor4nfv/templates/opensds.hosts.j2 with 66% similarity]

index 878f154..a4fe44e 100644 (file)
 
 cd $HOME/gopath/src/github.com/stor4nfv/stor4nfv/ci/ansible
 
+sed -i 's/^opensds_release.*/opensds_release: v0.1.5/g' group_vars/common.yml
+
+sed -i 's/^nbp_release.*/nbp_release: v0.1.0/g' group_vars/common.yml
+
+sed -i 's/^container_enabled.*/container_enabled: false/g' group_vars/common.yml
+
+sed -i 's/^nbp_plugin_type.*/nbp_plugin_type: csi/g' group_vars/common.yml
+
 sed -i 's/^workplace.*/workplace: \/root/g' group_vars/common.yml
 
 sed -i 's/^enabled_backend.*/enabled_backend: ceph/g' group_vars/osdsdock.yml
 
-sed -i 's/^ceph_pool_name.*/ceph_pool_name: "rbd"/g' group_vars/osdsdock.yml
-
 sed -i 's/^ceph_origin.*/ceph_origin: repository/g' group_vars/ceph/all.yml
 
 sed -i 's/^ceph_repository.*/ceph_repository: community/g' group_vars/ceph/all.yml
@@ -34,6 +40,8 @@ sed -i 's/^osd_scenario.*/osd_scenario: collocated/g' group_vars/ceph/osds.yml
 
 sed -i 's/^db_endpoint.*/db_endpoint: localhost:62379,localhost:62380/g' group_vars/osdsdb.yml
 
+sed -i 's/^etcd_host.*/etcd_host: 127.0.0.1/g' group_vars/osdsdb.yml
+
 sed -i 's/^etcd_port.*/etcd_port: 62379/g' group_vars/osdsdb.yml
 
 sed -i 's/^etcd_peer_port.*/etcd_peer_port: 62380/g' group_vars/osdsdb.yml
index 89d13f4..353282f 100644 (file)
@@ -8,7 +8,6 @@
 # #############################################################################
 ---
 - include: opensds.yml
-- include: nbp.yml
   when:
     - ansible_distribution == 'Ubuntu'
     - stor4nfv is defined and stor4nfv == "Enable"
diff --git a/plugins/stor4nfv/roles/stor4nfv/tasks/nbp.yml b/plugins/stor4nfv/roles/stor4nfv/tasks/nbp.yml
deleted file mode 100644 (file)
index 5361f5c..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-# #############################################################################
-# Copyright (c) 2018 Intel Corp.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-# #############################################################################
----
-
-- name: render nbp inventory
-  remote_user: root
-  template:
-    src: nbp.hosts.j2
-    dest: $HOME/gopath/src/github.com/stor4nfv/stor4nfv/ci/nbp-ansible/nbp.hosts
-
-- name: set nbp to csi
-  remote_user: root
-  shell: |
-    cd $HOME/gopath/src/github.com/stor4nfv/stor4nfv/ci/nbp-ansible;
-    sed -i 's/^nbp_plugin_type.*/nbp_plugin_type: csi/g' group_vars/common.yml
-
-- name: run playbook
-  remote_user: root
-  shell: |
-    cd $HOME/gopath/src/github.com/stor4nfv/stor4nfv/ci/nbp-ansible;
-    ansible-playbook site.yml -i nbp.hosts | tee /var/log/stor4nfv-nbp.log
index afd65bc..7866e80 100644 (file)
     src: ceph.hosts.j2
     dest: $HOME/gopath/src/github.com/stor4nfv/stor4nfv/ci/ansible/group_vars/ceph/ceph.hosts
 
-- name: render opensds inventory
+- name: render opensds, nbp inventory
   remote_user: root
   template:
-    src: opensds.hosts.j2
+    src: opensds-nbp.hosts.j2
     dest: $HOME/gopath/src/github.com/stor4nfv/stor4nfv/ci/ansible/local.hosts
 
 - name: force to run the second etcd cluster
diff --git a/plugins/stor4nfv/roles/stor4nfv/templates/nbp.hosts.j2 b/plugins/stor4nfv/roles/stor4nfv/templates/nbp.hosts.j2
deleted file mode 100644 (file)
index 0e8fa4c..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-[worker-nodes]
-{% for worker in hostvars[inventory_hostname]['groups']['storage_master'] %}
-{{ worker }} ansible_ssh_host={{ hostvars[worker]['ansible_ssh_host'] }}
-{% endfor %}
@@ -7,3 +7,8 @@
 {% for dock in hostvars[inventory_hostname]['groups']['storage_master'] %}
 {{ dock }} ansible_ssh_host={{ hostvars[dock]['ansible_ssh_host'] }}
 {% endfor %}
+
+[worker-nodes]
+{% for worker in hostvars[inventory_hostname]['groups']['storage_master'] %}
+{{ worker }} ansible_ssh_host={{ hostvars[worker]['ansible_ssh_host'] }}
+{% endfor %}