1
1
Fork 0
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-05-19 11:56:04 +02:00

tf-stage1: remove git repos experimental servers

This has moved to production.
This commit is contained in:
Evangelos Foutras 2023-05-28 12:52:53 +03:00
parent 6fd767993a
commit ae827fd6c8
No known key found for this signature in database
GPG Key ID: 51E8B148A9999C34

View File

@ -134,14 +134,6 @@ locals {
server_type = "cx11"
domain = "redirect"
}
"repos-git.archlinux.org" = {
server_type = "cpx11"
domain = "repos-git"
}
"repos.sandbox.archlinux.org" = {
server_type = "cpx21"
domain = "repos.sandbox"
}
"reproducible.archlinux.org" = {
server_type = "cx11"
domain = "reproducible"
@ -304,7 +296,6 @@ locals {
registry = { value = "gitlab" }
repos = { value = "gemini" }
rsync = { value = "gemini" }
"rsync.sandbox" = { value = "repos.sandbox" }
sources = { value = "gemini" }
"static.conf" = { value = "redirect" }
status = { value = "stats.uptimerobot.com." }
@ -621,17 +612,3 @@ resource "hcloud_volume" "debuginfod" {
server_id = hcloud_server.machine["debuginfod.archlinux.org"].id
delete_protection = true
}
resource "hcloud_volume" "repos-git" {
name = "repos-git"
size = 100
server_id = hcloud_server.machine["repos-git.archlinux.org"].id
delete_protection = true
}
resource "hcloud_volume" "repos_sandbox" {
name = "repos.sandbox"
size = 500
server_id = hcloud_server.machine["repos.sandbox.archlinux.org"].id
delete_protection = true
}