cb16f959b7
For some services it may be desirable to have instances using cinder volumes, this change allows to define that in the infra_config.yml inventory and the provision_infra_servers will create them. A follow-up patch will attach the volumes defined on each instance. Change-Id: I28d187569655fbbc45cec0bce771ce8adab1f4dd
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
---
|
|
os_client_config_cloud: envvars
|
|
system_config_repo_url: git@your_git_server/system-config.git
|
|
key_name: your_openstack_key
|
|
domainname: yourdomain
|
|
infra_servers:
|
|
- name: puppetmaster
|
|
image: 9d25fe2d-cf31-4b05-8c58-f238ec78e633
|
|
flavor: standard.small
|
|
net_name: your_neutron_network
|
|
security_groups: default
|
|
infra_type: puppetmaster
|
|
- name: zuul
|
|
image: 9d25fe2d-cf31-4b05-8c58-f238ec78e633
|
|
flavor: standard.small
|
|
net_name: your_neutron_network
|
|
security_groups: default
|
|
infra_type: zuul
|
|
- name: jenkins
|
|
image: 9d25fe2d-cf31-4b05-8c58-f238ec78e633
|
|
flavor: standard.medium
|
|
net_name: your_neutron_network
|
|
security_groups: "default,webserver"
|
|
infra_type: jenkins
|
|
- name: gerrit
|
|
image: 9d25fe2d-cf31-4b05-8c58-f238ec78e633
|
|
flavor: standard.large
|
|
net_name: your_neutron_network
|
|
security_groups: "default,webserver"
|
|
infra_type: gerrit
|
|
volumes:
|
|
- name: gerrit_volume
|
|
size: 40
|
|
- name: gerrit_volume2
|
|
size: 60
|
|
- name: nodepool
|
|
image: 9d25fe2d-cf31-4b05-8c58-f238ec78e633
|
|
flavor: standard.small
|
|
net_name: your_neutron_network
|
|
security_groups: default
|
|
infra_type: nodepool
|