blob: 7ecd08d09943f6a77972d67650de595e3516608b [file] [log] [blame]
Mohammed Naserb7b97d62022-03-12 16:30:00 -05001# Copyright (c) 2022 VEXXHOST, Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
Mohammed Naser2145fc32023-01-29 23:23:03 +000015_nova_helm_values:
Mohammed Naserb7b97d62022-03-12 16:30:00 -050016 endpoints: "{{ openstack_helm_endpoints }}"
17 labels:
18 agent:
19 compute_ironic:
20 node_selector_key: openstack-control-plane
21 node_selector_value: enabled
22 images:
Michiel Piscaer60d09f92023-01-20 18:58:55 +010023 tags: "{{ atmosphere_images | vexxhost.atmosphere.openstack_helm_image_tags('nova') }}"
Mohammed Naser01338322022-03-22 14:51:31 -040024 network:
25 ssh:
26 enabled: true
27 public_key: "{{ _nova_ssh_publickey.public_key }}"
Mohammed Naser2145fc32023-01-29 23:23:03 +000028 private_key: "{{ nova_ssh_key }}"
Mohammed Naserb7b97d62022-03-12 16:30:00 -050029 bootstrap:
30 structured:
31 flavors:
32 enabled: false
33 pod:
34 replicas:
35 api_metadata: 3
36 osapi: 3
37 conductor: 3
38 scheduler: 3
39 novncproxy: 3
40 spiceproxy: 3
41 conf:
Mohammed Naser92f11502022-08-10 17:24:32 -040042 ceph:
43 enabled: "{{ atmosphere_ceph_enabled | default(true) | bool }}"
Mohammed Naserb7b97d62022-03-12 16:30:00 -050044 nova:
45 DEFAULT:
okozachenko7cda09a2022-04-07 23:25:03 +100046 allow_resize_to_same_host: true
Mohammed Naserb7b97d62022-03-12 16:30:00 -050047 cpu_allocation_ratio: 4.5
48 ram_allocation_ratio: 0.9
49 disk_allocation_ratio: 3.0
50 resume_guests_state_on_host_boot: true
51 osapi_compute_workers: 8
52 metadata_workers: 8
ricolin61202492023-06-01 12:38:10 +080053 barbican:
54 barbican_endpoint_type: internal
Mohammed Naserb7b97d62022-03-12 16:30:00 -050055 cache:
56 backend: oslo_cache.memcache_pool
57 cinder:
58 catalog_info: volumev3::internalURL
59 conductor:
60 workers: 8
guilhermesteinmuller72a48af2022-05-06 12:29:11 -030061 compute:
62 consecutive_build_service_disable_threshold: 0
Mohammed Naserb7b97d62022-03-12 16:30:00 -050063 cors:
64 allowed_origin: "*"
65 allow_headers: "X-Auth-Token,X-OpenStack-Nova-API-Version"
66 filter_scheduler:
Mohammed Naser511c3fa2022-03-17 17:54:10 -040067 enabled_filters:
Mohammed Naserf8384592022-08-19 09:34:39 -040068 AvailabilityZoneFilter,
Mohammed Naser511c3fa2022-03-17 17:54:10 -040069 ComputeFilter,
70 AggregateTypeAffinityFilter,
71 ComputeCapabilitiesFilter,
72 PciPassthroughFilter,
73 ImagePropertiesFilter,
74 ServerGroupAntiAffinityFilter,
75 ServerGroupAffinityFilter
Mohammed Naserb7b97d62022-03-12 16:30:00 -050076 image_properties_default_architecture: x86_64
77 max_instances_per_host: 200
78 glance:
79 enable_rbd_download: true
Oleksandr Kozachenko72f64dc2023-05-12 16:54:10 +020080 keystone_authtoken:
81 # NOTE(okozachenko1203): We can remove it once the following is merged:
82 # https://review.opendev.org/883066
83 service_type: compute
Mohammed Naserb7b97d62022-03-12 16:30:00 -050084 neutron:
85 metadata_proxy_shared_secret: "{{ openstack_helm_endpoints['compute_metadata']['secret'] }}"
ricolin2d8dd482022-07-07 06:55:02 +080086 oslo_messaging_notifications:
87 driver: noop
Mohammed Naserb7b97d62022-03-12 16:30:00 -050088 scheduler:
89 workers: 8
90 nova_ironic:
91 DEFAULT:
92 log_config_append: null
93 force_config_drive: true
94 manifests:
95 deployment_consoleauth: false
96 deployment_placement: false
97 ingress_metadata: false
98 ingress_novncproxy: false
99 ingress_osapi: false
100 ingress_placement: false
101 job_db_init_placement: false
102 job_ks_placement_endpoints: false
103 job_ks_placement_service: false
104 job_ks_placement_user: false
105 secret_keystone_placement: false
106 service_ingress_metadata: false
107 service_ingress_novncproxy: false
108 service_ingress_osapi: false
109 service_ingress_placement: false
110 service_placement: false
Mohammed Nasera5239662022-05-28 18:08:12 +0200111 # NOTE(mnaser): Enable this once we've got Ironic deployed.
112 statefulset_compute_ironic: false