resource "juju_application" "nova-compute" { name = "nova-compute" model = juju_model.cpe-focal.name charm { name = "nova-compute" channel = "ussuri/stable" } units = 8 placement = "${join(",",sort([ juju_machine.all_machines["1000"].machine_id, juju_machine.all_machines["1001"].machine_id, juju_machine.all_machines["1002"].machine_id, juju_machine.all_machines["1003"].machine_id, juju_machine.all_machines["1004"].machine_id, juju_machine.all_machines["1005"].machine_id, juju_machine.all_machines["1006"].machine_id, juju_machine.all_machines["1007"].machine_id, ]))}" config = { openstack-origin = var.openstack-origin enable-live-migration = "true" enable-resize = "true" migration-auth-type = "ssh" use-internal-endpoints = "true" libvirt-image-backend = "rbd" restrict-ceph-pools = "false" aa-profile-mode = "complain" virt-type = "kvm" customize-failure-domain = var.customize-failure-domain reserved-host-memory = var.reserved-host-memory cpu-mode = "custom" cpu-model = "EPYC-IBPB" cpu-model-extra-flags = "svm,pcid" pci-passthrough-whitelist = jsonencode([ {vendor_id: "1af4", product_id: "1000", address: "00:08.0"}, {vendor_id: "1af4", product_id: "1000", address: "00:07.0"}, {vendor_id: "1af4", product_id: "1000", address: "00:06.0"}, ]) pci-alias = jsonencode({ vendor_id: "1af4", product_id: "1000", device_type: "type-PCI", name: "arifpass", numa_policy: "preferred" }) } } resource "juju_application" "ceilometer-agent" { name = "ceilometer-agent" model = juju_model.cpe-focal.name charm { name = "ceilometer-agent" channel = "ussuri/stable" } config = { use-internal-endpoints = "true" } } resource "juju_application" "neutron-openvswitch" { name = "neutron-openvswitch" model = juju_model.cpe-focal.name charm { name = "neutron-openvswitch" channel = "ussuri/stable" } config = { data-port = "br-data:ens9" dns-servers = "192.168.1.13" enable-local-dhcp-and-metadata = "true" firewall-driver = "openvswitch" worker-multiplier = "0" } } resource "juju_application" "sysconfig-compute" { name = "sysconfig-compute" model = juju_model.cpe-focal.name charm { name = "sysconfig" channel = "latest/stable" revision = "19" } config = { # enable-iommu = "false" governor = "performance" enable-pti = "on" update-grub = "true" enable-tsx = "true" } } resource "juju_integration" "compute-ceilometer" { model = juju_model.cpe-focal.name application { name = juju_application.nova-compute.name endpoint = "nova-ceilometer" } application { name = juju_application.ceilometer-agent.name endpoint = "nova-ceilometer" } } resource "juju_integration" "compute-ovs" { model = juju_model.cpe-focal.name application { name = juju_application.neutron-openvswitch.name endpoint = "neutron-plugin" } application { name = juju_application.nova-compute.name endpoint = "neutron-plugin" } } resource "juju_integration" "compute-sysconfig" { model = juju_model.cpe-focal.name application { name = juju_application.nova-compute.name endpoint = "juju-info" } application { name = juju_application.sysconfig-compute.name endpoint = "juju-info" } } resource "juju_integration" "compute-ceph-mon" { model = juju_model.cpe-focal.name application { name = juju_application.nova-compute.name endpoint = "ceph" } application { name = juju_application.ceph-mon.name endpoint = "client" } }