Added pre and prod terrafomr plan for smart-executors

This commit is contained in:
Luca Frosini 2023-12-07 12:23:35 +01:00
parent 2f37287b45
commit d7d8abf0c4
4 changed files with 246 additions and 0 deletions

View File

@ -0,0 +1,120 @@
# Define required providers
terraform {
required_version = ">= 0.14.0"
required_providers {
openstack = {
source = "terraform-provider-openstack/openstack"
version = "~> 1.53.0"
}
}
}
data "terraform_remote_state" "privnet_dns_router" {
backend = "local"
config = {
path = "../project-setup/terraform.tfstate"
}
}
#
# Uses common_variables as module
#
module "common_variables" {
source = "../../modules/common_variables"
}
#
# Creates the server group "accounting-dashboard-harvester-se-plugin"
#
resource "openstack_compute_servergroup_v2" "accounting_dashboard_harvester_server_group" {
name = "accounting-dashboard-harvester-se-plugin"
policies = [module.common_variables.policy_list.soft_anti_affinity]
}
#
# Creates the server group "accounting-aggregator-se-plugin"
#
resource "openstack_compute_servergroup_v2" "accounting_aggregator_server_group" {
name = "accounting-aggregator-se-plugin"
policies = [module.common_variables.policy_list.soft_anti_affinity]
}
#
# Creates the server group "resource-checker-se-plugin"
#
resource "openstack_compute_servergroup_v2" "resource_checker_server_group" {
name = "resource-checker-se-plugin"
policies = [module.common_variables.policy_list.soft_anti_affinity]
}
#
# Creates the server group "social-data-indexer-se-plugin"
#
resource "openstack_compute_servergroup_v2" "social_data_indexer_server_group" {
name = "social-data-indexer-se-plugin"
policies = [module.common_variables.policy_list.soft_anti_affinity]
}
#
# Creates the server group "accounting-insert-storage-se-plugin"
#
resource "openstack_compute_servergroup_v2" "accounting_insert_storage_server_group" {
name = "accounting-insert-storage-se-plugin"
policies = [module.common_variables.policy_list.soft_anti_affinity]
}
module "instance_without_data_volume" {
source = "../../modules/instance_without_data_volume"
instances_without_data_volume_map = {
accounting_dashboard_harvester_se_plugin = {
name = "accounting-dashboard-harvester-se-plugin",
description = "This instance serves smart-executor service with accounting-dashboard-harvester-se-plugin",
flavor = module.common_variables.flavor_list.m1_medium,
networks = ["d4s-pre-cloud-main", module.common_variables.networks_list.orientdb_se, module.common_variables.networks_list.timescaledb, module.common_variables.networks_list.shared_postgresql],
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
server_groups_ids = [openstack_compute_servergroup_v2.accounting_dashboard_harvester_server_group.id],
image_ref = module.common_variables.ubuntu_1804
},
accounting_aggregator_se_plugin = {
name = "accounting-aggregator-se-plugin",
description = "This instance serves smart-executor service with accounting-aggregator-se-plugin",
flavor = module.common_variables.flavor_list.m1_medium,
networks = ["d4s-pre-cloud-main", module.common_variables.networks_list.orientdb_se, module.common_variables.networks_list.timescaledb],
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
server_groups_ids = [openstack_compute_servergroup_v2.accounting_aggregator_server_group.id],
image_ref = module.common_variables.ubuntu_1804
},
resource_checker_se_plugin = {
name = "resource-checker-se-plugin",
description = "This instance serves smart-executor service with resource-checker-se-plugin",
flavor = module.common_variables.flavor_list.c1_small,
networks = ["d4s-pre-cloud-main", module.common_variables.networks_list.orientdb_se],
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
server_groups_ids = [openstack_compute_servergroup_v2.resource_checker_server_group.id],
image_ref = module.common_variables.ubuntu_1804
},
# Social Data Indexer should access to Cassandra too
social_data_indexer_se_plugin = {
name = "social-data-indexer-se-plugin",
description = "This instance serves smart-executor service with social-data-indexer-se-plugin",
flavor = module.common_variables.flavor_list.c1_small,
networks = ["d4s-pre-cloud-main", module.common_variables.networks_list.orientdb_se],
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
server_groups_ids = [openstack_compute_servergroup_v2.social_data_indexer_server_group.id],
image_ref = module.common_variables.ubuntu_1804
},
accounting_insert_storage_se_plugin = {
name = "accounting-insert-storage-se-plugin",
description = "This instance serves smart-executor service with accounting-insert-storage-se-plugin",
flavor = module.common_variables.flavor_list.c1_small,
networks = ["d4s-pre-cloud-main", module.common_variables.networks_list.orientdb_se],
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
server_groups_ids = [openstack_compute_servergroup_v2.accounting_insert_storage_server_group.id],
image_ref = module.common_variables.ubuntu_1804
}
}
}

