2023-12-01 15:50:29 +01:00
|
|
|
# OrientDB and OrientDB for the smart executors
|
2023-11-16 18:55:24 +01:00
|
|
|
#
|
|
|
|
resource "openstack_compute_servergroup_v2" "orientdb_cluster" {
|
|
|
|
name = "orientdb_cluster"
|
|
|
|
policies = ["soft-anti-affinity"]
|
|
|
|
}
|
|
|
|
#
|
|
|
|
# Network for the cluster traffic
|
|
|
|
#
|
|
|
|
resource "openstack_networking_network_v2" "orientdb_network" {
|
|
|
|
name = var.orientdb_net.network_name
|
|
|
|
admin_state_up = "true"
|
|
|
|
external = "false"
|
|
|
|
description = var.orientdb_net.network_description
|
|
|
|
mtu = var.mtu_size
|
|
|
|
port_security_enabled = true
|
|
|
|
shared = false
|
|
|
|
region = var.main_region
|
|
|
|
}
|
|
|
|
|
|
|
|
# Subnet
|
|
|
|
resource "openstack_networking_subnet_v2" "orientdb_subnet" {
|
|
|
|
name = "orientdb-subnet"
|
|
|
|
description = "Subnet used by the OrientDB service"
|
|
|
|
network_id = openstack_networking_network_v2.orientdb_network.id
|
|
|
|
cidr = var.orientdb_net.network_cidr
|
|
|
|
dns_nameservers = var.resolvers_ip
|
|
|
|
ip_version = 4
|
|
|
|
enable_dhcp = true
|
|
|
|
no_gateway = true
|
|
|
|
allocation_pool {
|
|
|
|
start = var.orientdb_net.allocation_pool_start
|
|
|
|
end = var.orientdb_net.allocation_pool_end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-23 12:39:22 +01:00
|
|
|
#
|
|
|
|
# Network for the OrientDB SE
|
|
|
|
#
|
|
|
|
resource "openstack_networking_network_v2" "orientdb_se_network" {
|
|
|
|
name = var.orientdb_se_net.network_name
|
|
|
|
admin_state_up = "true"
|
|
|
|
external = "false"
|
|
|
|
description = var.orientdb_se_net.network_description
|
|
|
|
mtu = var.mtu_size
|
|
|
|
port_security_enabled = true
|
|
|
|
shared = false
|
|
|
|
region = var.main_region
|
|
|
|
}
|
|
|
|
|
|
|
|
# Subnet
|
|
|
|
resource "openstack_networking_subnet_v2" "orientdb_se_subnet" {
|
|
|
|
name = "orientdb-se-subnet"
|
|
|
|
description = "Subnet used by the OrientDB for Smart Executor"
|
|
|
|
network_id = openstack_networking_network_v2.orientdb_se_network.id
|
|
|
|
cidr = var.orientdb_se_net.network_cidr
|
|
|
|
dns_nameservers = var.resolvers_ip
|
|
|
|
ip_version = 4
|
|
|
|
enable_dhcp = true
|
|
|
|
no_gateway = true
|
|
|
|
allocation_pool {
|
|
|
|
start = var.orientdb_se_net.allocation_pool_start
|
|
|
|
end = var.orientdb_se_net.allocation_pool_end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-16 18:55:24 +01:00
|
|
|
#
|
|
|
|
# Security groups
|
|
|
|
#
|
|
|
|
# Main OrientDB service
|
|
|
|
# Between OrientDB nodes
|
|
|
|
resource "openstack_networking_secgroup_v2" "orientdb_internal_traffic" {
|
|
|
|
name = "orientdb_internal_docker_traffic"
|
|
|
|
delete_default_rules = "true"
|
|
|
|
description = "Traffic between the OrientDB nodes"
|
|
|
|
}
|
|
|
|
resource "openstack_networking_secgroup_rule_v2" "orientdb_ports" {
|
|
|
|
count = var.orientdb_nodes_count
|
|
|
|
security_group_id = openstack_networking_secgroup_v2.orientdb_internal_traffic.id
|
|
|
|
description = "TCP traffic between OrientDB nodes"
|
|
|
|
port_range_min = 2424
|
|
|
|
port_range_max = 2490
|
|
|
|
direction = "ingress"
|
|
|
|
ethertype = "IPv4"
|
|
|
|
protocol = "tcp"
|
|
|
|
# remote_ip_prefix = format("%s-%02d", var.orientdb_ip, count.index+1, "/32")
|
|
|
|
remote_ip_prefix = var.orientdb_cidr.*[count.index]
|
|
|
|
}
|
|
|
|
# Access from the clients
|
|
|
|
resource "openstack_networking_secgroup_v2" "access_to_orientdb" {
|
|
|
|
name = "access_to_orientdb"
|
|
|
|
delete_default_rules = "true"
|
|
|
|
description = "Clients that talk to the OrientDB service"
|
|
|
|
}
|
|
|
|
resource "openstack_networking_secgroup_rule_v2" "access_to_orient_from_clients" {
|
2023-11-23 12:39:22 +01:00
|
|
|
for_each = toset([var.basic_services_ip.ssh_jump_cidr, openstack_networking_subnet_v2.orientdb_subnet.cidr])
|
2023-11-16 18:55:24 +01:00
|
|
|
security_group_id = openstack_networking_secgroup_v2.access_to_orientdb.id
|
|
|
|
description = "TCP traffic from the resource registries and the SSH jump server"
|
|
|
|
port_range_min = 2424
|
|
|
|
port_range_max = 2490
|
|
|
|
direction = "ingress"
|
|
|
|
ethertype = "IPv4"
|
|
|
|
protocol = "tcp"
|
2023-11-17 16:50:33 +01:00
|
|
|
remote_ip_prefix = each.value
|
2023-11-16 18:55:24 +01:00
|
|
|
}
|
|
|
|
resource "openstack_networking_secgroup_rule_v2" "access_to_orient_from_haproxy" {
|
|
|
|
for_each = toset( [var.basic_services_ip.haproxy_l7_1_cidr, var.basic_services_ip.haproxy_l7_2_cidr])
|
|
|
|
security_group_id = openstack_networking_secgroup_v2.access_to_orientdb.id
|
|
|
|
description = "TCP traffic from the load balancers"
|
2023-12-01 15:50:29 +01:00
|
|
|
port_range_min = 2480
|
|
|
|
port_range_max = 2480
|
2023-11-16 18:55:24 +01:00
|
|
|
direction = "ingress"
|
|
|
|
ethertype = "IPv4"
|
|
|
|
protocol = "tcp"
|
2023-11-17 16:50:33 +01:00
|
|
|
remote_ip_prefix = each.value
|
2023-11-16 18:55:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# OrientDB for the Smart Executor nodes
|
|
|
|
# Access from the clients
|
|
|
|
resource "openstack_networking_secgroup_v2" "access_to_orientdb_se" {
|
|
|
|
name = "access_to_orientdb_se"
|
|
|
|
delete_default_rules = "true"
|
2023-12-01 15:50:29 +01:00
|
|
|
description = "Clients that talk to the OrientDB SE service"
|
2023-11-16 18:55:24 +01:00
|
|
|
}
|
|
|
|
resource "openstack_networking_secgroup_rule_v2" "access_to_orient_se_from_clients" {
|
2023-11-23 12:39:22 +01:00
|
|
|
for_each = toset([var.basic_services_ip.ssh_jump_cidr, openstack_networking_subnet_v2.orientdb_se_subnet.cidr])
|
2023-11-16 18:55:24 +01:00
|
|
|
security_group_id = openstack_networking_secgroup_v2.access_to_orientdb_se.id
|
2023-12-01 15:50:29 +01:00
|
|
|
description = "TCP traffic from the smart executors and the SSH jump server"
|
2023-11-16 18:55:24 +01:00
|
|
|
port_range_min = 2424
|
|
|
|
port_range_max = 2490
|
|
|
|
direction = "ingress"
|
|
|
|
ethertype = "IPv4"
|
|
|
|
protocol = "tcp"
|
2023-11-17 16:50:33 +01:00
|
|
|
remote_ip_prefix = each.value
|
2023-11-16 18:55:24 +01:00
|
|
|
}
|
|
|
|
resource "openstack_networking_secgroup_rule_v2" "access_to_orient_se_from_haproxy" {
|
|
|
|
for_each = toset( [var.basic_services_ip.haproxy_l7_1_cidr, var.basic_services_ip.haproxy_l7_2_cidr])
|
|
|
|
security_group_id = openstack_networking_secgroup_v2.access_to_orientdb_se.id
|
|
|
|
description = "TCP traffic from the load balancers"
|
2023-12-01 15:50:29 +01:00
|
|
|
port_range_min = 2480
|
|
|
|
port_range_max = 2480
|
2023-11-16 18:55:24 +01:00
|
|
|
direction = "ingress"
|
|
|
|
ethertype = "IPv4"
|
|
|
|
protocol = "tcp"
|
2023-11-17 16:50:33 +01:00
|
|
|
remote_ip_prefix = each.value
|
2023-11-16 18:55:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
2023-11-23 12:39:22 +01:00
|
|
|
# OrientDB main cluster
|
2023-11-16 18:55:24 +01:00
|
|
|
#
|
2023-11-23 12:39:22 +01:00
|
|
|
# Instances used by the resource registry
|
2023-11-16 18:55:24 +01:00
|
|
|
resource "openstack_compute_instance_v2" "orientdb_servers" {
|
2023-12-01 15:50:29 +01:00
|
|
|
count = var.orientdb_nodes_count
|
2023-11-16 18:55:24 +01:00
|
|
|
name = format("%s-%02d", var.orientdb_data.node_name, count.index+1)
|
|
|
|
availability_zone_hints = var.availability_zones_names.availability_zone_no_gpu
|
|
|
|
flavor_name = var.orientdb_node_flavor
|
2023-12-01 15:50:29 +01:00
|
|
|
key_pair = module.ssh_settings.ssh_key_name
|
2023-11-16 18:55:24 +01:00
|
|
|
security_groups = [var.default_security_group_name,openstack_networking_secgroup_v2.orientdb_internal_traffic.name,openstack_networking_secgroup_v2.access_to_orientdb.name]
|
|
|
|
scheduler_hints {
|
|
|
|
group = openstack_compute_servergroup_v2.orientdb_cluster.id
|
|
|
|
}
|
|
|
|
block_device {
|
|
|
|
uuid = var.ubuntu_2204.uuid
|
|
|
|
source_type = "image"
|
|
|
|
volume_size = 10
|
|
|
|
boot_index = 0
|
|
|
|
destination_type = "volume"
|
|
|
|
delete_on_termination = false
|
|
|
|
}
|
|
|
|
|
|
|
|
block_device {
|
|
|
|
source_type = "blank"
|
|
|
|
volume_size = var.orientdb_data.node_data_disk_size
|
|
|
|
boot_index = -1
|
|
|
|
destination_type = "volume"
|
|
|
|
delete_on_termination = false
|
|
|
|
}
|
|
|
|
|
|
|
|
network {
|
|
|
|
name = var.main_private_network.name
|
|
|
|
}
|
|
|
|
network {
|
|
|
|
name = var.orientdb_net.network_name
|
|
|
|
fixed_ip_v4 = var.orientdb_ip.*[count.index]
|
|
|
|
}
|
|
|
|
|
|
|
|
user_data = "${file("${var.ubuntu2204_data_file}")}"
|
|
|
|
depends_on = [ openstack_networking_subnet_v2.orientdb_subnet ]
|
|
|
|
}
|
|
|
|
|
2023-11-23 12:39:22 +01:00
|
|
|
# Instance used by the smart executors
|
2023-11-16 18:55:24 +01:00
|
|
|
resource "openstack_compute_instance_v2" "orientdb_se_server" {
|
|
|
|
name = "orientdb-se"
|
|
|
|
availability_zone_hints = var.availability_zones_names.availability_zone_no_gpu
|
|
|
|
flavor_name = var.orientdb_se_node_flavor
|
2023-12-01 15:50:29 +01:00
|
|
|
key_pair = module.ssh_settings.ssh_key_name
|
2023-11-16 18:55:24 +01:00
|
|
|
security_groups = [var.default_security_group_name,openstack_networking_secgroup_v2.access_to_orientdb_se.name]
|
|
|
|
block_device {
|
|
|
|
uuid = var.ubuntu_2204.uuid
|
|
|
|
source_type = "image"
|
|
|
|
volume_size = 10
|
|
|
|
boot_index = 0
|
|
|
|
destination_type = "volume"
|
|
|
|
delete_on_termination = false
|
|
|
|
}
|
|
|
|
|
|
|
|
block_device {
|
|
|
|
source_type = "blank"
|
|
|
|
volume_size = var.orientdb_data.node_data_disk_size
|
|
|
|
boot_index = -1
|
|
|
|
destination_type = "volume"
|
|
|
|
delete_on_termination = false
|
|
|
|
}
|
|
|
|
|
|
|
|
network {
|
|
|
|
name = var.main_private_network.name
|
|
|
|
}
|
|
|
|
network {
|
2023-11-23 12:39:22 +01:00
|
|
|
name = var.orientdb_se_net.network_name
|
2023-11-16 18:55:24 +01:00
|
|
|
fixed_ip_v4 = var.orientdb_se_ip
|
|
|
|
}
|
|
|
|
|
|
|
|
user_data = "${file("${var.ubuntu2204_data_file}")}"
|
2023-11-23 12:39:22 +01:00
|
|
|
depends_on = [ openstack_networking_subnet_v2.orientdb_se_subnet ]
|
2023-11-16 18:55:24 +01:00
|
|
|
}
|
|
|
|
|