diff --git a/ansible/era.yml b/ansible/era.yml index 08866fc..df8be50 100644 --- a/ansible/era.yml +++ b/ansible/era.yml @@ -13,7 +13,7 @@ become: true hosts: - linux-03.ih-eu-mda1.nimbus.mainnet - - linux-01.he-eu-hel1.nimbus.prater + - linux-01.ih-eu-mda1.nimbus.prater vars: open_ports_default_comment: 'Nginx' open_ports_default_chain: 'SERVICES' diff --git a/ansible/group_vars/nimbus.prater.yml b/ansible/group_vars/nimbus.prater.yml index 2dac61d..b409bba 100644 --- a/ansible/group_vars/nimbus.prater.yml +++ b/ansible/group_vars/nimbus.prater.yml @@ -184,18 +184,6 @@ nodes_layout: - { branch: 'testing', start: 16000, end: 18000, build_start: '15:00:00' } - { branch: 'unstable', start: 18000, end: 20000, build_start: '16:00:00', nim_flags: '-d:json_rpc_websocket_package=websock' } - 'linux-01.he-eu-hel1.nimbus.prater': # 0 each - - { branch: 'stable', build_freq: '*-*-* 13:00:00' } - - { branch: 'testing', build_freq: '*-*-* 15:00:00', nim_commit: 'version-1-6' } - - { branch: 'unstable', build_freq: '*-*-* 17:00:00', public_api: true } - - { branch: 'libp2p', build_freq: '*-*-* 19:00:00' } - - 'linux-02.he-eu-hel1.nimbus.prater': # 1 each - - { branch: 'stable', start: 20000, end: 20001, build_freq: '*-*-* 13:00:00' } - - { branch: 'testing', start: 20001, end: 20002, build_freq: '*-*-* 15:00:00', nim_commit: 'version-1-6', public_api: true } - - { branch: 'unstable', start: 20002, end: 20003, build_freq: '*-*-* 17:00:00' } - - { branch: 'libp2p', start: 20003, end: 20004, build_freq: '*-*-* 19:00:00' } - 'linux-03.he-eu-hel1.nimbus.prater': # 10 each - { branch: 'stable', start: 20004, end: 20014, build_freq: '*-*-* 11:00:00' } - { branch: 'testing', start: 20024, end: 20034, build_freq: '*-*-* 15:00:00', nim_commit: 'version-1-6' } @@ -228,7 +216,7 @@ nodes_layout: - { branch: 'libp2p', build_freq: '*-*-* 19:00:00' } 'linux-02.ih-eu-mda1.nimbus.prater': # 1 each - - { branch: 'stable', build_freq: '*-*-* 13:00:00' } - - { branch: 'testing', build_freq: '*-*-* 15:00:00', nim_commit: 'version-1-6', public_api: true } - - { branch: 'unstable', build_freq: '*-*-* 17:00:00' } - - { branch: 'libp2p', build_freq: '*-*-* 19:00:00' } + - { branch: 'stable', start: 20000, end: 20001, build_freq: '*-*-* 13:00:00' } + - { branch: 'testing', start: 20001, end: 20002, build_freq: '*-*-* 15:00:00', nim_commit: 'version-1-6', public_api: true } + - { branch: 'unstable', start: 20002, end: 20003, build_freq: '*-*-* 17:00:00' } + - { branch: 'libp2p', start: 20003, end: 20004, build_freq: '*-*-* 19:00:00' } diff --git a/ansible/host_vars/linux-01.he-eu-hel1.nimbus.prater.yml b/ansible/host_vars/linux-01.ih-eu-mda1.nimbus.prater.yml similarity index 100% rename from ansible/host_vars/linux-01.he-eu-hel1.nimbus.prater.yml rename to ansible/host_vars/linux-01.ih-eu-mda1.nimbus.prater.yml diff --git a/ansible/host_vars/linux-02.he-eu-hel1.nimbus.prater.yml b/ansible/host_vars/linux-02.ih-eu-mda1.nimbus.prater.yml similarity index 100% rename from ansible/host_vars/linux-02.he-eu-hel1.nimbus.prater.yml rename to ansible/host_vars/linux-02.ih-eu-mda1.nimbus.prater.yml diff --git a/prater.tf b/prater.tf index 2eaea15..10e1e8f 100644 --- a/prater.tf +++ b/prater.tf @@ -121,8 +121,8 @@ module "nimbus_nodes_prater_hetzner" { domain = var.domain ips = [ - "95.217.198.113", # linux-01.he-eu-hel1.nimbus.prater - "95.217.230.20", # linux-02.he-eu-hel1.nimbus.prater + "95.217.198.113", # linux-01.he-eu-hel1.nimbus.prater (GONE) + "95.217.230.20", # linux-02.he-eu-hel1.nimbus.prater (GONE) "65.108.132.230", # linux-03.he-eu-hel1.nimbus.prater "135.181.20.36", # linux-04.he-eu-hel1.nimbus.prater "95.217.224.92", # linux-05.he-eu-hel1.nimbus.prater @@ -151,7 +151,7 @@ module "nimbus_nodes_prater_innova" { resource "cloudflare_record" "unstable_prater_beacon_api" { zone_id = local.zones["nimbus.team"] name = "unstable.prater.beacon-api" - value = module.nimbus_nodes_prater_hetzner.public_ips[0] + value = module.nimbus_nodes_prater_innova.public_ips[0] type = "A" proxied = false } @@ -159,7 +159,7 @@ resource "cloudflare_record" "unstable_prater_beacon_api" { resource "cloudflare_record" "testing_prater_beacon_api" { zone_id = local.zones["nimbus.team"] name = "testing.prater.beacon-api" - value = module.nimbus_nodes_prater_hetzner.public_ips[1] + value = module.nimbus_nodes_prater_innova.public_ips[1] type = "A" proxied = false }