-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add core-ceph-local-ovn-dvr-ironic-mt
Related-Prod: PRODX-48619 Change-Id: I7e93ea314dccc94e5e2ad9c702220c4440fc2162
- Loading branch information
Showing
1 changed file
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
apiVersion: lcm.mirantis.com/v1alpha1 | ||
kind: OpenStackDeployment | ||
metadata: | ||
name: osh-dev | ||
namespace: openstack | ||
labels: {} | ||
annotations: {} | ||
spec: | ||
openstack_version: caracal | ||
preset: compute | ||
size: tiny | ||
internal_domain_name: cluster.local | ||
public_domain_name: it.just.works | ||
features: | ||
services: | ||
- baremetal | ||
- cloudprober | ||
ssl: | ||
public_endpoints: | ||
api_cert: |- | ||
# Update server certificate content | ||
api_key: |- | ||
# Update server private key content | ||
ca_cert: |- | ||
# Update CA certificate content | ||
neutron: | ||
backend: ml2/ovn | ||
dvr: | ||
enabled: true | ||
tunnel_interface: ens3 | ||
tenant_network_types: | ||
- vlan | ||
- geneve | ||
external_networks: | ||
- physnet: physnet1 | ||
interface: veth-phy | ||
bridge: br-ex | ||
network_types: | ||
- flat | ||
vlan_ranges: null | ||
mtu: null | ||
- physnet: ironic | ||
interface: veth-bm | ||
bridge: ironic-pxe | ||
network_types: | ||
- vlan | ||
vlan_ranges: 1000:1099 | ||
floating_network: | ||
enabled: True | ||
physnet: physnet1 | ||
subnet: | ||
range: 10.11.12.0/24 | ||
pool_start: 10.11.12.100 | ||
pool_end: 10.11.12.200 | ||
gateway: 10.11.12.11 | ||
ironic: | ||
provisioning_interface: pxe.1000 | ||
baremetal_network_name: ironic-provisioning | ||
networks: | ||
baremetal: | ||
physnet: ironic | ||
name: ironic-provisioning | ||
network_type: vlan | ||
segmentation_id: 1000 | ||
external: true | ||
shared: false | ||
subnets: | ||
- name: baremetal-subnet | ||
range: 10.13.0.0/24 | ||
pool_start: 10.13.0.100 | ||
pool_end: 10.13.0.254 | ||
gateway: 10.13.0.11 | ||
nova: | ||
console: | ||
spice: | ||
enabled: true | ||
novnc: | ||
tls: | ||
enabled: true | ||
live_migration_interface: ens3 | ||
libvirt: | ||
tls: | ||
enabled: true | ||
images: | ||
backend: local | ||
messaging: | ||
notifications: | ||
external: | ||
enabled: true | ||
topics: | ||
- external-consumer-A | ||
# TODO(vsaienko): enable when 34580 is fixed | ||
# - external-consumer-b | ||
- ec-a | ||
- ec-A | ||
# enabled services and their specific configuration | ||
services: | ||
networking: | ||
neutron: | ||
values: | ||
conf: | ||
neutron: | ||
DEFAULT: | ||
global_physnet_mtu: 1480 | ||
orchestration: | ||
heat: | ||
values: | ||
conf: | ||
heat: | ||
clients_heat: | ||
insecure: true |