summaryrefslogtreecommitdiff
path: root/openstack/usr/share/openstack/cinder.yml
blob: f5f9ddc815c5f9579245ae162942f128eef218c5 (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
---
- hosts: localhost
  vars_files:
  - "/etc/openstack/cinder.conf"
  tasks:
  - name: Create the cinder user.
    user: name=cinder comment="Openstack Cinder Daemons" shell=/sbin/nologin home=/var/lib/cinder

  - name: Create the /var folders for cinder
    file: path={{ item }} state=directory owner=cinder group=cinder
    with_items:
    - /var/run/cinder
    - /var/lock/cinder
    - /var/log/cinder
    - /var/lib/cinder
    - /var/lib/cinder/volumer

  - file: path=/etc/cinder state=directory
  - name: Add the configuration needed for cinder in /etc/cinder using templates
    template: src=/usr/share/openstack/cinder/{{ item }} dest=/etc/cinder/{{ item }}
    with_lines:
    - (cd /usr/share/openstack/cinder && find -type f)

  - keystone_user: >
        user={{ CINDER_USER }}
        password={{ CINDER_PASSWORD }}
        tenant=service
        token={{ KEYSTONE_TEMPORARY_ADMIN_TOKEN }}

  - keystone_user: >
        role=admin
        user={{ CINDER_USER }}
        tenant=service
        token={{ KEYSTONE_TEMPORARY_ADMIN_TOKEN }}

  - keystone_service: >
        name=cinder
        type=volume
        description="Openstack Block Storage"
        publicurl='http://{{ CONTROLLER_HOST_ADDRESS }}:8776/v1/%(tenant_id)s'
        internalurl='http://{{ CONTROLLER_HOST_ADDRESS }}:8776/v1/%(tenant_id)s'
        adminurl='http://{{ CONTROLLER_HOST_ADDRESS }}:8776/v1/%(tenant_id)s'
        region='regionOne'
        token={{ KEYSTONE_TEMPORARY_ADMIN_TOKEN }}

  - keystone_service: >
        name=cinderv2
        type=volumev2
        description="Openstack Block Storage"
        publicurl='http://{{ CONTROLLER_HOST_ADDRESS }}:8776/v2/%(tenant_id)s'
        internalurl='http://{{ CONTROLLER_HOST_ADDRESS }}:8776/v2/%(tenant_id)s'
        adminurl='http://{{ CONTROLLER_HOST_ADDRESS }}:8776/v2/%(tenant_id)s'
        region='regionOne'
        token={{ KEYSTONE_TEMPORARY_ADMIN_TOKEN }}

  - postgresql_user: name={{ CINDER_DB_USER }}
    sudo: yes
    sudo_user: cinder
  - postgresql_db: name=cinder owner={{ CINDER_DB_USER }}
    sudo: yes
    sudo_user: cinder

  - cinder_manage: action=dbsync
    sudo: yes
    sudo_user: cinder

  - name: Enable and start openstack-cinder services
    service: name={{ item }} enabled=yes state=started
    with_items:
    - openstack-cinder-api
    - openstack-cinder-scheduler
    - openstack-cinder-volume
    - openstack-cinder-backup

  - lvg: vg=cinder-volumes pvs={{ CINDER_DEVICE }}