Skip to content

Commit 1f5af0a

Browse files
committed
disable fields not relevant to baremetal
1 parent f7257f5 commit 1f5af0a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

kolla/node_custom_config/horizon/custom_local_settings

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,11 @@ LAUNCH_INSTANCE_DEFAULTS = {
152152
'disable_volume': True,
153153
'disable_volume_snapshot': True,
154154
'create_volume': False,
155+
'enable_metadata': False,
156+
'enable_net_ports': True,
157+
'enable_secgroups': False,
158+
'enable_servergroups': False,
159+
'default_flavor_name': 'baremetal',
155160
}
156161

157162
# The OPENSTACK_IMAGE_BACKEND settings can be used to customize features
@@ -185,4 +190,7 @@ OPENSTACK_MANILA_FEATURES = {
185190

186191
# necessary to embed serial console in iframe
187192
# Django3.0 changed the default from 'SAMEORIGIN' to 'DENY'
188-
X_FRAME_OPTIONS = 'SAMEORIGIN'
193+
X_FRAME_OPTIONS = 'SAMEORIGIN'
194+
195+
# disable usage report on overview page
196+
OPENSTACK_USE_SIMPLE_TENANT_USAGE = False

0 commit comments

Comments
 (0)