Skip to content

Commit 85ea20f

Browse files
authored
Merge pull request #677 from rackerlabs/horizon-launch-settings
feat(horizon): Set default instance launch settings to include config drive
2 parents abc7362 + 7bba1ac commit 85ea20f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

components/horizon/values.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,24 @@ conf:
1313
session_cookie_httponly: "True"
1414
allowed_hosts:
1515
- '*'
16+
local_settings_d:
17+
# Set default options when creating a server from the
18+
# horizon UI for a more friendly and efficient user experience.
19+
# https://docs.openstack.org/horizon/latest/configuration/settings.html#launch-instance-defaults
20+
_40_launch_instance_settings: |
21+
LAUNCH_INSTANCE_DEFAULTS = {
22+
"config_drive": True,
23+
"create_volume": False,
24+
"hide_create_volume": False,
25+
"disable_image": False,
26+
"disable_instance_snapshot": False,
27+
"disable_volume": False,
28+
"disable_volume_snapshot": False,
29+
"enable_scheduler_hints": True,
30+
"enable_metadata": True,
31+
"enable_net_ports": True,
32+
"default_availability_zone": "Any",
33+
}
1634
1735
endpoints:
1836
dashboard:

0 commit comments

Comments
 (0)