Skip to content
Snippets Groups Projects
Select Git revision
2 results Searching

create-instances.yaml

Blame
  • create-instances.yaml 564 B
    - hosts: localhost
      vars_files:
        - host_vars/nectar.yaml
      gather_facts: true
    
      roles:
        - role: openstack-common
        - role: openstack-volume
        - role: openstack-security-group
        - role: cluster-security-group
        - role: openstack-instance
    
    - hosts: instances
      vars_files:
        - host_vars/docker.yaml
      gather_facts: true
    
      roles:
        - role: openstack-proxy
        - role: all-dependencies
        - role: all-mount
        - role: all-docker
    
    - hosts: web
      vars_files:
        - host_vars/react.yaml
      gather_facts: true
    
      roles:
        - role: react-build