Fix sysconfig charm rev, add allocation ratios to nova-compute and add dashboard

This commit is contained in:
Arif Ali 2024-05-14 12:20:30 +01:00
parent af7e4c167f
commit f10bcc656c
Signed by: arif
GPG Key ID: 369608FBA1353A70
3 changed files with 148 additions and 1 deletions

View File

@ -101,7 +101,7 @@ variable "sysconfig_channel" {
variable "sysconfig_revision" {
type = string
default = "19"
default = "22"
}
variable "ubuntu_channel" {

View File

@ -34,6 +34,8 @@ resource "juju_application" "nova-compute-kvm" {
virt-type = "kvm"
customize-failure-domain = var.customize-failure-domain
reserved-host-memory = var.reserved-host-memory
cpu-allocation-ratio = var.cpu-allocation-ratio
ram-allocation-ratio = var.ram-allocation-ratio
#cpu-mode = "custom"
#cpu-model = "EPYC-IBPB"
#cpu-model-extra-flags = "svm,pcid"

View File

@ -0,0 +1,145 @@
resource "juju_machine" "openstack-dashboard" {
count = var.num_units
model = var.model-name
placement = join(":", ["lxd", juju_machine.all_machines[var.controller_ids[count.index]].machine_id])
constraints = "spaces=oam,ceph-access"
}
resource "juju_application" "openstack-dashboard" {
name = "openstack-dashboard"
model = var.model-name
charm {
name = "openstack-dashboard"
channel = var.openstack-channel
}
units = var.num_units
placement = "${join(",", sort([
for res in juju_machine.openstack-dashboard :
res.machine_id
]))}"
endpoint_bindings = [{
space = var.oam-space
},{
endpoint = "shared-db"
space = var.internal-space
}]
config = {
openstack-origin = var.openstack-origin
vip = var.vips["dashboard"]
webroot = "/"
secret = "encryptcookieswithme"
cinder-backup = "false"
password-retrieve = "true"
endpoint-type = "publicURL"
neutron-network-l3ha = "true"
neutron-network-lb = "true"
neutron-network-firewall = "false"
}
}
resource "juju_application" "openstack-dashboard-mysql-router" {
name = "openstack-dashboard-mysql-router"
model = var.model-name
charm {
name = "mysql-router"
channel = var.mysql-router-channel
}
units = 0
endpoint_bindings = [{
space = var.oam-space
},{
space = var.internal-space
endpoint = "shared-db"
},{
space = var.internal-space
endpoint = "db-router"
}]
config = {
source = var.openstack-origin
}
}
resource "juju_application" "hacluster-openstack-dashboard" {
name = "hacluster-openstack-dashboard"
model = var.model-name
charm {
name = "hacluster"
channel = var.hacluster-channel
}
units = 0
}
resource "juju_integration" "openstack-dashboard-ha" {
model = var.model-name
application {
name = juju_application.openstack-dashboard.name
endpoint = "ha"
}
application {
name = juju_application.hacluster-openstack-dashboard.name
endpoint = "ha"
}
}
resource "juju_integration" "openstack-dashboard-mysql" {
model = var.model-name
application {
name = juju_application.openstack-dashboard.name
endpoint = "shared-db"
}
application {
name = juju_application.openstack-dashboard-mysql-router.name
endpoint = "shared-db"
}
}
resource "juju_integration" "openstack-dashboard-db" {
model = var.model-name
application {
name = juju_application.openstack-dashboard-mysql-router.name
endpoint = "db-router"
}
application {
name = juju_application.mysql-innodb-cluster.name
endpoint = "db-router"
}
}
resource "juju_integration" "openstack-dashboard-keystone" {
model = var.model-name
application {
name = juju_application.openstack-dashboard.name
endpoint = "identity-service"
}
application {
name = juju_application.keystone.name
endpoint = "identity-service"
}
}