extract remaining 19 modules from platform, complete stack split [ci skip]
Phase 3: all 27 platform modules now run as independent stacks. Platform reduced to empty shell (outputs only) for backward compat with 72 app stacks that declare dependency "platform". Fixed technitium cross-module dashboard reference by copying file. Woodpecker pipeline applies all 27+1 stacks in parallel via loop. All applied with zero destroys.
This commit is contained in:
parent
f7c3a338a5
commit
263d97bea2
134 changed files with 7930 additions and 270 deletions
15
stacks/wireguard/main.tf
Normal file
15
stacks/wireguard/main.tf
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
variable "tls_secret_name" { type = string }
|
||||
|
||||
data "vault_kv_secret_v2" "secrets" {
|
||||
mount = "secret"
|
||||
name = "platform"
|
||||
}
|
||||
|
||||
module "wireguard" {
|
||||
source = "./modules/wireguard"
|
||||
tls_secret_name = var.tls_secret_name
|
||||
wg_0_conf = data.vault_kv_secret_v2.secrets.data["wireguard_wg_0_conf"]
|
||||
wg_0_key = data.vault_kv_secret_v2.secrets.data["wireguard_wg_0_key"]
|
||||
firewall_sh = data.vault_kv_secret_v2.secrets.data["wireguard_firewall_sh"]
|
||||
tier = local.tiers.core
|
||||
}
|
||||
4
stacks/wireguard/modules/wireguard/extra/clients.conf
Normal file
4
stacks/wireguard/modules/wireguard/extra/clients.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
[Peer]
|
||||
# friendly_name = anca
|
||||
PublicKey = fr4DB6FHhxYyzrtnoNbhdT8Fqwvsz7QkhTnZpSQmBCY=
|
||||
AllowedIPs = 10.3.3.13/32
|
||||
1
stacks/wireguard/modules/wireguard/extra/last_ip.txt
Normal file
1
stacks/wireguard/modules/wireguard/extra/last_ip.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
# DO NOT MANUALLY EDIT THIS LINE. Last IP: 10.3.3.15/24
|
||||
251
stacks/wireguard/modules/wireguard/main.tf
Normal file
251
stacks/wireguard/modules/wireguard/main.tf
Normal file
|
|
@ -0,0 +1,251 @@
|
|||
variable "tls_secret_name" {}
|
||||
variable "tier" { type = string }
|
||||
variable "wg_0_conf" {}
|
||||
variable "firewall_sh" {}
|
||||
variable "wg_0_key" {}
|
||||
|
||||
module "tls_secret" {
|
||||
source = "../../../../modules/kubernetes/setup_tls_secret"
|
||||
namespace = kubernetes_namespace.wireguard.metadata[0].name
|
||||
tls_secret_name = var.tls_secret_name
|
||||
}
|
||||
|
||||
resource "kubernetes_namespace" "wireguard" {
|
||||
metadata {
|
||||
name = "wireguard"
|
||||
labels = {
|
||||
tier = var.tier
|
||||
}
|
||||
}
|
||||
}
|
||||
resource "kubernetes_config_map" "wg_0_conf" {
|
||||
metadata {
|
||||
name = "wg0-conf"
|
||||
namespace = kubernetes_namespace.wireguard.metadata[0].name
|
||||
|
||||
labels = {
|
||||
app = "wireguard"
|
||||
}
|
||||
annotations = {
|
||||
"reloader.stakater.com/match" = "true"
|
||||
}
|
||||
}
|
||||
|
||||
data = {
|
||||
"setup-firewall.sh" = var.firewall_sh
|
||||
"wg0.conf" = format("%s%s", var.wg_0_conf, file("${path.module}/extra/clients.conf"))
|
||||
}
|
||||
}
|
||||
|
||||
resource "kubernetes_secret" "wg_0_key" {
|
||||
metadata {
|
||||
name = "wg0-key"
|
||||
namespace = kubernetes_namespace.wireguard.metadata[0].name
|
||||
|
||||
annotations = {
|
||||
"reloader.stakater.com/match" = "true"
|
||||
}
|
||||
}
|
||||
data = {
|
||||
"wg0.key" = var.wg_0_key
|
||||
# If thep rivate key changes the pub key must be updated manually
|
||||
"wg-ui-config" = format("{\"PrivateKey\": \"%s\",\"PublicKey\": \"%s\",\"Users\": {}}", var.wg_0_key, "3OeDa6Z3Z6vPVxn/WKJujYL7DoDYPPpI5W+2glUYLHU=")
|
||||
}
|
||||
type = "generic"
|
||||
}
|
||||
|
||||
|
||||
resource "kubernetes_deployment" "wireguard" {
|
||||
metadata {
|
||||
name = "wireguard"
|
||||
namespace = kubernetes_namespace.wireguard.metadata[0].name
|
||||
labels = {
|
||||
app = "wireguard"
|
||||
tier = var.tier
|
||||
}
|
||||
annotations = {
|
||||
"reloader.stakater.com/search" = "true"
|
||||
}
|
||||
}
|
||||
spec {
|
||||
replicas = 1
|
||||
strategy {
|
||||
rolling_update {
|
||||
max_surge = "2"
|
||||
max_unavailable = "0"
|
||||
}
|
||||
}
|
||||
selector {
|
||||
match_labels = {
|
||||
app = "wireguard"
|
||||
}
|
||||
}
|
||||
template {
|
||||
metadata {
|
||||
labels = {
|
||||
app = "wireguard"
|
||||
}
|
||||
annotations = {
|
||||
"prometheus.io/scrape" = "true"
|
||||
"prometheus.io/port" = "9586"
|
||||
}
|
||||
}
|
||||
spec {
|
||||
init_container {
|
||||
name = "sysctl-setup"
|
||||
image = "busybox"
|
||||
command = ["/bin/sh", "-c", "echo 1 > /proc/sys/net/ipv4/ip_forward"]
|
||||
|
||||
security_context {
|
||||
privileged = true
|
||||
}
|
||||
}
|
||||
container {
|
||||
image = "sclevine/wg:latest"
|
||||
name = "wireguard"
|
||||
image_pull_policy = "IfNotPresent"
|
||||
lifecycle {
|
||||
post_start {
|
||||
exec {
|
||||
command = ["wg-quick", "up", "wg0"]
|
||||
}
|
||||
}
|
||||
pre_stop {
|
||||
exec {
|
||||
command = ["wg-quick", "down", "wg0"]
|
||||
}
|
||||
}
|
||||
}
|
||||
command = ["tail", "-f", "/dev/null"]
|
||||
port {
|
||||
container_port = 51820
|
||||
protocol = "UDP"
|
||||
}
|
||||
volume_mount {
|
||||
name = "wg0-key"
|
||||
mount_path = "/etc/wireguard/wg0.key"
|
||||
sub_path = "wg0.key"
|
||||
}
|
||||
volume_mount {
|
||||
name = "wg0-conf"
|
||||
mount_path = "/etc/wireguard/wg0.conf"
|
||||
sub_path = "wg0.conf"
|
||||
}
|
||||
volume_mount {
|
||||
name = "wg0-conf"
|
||||
mount_path = "/etc/wireguard/setup-firewall.sh"
|
||||
sub_path = "setup-firewall.sh"
|
||||
}
|
||||
security_context {
|
||||
capabilities {
|
||||
add = ["NET_ADMIN", "SYS_MODULE"]
|
||||
}
|
||||
}
|
||||
resources {
|
||||
requests = {
|
||||
cpu = "10m"
|
||||
memory = "64Mi"
|
||||
}
|
||||
limits = {
|
||||
memory = "64Mi"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
container {
|
||||
name = "prometheus-exporter"
|
||||
image = "mindflavor/prometheus-wireguard-exporter"
|
||||
image_pull_policy = "IfNotPresent"
|
||||
command = ["prometheus_wireguard_exporter", "-a", "true", "-v", "true", "-n", "/etc/wireguard/wg0.conf"]
|
||||
volume_mount {
|
||||
name = "wg0-conf"
|
||||
mount_path = "/etc/wireguard/wg0.conf"
|
||||
sub_path = "wg0.conf"
|
||||
}
|
||||
security_context {
|
||||
capabilities {
|
||||
add = ["NET_ADMIN"]
|
||||
}
|
||||
}
|
||||
port {
|
||||
container_port = 9586
|
||||
protocol = "TCP"
|
||||
}
|
||||
resources {
|
||||
requests = {
|
||||
cpu = "10m"
|
||||
memory = "32Mi"
|
||||
}
|
||||
limits = {
|
||||
memory = "32Mi"
|
||||
}
|
||||
}
|
||||
}
|
||||
volume {
|
||||
name = "wg0-key"
|
||||
secret {
|
||||
secret_name = "wg0-key"
|
||||
}
|
||||
}
|
||||
volume {
|
||||
name = "wg0-conf"
|
||||
config_map {
|
||||
name = "wg0-conf"
|
||||
}
|
||||
}
|
||||
dns_config {
|
||||
option {
|
||||
name = "ndots"
|
||||
value = "2"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
resource "kubernetes_service" "wireguard" {
|
||||
metadata {
|
||||
name = "wireguard"
|
||||
namespace = kubernetes_namespace.wireguard.metadata[0].name
|
||||
annotations = {
|
||||
"metallb.universe.tf/allow-shared-ip" = "shared"
|
||||
}
|
||||
labels = {
|
||||
"app" = "wireguard"
|
||||
}
|
||||
}
|
||||
|
||||
spec {
|
||||
type = "LoadBalancer"
|
||||
external_traffic_policy = "Cluster"
|
||||
selector = {
|
||||
app = "wireguard"
|
||||
}
|
||||
port {
|
||||
port = "51820"
|
||||
protocol = "UDP"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
resource "kubernetes_service" "wireguard_exporter" {
|
||||
metadata {
|
||||
name = "wireguard-exporter"
|
||||
namespace = kubernetes_namespace.wireguard.metadata[0].name
|
||||
labels = {
|
||||
"app" = "wireguard-exporter"
|
||||
}
|
||||
}
|
||||
|
||||
spec {
|
||||
selector = {
|
||||
app = "wireguard"
|
||||
}
|
||||
port {
|
||||
port = "9102"
|
||||
target_port = "9586"
|
||||
}
|
||||
}
|
||||
}
|
||||
1
stacks/wireguard/secrets
Symbolic link
1
stacks/wireguard/secrets
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../secrets
|
||||
8
stacks/wireguard/terragrunt.hcl
Normal file
8
stacks/wireguard/terragrunt.hcl
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
include "root" {
|
||||
path = find_in_parent_folders()
|
||||
}
|
||||
|
||||
dependency "infra" {
|
||||
config_path = "../infra"
|
||||
skip_outputs = true
|
||||
}
|
||||
10
stacks/wireguard/tiers.tf
Normal file
10
stacks/wireguard/tiers.tf
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# Generated by Terragrunt. Sig: nIlQXj57tbuaRZEa
|
||||
locals {
|
||||
tiers = {
|
||||
core = "0-core"
|
||||
cluster = "1-cluster"
|
||||
gpu = "2-gpu"
|
||||
edge = "3-edge"
|
||||
aux = "4-aux"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue