Skip to content
Snippets Groups Projects
Commit 322e2883 authored by LinPeiWen's avatar LinPeiWen
Browse files

Performance: site.yml remove redundant 'when'

Facts define the group key to judge in incloud roles,
remove when statement does not execute to speed up execution

Partially-Implements: blueprint performance-improvements
Change-Id: If22255f1adc07ab16b46f8ad1280efdf7d713d28
parent 756792e5
No related branches found
No related tags found
No related merge requests found
...@@ -111,8 +111,7 @@ ...@@ -111,8 +111,7 @@
- keepalived - keepalived
- loadbalancer - loadbalancer
roles: roles:
- { role: loadbalancer, - { role: loadbalancer }
when: enable_loadbalancer | bool }
tasks: tasks:
- block: - block:
- include_role: - include_role:
...@@ -358,8 +357,7 @@ ...@@ -358,8 +357,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: collectd, - { role: collectd,
tags: collectd, tags: collectd }
when: enable_collectd | bool }
- name: Apply role zookeeper - name: Apply role zookeeper
gather_facts: false gather_facts: false
...@@ -369,8 +367,7 @@ ...@@ -369,8 +367,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: zookeeper, - { role: zookeeper,
tags: zookeeper, tags: zookeeper }
when: enable_zookeeper | bool }
- name: Apply role influxdb - name: Apply role influxdb
gather_facts: false gather_facts: false
...@@ -380,8 +377,7 @@ ...@@ -380,8 +377,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: influxdb, - { role: influxdb,
tags: influxdb, tags: influxdb }
when: enable_influxdb | bool }
- name: Apply role telegraf - name: Apply role telegraf
gather_facts: false gather_facts: false
...@@ -391,8 +387,7 @@ ...@@ -391,8 +387,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: telegraf, - { role: telegraf,
tags: telegraf, tags: telegraf }
when: enable_telegraf | bool }
- name: Apply role redis - name: Apply role redis
gather_facts: false gather_facts: false
...@@ -402,8 +397,7 @@ ...@@ -402,8 +397,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: redis, - { role: redis,
tags: redis, tags: redis }
when: enable_redis | bool }
- name: Apply role mariadb - name: Apply role mariadb
gather_facts: false gather_facts: false
...@@ -412,8 +406,7 @@ ...@@ -412,8 +406,7 @@
- '&enable_mariadb_True' - '&enable_mariadb_True'
roles: roles:
- { role: mariadb, - { role: mariadb,
tags: mariadb, tags: mariadb }
when: enable_mariadb | bool }
- name: Apply role memcached - name: Apply role memcached
gather_facts: false gather_facts: false
...@@ -423,8 +416,7 @@ ...@@ -423,8 +416,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: memcached, - { role: memcached,
tags: [memcache, memcached], tags: [memcache, memcached] }
when: enable_memcached | bool }
- name: Apply role prometheus - name: Apply role prometheus
gather_facts: false gather_facts: false
...@@ -444,8 +436,7 @@ ...@@ -444,8 +436,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: prometheus, - { role: prometheus,
tags: prometheus, tags: prometheus }
when: enable_prometheus | bool }
- name: Apply role iscsi - name: Apply role iscsi
gather_facts: false gather_facts: false
...@@ -456,8 +447,7 @@ ...@@ -456,8 +447,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: iscsi, - { role: iscsi,
tags: iscsi, tags: iscsi }
when: enable_iscsid | bool }
- name: Apply role multipathd - name: Apply role multipathd
gather_facts: false gather_facts: false
...@@ -467,8 +457,7 @@ ...@@ -467,8 +457,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: multipathd, - { role: multipathd,
tags: multipathd, tags: multipathd }
when: enable_multipathd | bool }
- name: Apply role rabbitmq - name: Apply role rabbitmq
gather_facts: false gather_facts: false
...@@ -488,8 +477,7 @@ ...@@ -488,8 +477,7 @@
role_rabbitmq_password: '{{ rabbitmq_password }}', role_rabbitmq_password: '{{ rabbitmq_password }}',
role_rabbitmq_port: '{{ rabbitmq_port }}', role_rabbitmq_port: '{{ rabbitmq_port }}',
role_rabbitmq_prometheus_port: '{{ rabbitmq_prometheus_port }}', role_rabbitmq_prometheus_port: '{{ rabbitmq_prometheus_port }}',
role_rabbitmq_user: '{{ rabbitmq_user }}', role_rabbitmq_user: '{{ rabbitmq_user }}' }
when: enable_rabbitmq | bool }
- name: Apply role rabbitmq (outward) - name: Apply role rabbitmq (outward)
gather_facts: false gather_facts: false
...@@ -508,8 +496,7 @@ ...@@ -508,8 +496,7 @@
role_rabbitmq_password: '{{ outward_rabbitmq_password }}', role_rabbitmq_password: '{{ outward_rabbitmq_password }}',
role_rabbitmq_port: '{{ outward_rabbitmq_port }}', role_rabbitmq_port: '{{ outward_rabbitmq_port }}',
role_rabbitmq_prometheus_port: '{{ outward_rabbitmq_prometheus_port }}', role_rabbitmq_prometheus_port: '{{ outward_rabbitmq_prometheus_port }}',
role_rabbitmq_user: '{{ outward_rabbitmq_user }}', role_rabbitmq_user: '{{ outward_rabbitmq_user }}' }
when: enable_outward_rabbitmq | bool }
- name: Apply role etcd - name: Apply role etcd
gather_facts: false gather_facts: false
...@@ -519,8 +506,7 @@ ...@@ -519,8 +506,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: etcd, - { role: etcd,
tags: etcd, tags: etcd }
when: enable_etcd | bool }
- name: Apply role keystone - name: Apply role keystone
gather_facts: false gather_facts: false
...@@ -530,8 +516,7 @@ ...@@ -530,8 +516,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: keystone, - { role: keystone,
tags: keystone, tags: keystone }
when: enable_keystone | bool }
- name: Apply role elasticsearch - name: Apply role elasticsearch
gather_facts: false gather_facts: false
...@@ -541,8 +526,7 @@ ...@@ -541,8 +526,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: elasticsearch, - { role: elasticsearch,
tags: elasticsearch, tags: elasticsearch }
when: enable_elasticsearch | bool }
- name: Apply role kibana - name: Apply role kibana
gather_facts: false gather_facts: false
...@@ -552,8 +536,7 @@ ...@@ -552,8 +536,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: kibana, - { role: kibana,
tags: kibana, tags: kibana }
when: enable_kibana | bool }
- name: Apply role kafka - name: Apply role kafka
gather_facts: false gather_facts: false
...@@ -563,8 +546,7 @@ ...@@ -563,8 +546,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: kafka, - { role: kafka,
tags: kafka, tags: kafka }
when: enable_kafka | bool }
- name: Apply role storm - name: Apply role storm
gather_facts: false gather_facts: false
...@@ -575,8 +557,7 @@ ...@@ -575,8 +557,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: storm, - { role: storm,
tags: storm, tags: storm }
when: enable_storm | bool }
- name: Apply role swift - name: Apply role swift
gather_facts: false gather_facts: false
...@@ -589,8 +570,7 @@ ...@@ -589,8 +570,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: swift, - { role: swift,
tags: swift, tags: swift }
when: enable_swift | bool }
- name: Apply role ceph-rgw - name: Apply role ceph-rgw
gather_facts: false gather_facts: false
...@@ -602,8 +582,7 @@ ...@@ -602,8 +582,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: ceph-rgw, - { role: ceph-rgw,
tags: ceph-rgw, tags: ceph-rgw }
when: enable_ceph_rgw | bool }
- name: Apply role glance - name: Apply role glance
gather_facts: false gather_facts: false
...@@ -613,8 +592,7 @@ ...@@ -613,8 +592,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: glance, - { role: glance,
tags: glance, tags: glance }
when: enable_glance | bool }
- name: Apply role ironic - name: Apply role ironic
gather_facts: false gather_facts: false
...@@ -628,8 +606,7 @@ ...@@ -628,8 +606,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: ironic, - { role: ironic,
tags: ironic, tags: ironic }
when: enable_ironic | bool }
- name: Apply role cinder - name: Apply role cinder
gather_facts: false gather_facts: false
...@@ -642,8 +619,7 @@ ...@@ -642,8 +619,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: cinder, - { role: cinder,
tags: cinder, tags: cinder }
when: enable_cinder | bool }
- name: Apply role placement - name: Apply role placement
gather_facts: false gather_facts: false
...@@ -653,8 +629,7 @@ ...@@ -653,8 +629,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: placement, - { role: placement,
tags: placement, tags: placement }
when: enable_placement | bool }
# Nova deployment is more complicated than other services, so is covered in its # Nova deployment is more complicated than other services, so is covered in its
# own playbook. # own playbook.
...@@ -693,8 +668,7 @@ ...@@ -693,8 +668,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: ovn, - { role: ovn,
tags: ovn, tags: ovn }
when: enable_ovn | bool }
- name: Apply role neutron - name: Apply role neutron
gather_facts: false gather_facts: false
...@@ -714,8 +688,7 @@ ...@@ -714,8 +688,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: neutron, - { role: neutron,
tags: neutron, tags: neutron }
when: enable_neutron | bool }
- name: Apply role kuryr - name: Apply role kuryr
gather_facts: false gather_facts: false
...@@ -725,8 +698,7 @@ ...@@ -725,8 +698,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: kuryr, - { role: kuryr,
tags: kuryr, tags: kuryr }
when: enable_kuryr | bool }
- name: Apply role hacluster - name: Apply role hacluster
gather_facts: false gather_facts: false
...@@ -737,8 +709,7 @@ ...@@ -737,8 +709,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: hacluster, - { role: hacluster,
tags: hacluster, tags: hacluster }
when: enable_hacluster | bool }
- name: Apply role heat - name: Apply role heat
gather_facts: false gather_facts: false
...@@ -750,8 +721,7 @@ ...@@ -750,8 +721,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: heat, - { role: heat,
tags: heat, tags: heat }
when: enable_heat | bool }
- name: Apply role horizon - name: Apply role horizon
gather_facts: false gather_facts: false
...@@ -761,8 +731,7 @@ ...@@ -761,8 +731,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: horizon, - { role: horizon,
tags: horizon, tags: horizon }
when: enable_horizon | bool }
- name: Apply role murano - name: Apply role murano
gather_facts: false gather_facts: false
...@@ -773,8 +742,7 @@ ...@@ -773,8 +742,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: murano, - { role: murano,
tags: murano, tags: murano }
when: enable_murano | bool }
- name: Apply role solum - name: Apply role solum
gather_facts: false gather_facts: false
...@@ -789,8 +757,7 @@ ...@@ -789,8 +757,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: solum, - { role: solum,
tags: solum, tags: solum }
when: enable_solum | bool }
- name: Apply role magnum - name: Apply role magnum
gather_facts: false gather_facts: false
...@@ -801,8 +768,7 @@ ...@@ -801,8 +768,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: magnum, - { role: magnum,
tags: magnum, tags: magnum }
when: enable_magnum | bool }
- name: Apply role mistral - name: Apply role mistral
gather_facts: false gather_facts: false
...@@ -815,8 +781,7 @@ ...@@ -815,8 +781,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: mistral, - { role: mistral,
tags: mistral, tags: mistral }
when: enable_mistral | bool }
- name: Apply role sahara - name: Apply role sahara
gather_facts: false gather_facts: false
...@@ -827,8 +792,7 @@ ...@@ -827,8 +792,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: sahara, - { role: sahara,
tags: sahara, tags: sahara }
when: enable_sahara | bool }
- name: Apply role manila - name: Apply role manila
gather_facts: false gather_facts: false
...@@ -841,8 +805,7 @@ ...@@ -841,8 +805,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: manila, - { role: manila,
tags: manila, tags: manila }
when: enable_manila | bool }
- name: Apply role gnocchi - name: Apply role gnocchi
gather_facts: false gather_facts: false
...@@ -854,8 +817,7 @@ ...@@ -854,8 +817,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: gnocchi, - { role: gnocchi,
tags: gnocchi, tags: gnocchi }
when: enable_gnocchi | bool }
- name: Apply role ceilometer - name: Apply role ceilometer
gather_facts: false gather_facts: false
...@@ -868,8 +830,7 @@ ...@@ -868,8 +830,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: ceilometer, - { role: ceilometer,
tags: ceilometer, tags: ceilometer }
when: enable_ceilometer | bool }
- name: Apply role monasca - name: Apply role monasca
gather_facts: false gather_facts: false
...@@ -887,8 +848,7 @@ ...@@ -887,8 +848,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: monasca, - { role: monasca,
tags: monasca, tags: monasca }
when: enable_monasca | bool }
- name: Apply role aodh - name: Apply role aodh
gather_facts: false gather_facts: false
...@@ -901,8 +861,7 @@ ...@@ -901,8 +861,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: aodh, - { role: aodh,
tags: aodh, tags: aodh }
when: enable_aodh | bool }
- name: Apply role barbican - name: Apply role barbican
gather_facts: false gather_facts: false
...@@ -914,8 +873,7 @@ ...@@ -914,8 +873,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: barbican, - { role: barbican,
tags: barbican, tags: barbican }
when: enable_barbican | bool }
- name: Apply role cyborg - name: Apply role cyborg
gather_facts: false gather_facts: false
...@@ -927,8 +885,7 @@ ...@@ -927,8 +885,7 @@
serial: '{{ serial|default("0") }}' serial: '{{ serial|default("0") }}'
roles: roles:
- { role: cyborg, - { role: cyborg,
tags: cyborg, tags: cyborg }
when: enable_cyborg | bool }
- name: Apply role designate - name: Apply role designate
gather_facts: false gather_facts: false
...@@ -944,8 +901,7 @@ ...@@ -944,8 +901,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: designate, - { role: designate,
tags: designate, tags: designate }
when: enable_designate | bool }
- name: Apply role trove - name: Apply role trove
gather_facts: false gather_facts: false
...@@ -957,8 +913,7 @@ ...@@ -957,8 +913,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: trove, - { role: trove,
tags: trove, tags: trove }
when: enable_trove | bool }
- name: Apply role watcher - name: Apply role watcher
gather_facts: false gather_facts: false
...@@ -970,8 +925,7 @@ ...@@ -970,8 +925,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: watcher, - { role: watcher,
tags: watcher, tags: watcher }
when: enable_watcher | bool }
- name: Apply role grafana - name: Apply role grafana
gather_facts: false gather_facts: false
...@@ -981,8 +935,7 @@ ...@@ -981,8 +935,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: grafana, - { role: grafana,
tags: grafana, tags: grafana }
when: enable_grafana | bool }
- name: Apply role cloudkitty - name: Apply role cloudkitty
gather_facts: false gather_facts: false
...@@ -993,8 +946,7 @@ ...@@ -993,8 +946,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: cloudkitty, - { role: cloudkitty,
tags: cloudkitty, tags: cloudkitty }
when: enable_cloudkitty | bool }
- name: Apply role freezer - name: Apply role freezer
gather_facts: false gather_facts: false
...@@ -1005,8 +957,7 @@ ...@@ -1005,8 +957,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: freezer, - { role: freezer,
tags: freezer, tags: freezer }
when: enable_freezer | bool }
- name: Apply role senlin - name: Apply role senlin
gather_facts: false gather_facts: false
...@@ -1019,8 +970,7 @@ ...@@ -1019,8 +970,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: senlin, - { role: senlin,
tags: senlin, tags: senlin }
when: enable_senlin | bool }
- name: Apply role tacker - name: Apply role tacker
gather_facts: false gather_facts: false
...@@ -1031,8 +981,7 @@ ...@@ -1031,8 +981,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: tacker, - { role: tacker,
tags: tacker, tags: tacker }
when: enable_tacker | bool }
- name: Apply role octavia - name: Apply role octavia
gather_facts: false gather_facts: false
...@@ -1045,8 +994,7 @@ ...@@ -1045,8 +994,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: octavia, - { role: octavia,
tags: octavia, tags: octavia }
when: enable_octavia | bool }
- name: Apply role zun - name: Apply role zun
gather_facts: false gather_facts: false
...@@ -1059,8 +1007,7 @@ ...@@ -1059,8 +1007,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: zun, - { role: zun,
tags: zun, tags: zun }
when: enable_zun | bool }
- name: Apply role skydive - name: Apply role skydive
gather_facts: false gather_facts: false
...@@ -1071,8 +1018,7 @@ ...@@ -1071,8 +1018,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: skydive, - { role: skydive,
tags: skydive, tags: skydive }
when: enable_skydive | bool }
- name: Apply role vitrage - name: Apply role vitrage
gather_facts: false gather_facts: false
...@@ -1086,8 +1032,7 @@ ...@@ -1086,8 +1032,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: vitrage, - { role: vitrage,
tags: vitrage, tags: vitrage }
when: enable_vitrage | bool }
- name: Apply role blazar - name: Apply role blazar
gather_facts: false gather_facts: false
...@@ -1098,8 +1043,7 @@ ...@@ -1098,8 +1043,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: blazar, - { role: blazar,
tags: blazar, tags: blazar }
when: enable_blazar | bool }
- name: Apply role masakari - name: Apply role masakari
gather_facts: false gather_facts: false
...@@ -1112,8 +1056,7 @@ ...@@ -1112,8 +1056,7 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: masakari, - { role: masakari,
tags: masakari, tags: masakari }
when: enable_masakari | bool }
- name: Apply role venus - name: Apply role venus
gather_facts: false gather_facts: false
...@@ -1124,5 +1067,4 @@ ...@@ -1124,5 +1067,4 @@
serial: '{{ kolla_serial|default("0") }}' serial: '{{ kolla_serial|default("0") }}'
roles: roles:
- { role: venus, - { role: venus,
tags: venus, tags: venus }
when: enable_venus | bool }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment