b0e857ca57451b79985a3a99d9892b15d84dfe83
[csit.git] / resources / tools / testbed-setup / playbooks / 03-virl-post-install.yaml
1 ---
2 - hosts: virl
3   remote_user: testuser
4   sudo: yes
5   tasks:
6   - name: Add jenkins-in user
7     user: name=jenkins-in shell=/bin/bash comment="Jenkins user"
8   - name: Add jenkins-in user to sudoers
9     copy: src=files/sudoers_jenkins-in dest=/etc/sudoers.d/jenkins-in owner=root group=root mode=660
10   - name: Set Jenkins user authorized key
11     authorized_key: user=jenkins-in key="{{ lookup('file', '/home/testuser/.ssh/id_rsa.pub') }}"
12   - name: copy salt states for dnsmasq and nfs
13     synchronize: src=files/salt/ dest=/
14   - name: install NFS salt
15     shell: salt-call --local state.sls ckoester.nfs-server
16   - name: NFS symlink
17     shell: ln -s /nfs/scratch /scratch
18     args:
19       creates: /scratch
20   - name: upate Nova CPU mode
21     ini_file: dest=/etc/nova/nova.conf section=libvirt option=cpu_mode value=host-passthrough
22   - name: Restart nova-compute service
23     service: name=nova-compute state=restarted
24   - name: Permit SSH user environment
25     lineinfile: dest=/etc/ssh/sshd_config state=present regexp='PermitUserEnvironment.*' line='PermitUserEnvironment yes'
26   - name: Restart SSH daemon
27     service: name=ssh state=restarted
28 - hosts: virl
29   remote_user: jenkins-in
30   tasks:
31   - name: clone csit git repository
32     git: repo=https://gerrit.fd.io/r/csit
33          dest=/home/jenkins-in/git/csit
34   - name: Link testcase-infra directory
35     command: ln -sf /home/jenkins-in/git/csit/resources/tools/virl /home/jenkins-in/testcase-infra
36     args:
37       creates: /home/jenkins-in/testcase-infra
38   - name: Create bin directory
39     file: path=/home/jenkins-in/bin state=directory mode=0755
40   - name: Link start-testcase executable
41     command: ln -sf /home/jenkins-in/testcase-infra/bin/start-testcase /home/jenkins-in/bin/start-testcase
42     args:
43       creates: /home/jenkins-in/bin/start-testcase
44   - name: Link start-honeycomb-testcase executable
45     command: ln -sf /home/jenkins-in/testcase-infra/bin/start-honeycomb-testcase /home/jenkins-in/bin/start-honeycomb-testcase
46     args:
47       creates: /home/jenkins-in/bin/start-honeycomb-testcase
48   - name: Link stop-testcase executable
49     command: ln -sf /home/jenkins-in/testcase-infra/bin/stop-testcase /home/jenkins-in/bin/stop-testcase
50     args:
51       creates: /home/jenkins-in/bin/stop-testcase
52   - name: Link kill-idle-testcases executable
53     command: ln -sf /home/jenkins-in/testcase-infra/bin/kill-idle-testcases /home/jenkins-in/bin/kill-idle-testcases
54     args:
55       creates: /home/jenkins-in/bin/kill-idle-testcases
56   - name: Copy SSH private key
57     copy: src=files/virl/id_rsa_virl dest=/home/jenkins-in/.ssh/id_rsa_virl mode=600
58   - name: Copy SSH public key
59     copy: src=files/virl/id_rsa_virl.pub dest=/home/jenkins-in/.ssh/id_rsa_virl.pub mode=644
60   - name: Copy SSH environment
61     copy: src=files/virl/ssh_environment dest=/home/jenkins-in/.ssh/environment mode=644
62   - name: Add ~/bin to path
63     lineinfile: dest=/home/jenkins-in/.bashrc state=present line='PATH=${HOME}/bin:$PATH'
64   - name: Update own IP address in start script
65     shell: sed -i /home/jenkins-in/testcase-infra/bin/start-testcase -e 's/10.30.51.28/{{ ansible_default_ipv4["address"] }}/'
66   - name: Add authorized key
67     lineinfile: dest=/home/jenkins-in/.ssh/authorized_keys line='ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQD4gderzsZyoxHULjuvPHoJuKnkaGrykqtuoqs/k1/jUdxitPoY5eX2cVYqww7MiUif7zLsiXbt5mHtyxAYCluDxAuIcy1xgSZY3MpmmSqDie4A/FdVfCUqCcpf3TZKsRP0an1MNrKIe0JFZV+uU889IDRQRdboGMs3+4cn5b9fOutpv71qwFVrTm9PZbqfQonrrN8Jp4Mz3XaZDpK22xwDAWhYOZ0eV6CJWquUgbYAHE6/HHMvd0zeJKaWZCXO/1tOGOj6cjgoViHqbnCtmYCjmv/ir0IglzbUdWdOqQY5YkhnPonveV48lVKrmBipqgbDezAUQD8wOQ7HttpYpKgt jenkins-in@tb4-virl'
68 # All of the below will fail if VIRL user/project already exist
69 - hosts: virl
70   remote_user: virl
71   tasks:
72   - name: Create VIRL project
73     shell: virl_uwm_client project-create --name tb4-virl --enabled True --user-password Cisco1234
74     ignore_errors: true
75 #  - name: Delete VIRL project user
76 #    shell: virl_uwm_client user-delete --name tb4-virl
77 #    ignore_errors: true
78 #  - name: Recreate VIRL project user
79 #    shell: virl_uwm_client user-create --name tb4-virl --role admin --project tb4-virl --set-password Cisco1234
80 #    ignore_errors: true
81   - name: Create VPP flavor
82     shell: virl_uwm_client flavor-create --name vPP --ram 4096 --vcpus 2 --disk 0
83     ignore_errors: true