File: run.yml

package info (click to toggle)
python-openstacksdk 4.7.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,904 kB
  • sloc: python: 127,036; sh: 153; makefile: 23
file content (26 lines) | stat: -rw-r--r-- 915 bytes parent folder | download | duplicates (7)
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
---
- hosts: localhost
  connection: local
  gather_facts: true

  roles:
    - { role: auth, tags: auth }
    - { role: client_config, tags: client_config }
    - { role: group, tags: group }
    # TODO(mordred) Reenable this once the fixed os_image winds up in an
    # upstream ansible release.
    # - { role: image, tags: image }
    - { role: keypair, tags: keypair }
    - { role: keystone_domain, tags: keystone_domain }
    - { role: keystone_role, tags: keystone_role }
    - { role: network, tags: network }
    - { role: nova_flavor, tags: nova_flavor }
    - { role: object, tags: object }
    - { role: port, tags: port }
    - { role: router, tags: router }
    - { role: security_group, tags: security_group }
    - { role: server, tags: server }
    - { role: subnet, tags: subnet }
    - { role: user, tags: user }
    - { role: user_group, tags: user_group }
    - { role: volume, tags: volume }