Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wip/update horizon antelope #305

Merged
merged 2 commits into from
Sep 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion kolla/node_custom_config/horizon/custom_local_settings
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@ USER_MENU_LINKS = [
'url': 'horizon:project:api_access:openrc',
'external': False,
},
{
'name': _('OpenStack clouds.yaml File'),
'icon_classes': ['fa-download', ],
'url': 'horizon:project:api_access:clouds.yaml',
},
]

{% if enable_blazar | bool %}
Expand Down Expand Up @@ -147,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 @@ -180,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
Loading