Skip to content

Commit

Permalink
disable fields not relevant to baremetal
Browse files Browse the repository at this point in the history
  • Loading branch information
msherman64 committed Sep 24, 2024
1 parent b3a8017 commit e9e59ae
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion kolla/node_custom_config/horizon/custom_local_settings
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,11 @@ LAUNCH_INSTANCE_DEFAULTS = {
'disable_volume': True,
'disable_volume_snapshot': True,
'create_volume': False,
'enable_metadata': False,
'enable_net_ports': True,
'enable_secgroups': False,
'enable_servergroups': False,
'default_flavor_name': 'baremetal',
}

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

# necessary to embed serial console in iframe
# Django3.0 changed the default from 'SAMEORIGIN' to 'DENY'
X_FRAME_OPTIONS = 'SAMEORIGIN'
X_FRAME_OPTIONS = 'SAMEORIGIN'

# disable usage report on overview page
OPENSTACK_USE_SIMPLE_TENANT_USAGE = False

0 comments on commit e9e59ae

Please sign in to comment.