blob: 1b3a91991d804b0eaac145456038d9190c691fac [file] [log] [blame]
ibumarskov95a8e2c2018-04-25 15:24:36 +04001classes:
2- system.linux.system.lowmem
3- system.linux.storage.loopback
Pavel Glazovc496d402018-10-25 16:03:10 +04004- system.linux.system.repo.mcp.apt_mirantis.glusterfs
ibumarskov95a8e2c2018-04-25 15:24:36 +04005- system.linux.system.repo.mcp.apt_mirantis.openstack
6- system.linux.system.repo.mcp.extra
Martin Polreich47393e42018-08-07 10:57:41 +02007- system.linux.system.repo.mcp.apt_mirantis.saltstack
ibumarskov95a8e2c2018-04-25 15:24:36 +04008- system.memcached.server.single
9- system.rabbitmq.server.cluster
10- system.rabbitmq.server.vhost.openstack
11- system.keystone.server.wsgi
12- system.keystone.server.cluster
13- system.glusterfs.client.cluster
14- system.glusterfs.client.volume.glance
ibumarskov95a8e2c2018-04-25 15:24:36 +040015- system.glusterfs.server.volume.glance
ibumarskov95a8e2c2018-04-25 15:24:36 +040016- system.glusterfs.server.cluster
17- system.glance.control.cluster
18- system.heka.ceilometer_collector.single
19- system.nova.control.cluster
20- system.neutron.control.openvswitch.cluster
21- system.cinder.control.cluster
22- system.cinder.control.backend.lvm
23- system.cinder.volume.single
24- system.cinder.volume.backend.lvm
25- system.heat.server.cluster
26- system.designate.server.cluster
27- system.designate.server.backend.bind
28- system.bind.server.single
29- system.galera.server.cluster
30- system.galera.server.database.ceilometer
31- system.galera.server.database.cinder
32- system.galera.server.database.glance
33- system.galera.server.database.grafana
34- system.galera.server.database.heat
35- system.galera.server.database.keystone
36- system.galera.server.database.nova
Dennis Dmitrievbb37f132018-10-30 12:16:11 +020037- system.galera.server.database.neutron
ibumarskov95a8e2c2018-04-25 15:24:36 +040038- system.galera.server.database.designate
39- cluster.virtual-mcp-mitaka-ovs-trusty
40
41parameters:
42 _param:
ibumarskov100f95e2018-05-21 09:46:33 +040043 keepalived_vip_interface: eth1
Pavel Glazovc496d402018-10-25 16:03:10 +040044 linux_system_repo_mcp_glusterfs_version_number: "3.10"
ibumarskov95a8e2c2018-04-25 15:24:36 +040045 linux:
46 system:
47 package:
48 python-msgpack:
49 version: latest
50 network:
51 interface:
ibumarskov100f95e2018-05-21 09:46:33 +040052 eth1:
ibumarskov95a8e2c2018-04-25 15:24:36 +040053 enabled: true
54 type: eth
55 proto: static
56 address: ${_param:single_address}
57 netmask: 255.255.255.0
58 keepalived:
59 cluster:
60 instance:
61 VIP:
62 virtual_router_id: 150
63 keystone:
64 server:
65 admin_email: ${_param:admin_email}
66 notification:
67 driver: messagingv2
68 topics: "notifications,${_param:stacklight_notification_topic}"
69 glance:
70 server:
71 storage:
72 engine: file
73 images: []
74 workers: 1
75 notification:
76 driver: messagingv2
77 topics: "notifications,${_param:stacklight_notification_topic}"
78 heat:
79 server:
80 notification:
81 driver: messagingv2
82 topics: "notifications,${_param:stacklight_notification_topic}"
83 neutron:
84 server:
85 notification:
86 driver: messagingv2
87 topics: "notifications,${_param:stacklight_notification_topic}"
88 nova:
89 controller:
90 networking: dvr
91 cpu_allocation: 54
92 metadata:
93 password: ${_param:metadata_password}
94 bind:
95 private_address: ${_param:cluster_local_address}
96 public_address: ${_param:cluster_vip_address}
97 novncproxy_port: 6080
98 vncproxy_url: http://${_param:cluster_vip_address}:6080
99 workers: 1
100 notification:
101 driver: messagingv2
102 topics: "notifications,${_param:stacklight_notification_topic}"
103 cinder:
104 volume:
105 notification:
106 driver: messagingv2
107 topics: "notifications,${_param:stacklight_notification_topic}"
108 controller:
109 notification:
110 driver: messagingv2
111 topics: "notifications,${_param:stacklight_notification_topic}"
112 bind:
113 server:
114 control:
115 mgmt:
116 enabled: true
117 bind:
118 address: ${_param:single_address}
119 port: 953
120 allow:
121 - ${_param:openstack_control_node01_address}
122 - ${_param:openstack_control_node02_address}
123 - ${_param:openstack_control_node03_address}
124 keys:
125 - designate
126 designate:
127 server:
128 pools:
129 default:
130 description: 'test pool'
131 targets:
132 default:
133 description: 'test target1'
134 default1:
135 type: ${_param:designate_pool_target_type}
136 description: 'test target2'
137 masters: ${_param:designate_pool_target_masters}
138 options:
139 host: ${_param:openstack_control_node02_address}
140 port: 53
141 rndc_host: ${_param:openstack_control_node02_address}
142 rndc_port: 953
143 rndc_key_file: /etc/designate/rndc.key
144 default2:
145 type: ${_param:designate_pool_target_type}
146 description: 'test target3'
147 masters: ${_param:designate_pool_target_masters}
148 options:
149 host: ${_param:openstack_control_node03_address}
150 port: 53
151 rndc_host: ${_param:openstack_control_node03_address}
152 rndc_port: 953
153 rndc_key_file: /etc/designate/rndc.key
154 quota:
155 zones: ${_param:designate_quota_zones}
156 worker:
sgudze1889802018-10-09 12:36:17 +0300157 enabled: ${_param:designate_worker_enabled}