diff --git a/nailgun/nailgun/fixtures/openstack.yaml b/nailgun/nailgun/fixtures/openstack.yaml index 78fe99973f..ac8dde3e57 100644 --- a/nailgun/nailgun/fixtures/openstack.yaml +++ b/nailgun/nailgun/fixtures/openstack.yaml @@ -1084,6 +1084,19 @@ description: "Enables adaptation of granular tasks for task deployment." weight: 12 type: "checkbox" + security_groups: + value: "iptables_hybrid" + values: + - data: "openvswitch" + label: "Open vSwitch Firewall Driver" + description: "Choose this type of firewall driver if you use OVS Bridges for networking needs." + - data: "iptables_hybrid" + label: "Iptables-based Firewall Driver" + description: "Choose this type of firewall driver if you use Linux Bridges for networking needs." + label: "Security Groups" + group: "security" + weight: 20 + type: "radio" public_network_assignment: metadata: diff --git a/nailgun/nailgun/statistics/fuel_statistics/installation_info.py b/nailgun/nailgun/statistics/fuel_statistics/installation_info.py index 18930d6e75..355099ca44 100644 --- a/nailgun/nailgun/statistics/fuel_statistics/installation_info.py +++ b/nailgun/nailgun/statistics/fuel_statistics/installation_info.py @@ -54,6 +54,8 @@ class InstallationInfo(object): 'task_deploy', None), WhiteListRule(('common', 'propagate_task_deploy', 'value'), 'propagate_task_deploy', None), + WhiteListRule(('common', 'security_groups', 'value'), + 'security_groups', None), WhiteListRule(('corosync', 'verified', 'value'), 'corosync_verified', None), diff --git a/nailgun/nailgun/statistics/fuel_statistics/tasks_params_white_lists.py b/nailgun/nailgun/statistics/fuel_statistics/tasks_params_white_lists.py index ccd27ee1c5..0cdd40040c 100644 --- a/nailgun/nailgun/statistics/fuel_statistics/tasks_params_white_lists.py +++ b/nailgun/nailgun/statistics/fuel_statistics/tasks_params_white_lists.py @@ -213,7 +213,8 @@ _task_output_white_list_template = { }, "debug": "", "deployment_id": "", - "openstack_version_prev": "" + "openstack_version_prev": "", + "security_groups": "" }, "pre_deployment": { "*": {}