Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ansible/group_vars/prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ void_mesh:
b-fsn-de.m.voidlinux.org: 192.168.99.115
a-fra-de.m.voidlinux.org: 192.168.99.117
a-sea-us.m.voidlinux.org: 192.168.99.126
a-nbg-de.m.voidlinux.org: 192.168.99.127

consul_servers:
- 192.168.99.120
Expand Down
16 changes: 16 additions & 0 deletions ansible/host_vars/a-nbg-de.m.voidlinux.org.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
network_static_routes:
- to: default
via: 152.53.152.1
- to: default
via: fe80::1

network_static_interfaces:
- name: eth0
type: direct
addrs:
- 152.53.154.59/22
- 2a00:11c0:47:331e::/64

sshd_AllowGroups:
- build-ops
4 changes: 4 additions & 0 deletions ansible/inventory
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ b-lej-de.m.voidlinux.org
a-sfo3-us.m.voidlinux.org
a-fra-de.m.voidlinux.org
a-sea-us.m.voidlinux.org
a-nbg-de.m.voidlinux.org

[hashi:children]
hashimaster
Expand All @@ -47,6 +48,7 @@ b-lej-de.m.voidlinux.org
h-hel-fi.m.voidlinux.org
j-hel-fi.m.voidlinux.org
a-sea-us.m.voidlinux.org
a-nbg-de.m.voidlinux.org

[hashimirror]
b-hel-fi.m.voidlinux.org
Expand Down Expand Up @@ -77,6 +79,7 @@ b-lej-de.m.voidlinux.org
a-sfo3-us.m.voidlinux.org
a-fra-de.m.voidlinux.org
a-sea-us.m.voidlinux.org
a-nbg-de.m.voidlinux.org

[musl]
b-hel-fi.m.voidlinux.org
Expand All @@ -99,3 +102,4 @@ j-hel-fi.m.voidlinux.org
b-lej-de.m.voidlinux.org
a-fsn-de.m.voidlinux.org
a-fra-de.m.voidlinux.org
a-nbg-de.m.voidlinux.org
14 changes: 14 additions & 0 deletions terraform/do/dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,20 @@ resource "digitalocean_record" "a_sea_us" {
value = "199.255.18.172"
}

resource "digitalocean_record" "a_nbg_de" {
domain = digitalocean_domain.voidlinux_org.name
type = "A"
name = "a-nbg-de.m"
value = "152.53.154.59"
}

resource "digitalocean_record" "a_nbg_de_v6" {
domain = digitalocean_domain.voidlinux_org.name
type = "AAAA"
name = "a-nbg-de.m"
value = "2a00:11c0:47:331e::"
}

#######################################################################
# Services #
# #
Expand Down