summaryrefslogtreecommitdiff
path: root/mason/ansible/mason-setup.yml
blob: 08490e780f775211320250824bfa2450a4af05ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
- hosts: localhost
  vars_files:
  - "/etc/mason/mason.conf"
  - "/etc/mason/os.conf"
  tasks:


  - fail: msg='TROVE_ID is mandatory'
    when: TROVE_ID is not defined

  - fail: msg='TROVE_HOST is mandatory'
    when: TROVE_HOST is not defined

  - fail: msg='ARTIFACT_CACHE_SERVER is mandatory'
    when: ARTIFACT_CACHE_SERVER is not defined

  - fail: msg='MASON_CLUSTER_MORPHOLOGY is mandatory'
    when: MASON_CLUSTER_MORPHOLOGY is not defined

  - fail: msg='MASON_DEFINITIONS_REF is mandatory'
    when: MASON_DEFINITIONS_REF is not defined

  - fail: msg='MASON_DISTBUILD_ARCH is mandatory'
    when: MASON_DISTBUILD_ARCH is not defined

  - fail: msg='MASON_TEST_HOST is mandatory'
    when: MASON_TEST_HOST is not defined

  - fail: msg='CONTROLLERHOST is mandatory'
    when: CONTROLLERHOST is not defined

  - fail: msg='TEST_INFRASTRUCTURE_TYPE is mandatory'
    when: TEST_INFRASTRUCTURE_TYPE is not defined

  - fail: msg='OPENSTACK_NETWORK_ID is mandatory when TEST_INFRASTRUCTURE_TYPE=openstack'
    when: TEST_INFRASTRUCTURE_TYPE == "openstack" and OPENSTACK_NETWORK_ID is not defined

  - fail: msg='OS_USERNAME is mandatory when TEST_INFRASTRUCTURE_TYPE=openstack'
    when: TEST_INFRASTRUCTURE_TYPE == "openstack" and OS_USERNAME is not defined

  - fail: msg='OS_PASSWORD is mandatory when TEST_INFRASTRUCTURE_TYPE=openstack'
    when: TEST_INFRASTRUCTURE_TYPE == "openstack" and OS_PASSWORD is not defined

  - fail: msg='OS_TENANT_ID is mandatory when TEST_INFRASTRUCTURE_TYPE=openstack'
    when: TEST_INFRASTRUCTURE_TYPE == "openstack" and OS_TENANT_ID is not defined

  - fail: msg='OS_TENANT_NAME is mandatory when TEST_INFRASTRUCTURE_TYPE=openstack'
    when: TEST_INFRASTRUCTURE_TYPE == "openstack" and OS_TENANT_NAME is not defined

  - fail: msg='OS_AUTH_URL is mandatory when TEST_INFRASTRUCTURE_TYPE=openstack'
    when: TEST_INFRASTRUCTURE_TYPE == "openstack" and OS_AUTH_URL is not defined

  - name: Create the Mason configuration file
    template: src=/usr/share/mason-setup/{{ item }} dest=/etc/{{ item }}
    with_items:
    - mason.conf

  - name: Create the OpenStack credentials file
    template: src=/usr/share/mason-setup/{{ item }} dest=/etc/{{ item }}
    with_items:
    - os.conf
    when: TEST_INFRASTRUCTURE_TYPE == "openstack"

  - name: Enable the mason service
    service: name=mason.service enabled=yes
    register: mason_service
  - name: Restart the mason service
    service: name=mason.service state=restarted
    when: mason_service|changed

  - name: Enable the mason timer
    service: name=mason.timer enabled=yes
    register: mason_timer
  - name: Restart the mason timer
    service: name=mason.timer state=restarted
    when: mason_timer|changed

  - name: Enable the httpd service
    service: name=httpd.service enabled=yes
    register: httpd_service
  - name: Restart the httpd service
    service: name=httpd state=restarted
    when: httpd_service|changed