View File

@ -0,0 +1,3 @@
provider "openstack" {
cloud = "d4s-dev"
}

View File

@ -0,0 +1,120 @@
# Define required providers
terraform {
required_version = ">= 0.14.0"
required_providers {
openstack = {
source = "terraform-provider-openstack/openstack"
version = "~> 1.53.0"
}
}
}
data "terraform_remote_state" "privnet_dns_router" {
backend = "local"
config = {
path = "../project-setup/terraform.tfstate"
}
}
#
# Uses common_variables as module
#
module "common_variables" {
source = "../../modules/common_variables"
}
#
# Creates the server group "accounting-dashboard-harvester-se-plugin"
#
resource "openstack_compute_servergroup_v2" "accounting_dashboard_harvester_server_group" {
name = "accounting-dashboard-harvester-se-plugin"
policies = [module.common_variables.policy_list.soft_anti_affinity]
}
#
# Creates the server group "accounting-aggregator-se-plugin"
#
resource "openstack_compute_servergroup_v2" "accounting_aggregator_server_group" {
name = "accounting-aggregator-se-plugin"
policies = [module.common_variables.policy_list.soft_anti_affinity]
}
#
# Creates the server group "resource-checker-se-plugin"
#
resource "openstack_compute_servergroup_v2" "resource_checker_server_group" {
name = "resource-checker-se-plugin"
policies = [module.common_variables.policy_list.soft_anti_affinity]
}
#
# Creates the server group "social-data-indexer-se-plugin"
#
resource "openstack_compute_servergroup_v2" "social_data_indexer_server_group" {
name = "social-data-indexer-se-plugin"
policies = [module.common_variables.policy_list.soft_anti_affinity]
}
#
# Creates the server group "accounting-insert-storage-se-plugin"
#
resource "openstack_compute_servergroup_v2" "accounting_insert_storage_server_group" {
name = "accounting-insert-storage-se-plugin"
policies = [module.common_variables.policy_list.soft_anti_affinity]
}
module "instance_without_data_volume" {
source = "../../modules/instance_without_data_volume"
instances_without_data_volume_map = {
accounting_dashboard_harvester_se_plugin = {
name = "accounting-dashboard-harvester-se-plugin",
description = "This instance serves smart-executor service with accounting-dashboard-harvester-se-plugin",
flavor = module.common_variables.flavor_list.m1_medium,
networks = ["d4s-production-cloud-main", module.common_variables.networks_list.orientdb_se, module.common_variables.networks_list.timescaledb, module.common_variables.networks_list.shared_postgresql],
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
server_groups_ids = [openstack_compute_servergroup_v2.accounting_dashboard_harvester_server_group.id],
image_ref = module.common_variables.ubuntu_1804
},
accounting_aggregator_se_plugin = {
name = "accounting-aggregator-se-plugin",
description = "This instance serves smart-executor service with accounting-aggregator-se-plugin",
flavor = module.common_variables.flavor_list.m1_medium,
networks = ["d4s-production-cloud-main", module.common_variables.networks_list.orientdb_se, module.common_variables.networks_list.timescaledb],
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
server_groups_ids = [openstack_compute_servergroup_v2.accounting_aggregator_server_group.id],
image_ref = module.common_variables.ubuntu_1804
},
resource_checker_se_plugin = {
name = "resource-checker-se-plugin",
description = "This instance serves smart-executor service with resource-checker-se-plugin",
flavor = module.common_variables.flavor_list.c1_small,
networks = ["d4s-production-cloud-main", module.common_variables.networks_list.orientdb_se],
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
server_groups_ids = [openstack_compute_servergroup_v2.resource_checker_server_group.id],
image_ref = module.common_variables.ubuntu_1804
},
# Social Data Indexer should access to Cassandra too
social_data_indexer_se_plugin = {
name = "social-data-indexer-se-plugin",
description = "This instance serves smart-executor service with social-data-indexer-se-plugin",
flavor = module.common_variables.flavor_list.c1_small,
networks = ["d4s-production-cloud-main", module.common_variables.networks_list.orientdb_se],
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
server_groups_ids = [openstack_compute_servergroup_v2.social_data_indexer_server_group.id],
image_ref = module.common_variables.ubuntu_1804
},
accounting_insert_storage_se_plugin = {
name = "accounting-insert-storage-se-plugin",
description = "This instance serves smart-executor service with accounting-insert-storage-se-plugin",
flavor = module.common_variables.flavor_list.c1_small,
networks = ["d4s-production-cloud-main", module.common_variables.networks_list.orientdb_se],
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
server_groups_ids = [openstack_compute_servergroup_v2.accounting_insert_storage_server_group.id],
image_ref = module.common_variables.ubuntu_1804
}
}
}

View File

@ -0,0 +1,3 @@
provider "openstack" {
cloud = "d4s-dev"
}