Add more configurable options
- added configurable option for disabling autocomplete in horizon forms [security request]
- added configurable option for disabling port verification [horizon crushes when you have no ports attached to some VM in project and try to associate a floating ip to another VM in this project via UI]
diff --git a/tests/pillar/cluster.sls b/tests/pillar/cluster.sls
index 61a80d2..8a5c582 100644
--- a/tests/pillar/cluster.sls
+++ b/tests/pillar/cluster.sls
@@ -32,6 +32,11 @@
websso_choices:
- saml2
- oidc
+ horizon_config:
+ password_autocomplete: off
+ openstack_neutron_network:
+ enable_fip_topology_check: False
+
haproxy:
proxy:
listens:
diff --git a/tests/pillar/single.sls b/tests/pillar/single.sls
index bbb2360..9352c62 100644
--- a/tests/pillar/single.sls
+++ b/tests/pillar/single.sls
@@ -30,3 +30,7 @@
websso_choices:
- saml2
- oidc
+ horizon_config:
+ password_autocomplete: off
+ openstack_neutron_network:
+ enable_fip_topology_check: False
\ No newline at end of file