All checks were successful
ci/woodpecker/push/default Pipeline was successful
Completes the Goldmane who-talks-to-whom trail (ADR-0014), implemented by a subagent workflow (distinct stacks in parallel, docs last): - #57 Whisker gated ingress: ingress_factory (whisker.viktorbarzin.me, auth=required, Authentik-gated) + a NetworkPolicy allowing traefik->whisker:8081 (the operator's whisker NP default-denies ingress). calico stack. - #61 pipeline health: AggregatorDown + DigestFailing Prometheus alerts (prometheus_chart_values.tpl) + cluster-health check #48. - #59 service-identity labels on the multi-Service namespaces (monitoring's 5 TF-managed deployments + dbaas), with the KYVERNO_LIFECYCLE_V1 marker so they update in-place. - #62/#63 docs: docs/runbooks/goldmane-flow-trail.md (new), service-catalog, security.md + monitoring.md east-west sections, ADR-0014 as-built, CONTEXT.md. #62 = the SQL to derive the Wave-1 per-namespace egress allowlist from the edge table (feeds code-8ywc; enforce-flips out of scope). Also fixes the digest's Slack target: #security override 404s channel_not_found because the shared alertmanager_slack_api_url webhook's app isn't a member of #security (this likely also breaks alertmanager's slack-security receiver — flagged in the runbook). Routed to #alerts (the webhook's working channel) until the app is invited; verified a real digest run posts cleanly (360 edges). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
122 lines
3.3 KiB
HCL
122 lines
3.3 KiB
HCL
resource "kubernetes_deployment" "goflow2" {
|
|
metadata {
|
|
name = "goflow2"
|
|
namespace = kubernetes_namespace.monitoring.metadata[0].name
|
|
labels = {
|
|
app = "goflow2"
|
|
tier = var.tier
|
|
# ADR-0014 service identity: monitoring is a multi-Service namespace, so
|
|
# the namespace alone can't attribute Goldmane flows. Value = the
|
|
# fronting Service name (kubernetes_service.goflow2 — the metrics svc; the
|
|
# goflow2-netflow NodePort is the same pod by another name).
|
|
"service-identity" = "goflow2"
|
|
}
|
|
}
|
|
spec {
|
|
replicas = 1
|
|
selector {
|
|
match_labels = {
|
|
app = "goflow2"
|
|
}
|
|
}
|
|
template {
|
|
metadata {
|
|
labels = {
|
|
app = "goflow2"
|
|
# ADR-0014: Goldmane/Felix stamps POD labels onto flows, so the
|
|
# disambiguating identity must live on the pod template (not just
|
|
# the Deployment metadata above). Not in selector → no replace.
|
|
"service-identity" = "goflow2"
|
|
}
|
|
}
|
|
spec {
|
|
container {
|
|
name = "goflow2"
|
|
image = "netsampler/goflow2:v2.2.1"
|
|
args = ["-listen", "netflow://:2055"]
|
|
|
|
port {
|
|
name = "netflow"
|
|
container_port = 2055
|
|
protocol = "UDP"
|
|
}
|
|
port {
|
|
name = "metrics"
|
|
container_port = 8080
|
|
protocol = "TCP"
|
|
}
|
|
|
|
resources {
|
|
requests = {
|
|
cpu = "50m"
|
|
memory = "128Mi"
|
|
}
|
|
limits = {
|
|
memory = "128Mi"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
lifecycle {
|
|
# KYVERNO_LIFECYCLE_V1: Kyverno admission webhook mutates dns_config with ndots=2
|
|
# KEEL: monitoring ns is keel-enrolled (policy=patch) — Keel owns the image
|
|
# tag and injects keel.sh annotations. Ignore so TF stops reverting Keel each
|
|
# plan (completes the cdb7d9a8 KEEL sweep that missed these exporters and was
|
|
# tripping drift-detection exit 2 every run). 2026-05-31.
|
|
ignore_changes = [
|
|
spec[0].template[0].spec[0].dns_config,
|
|
spec[0].template[0].spec[0].container[0].image, # KEEL_IGNORE_IMAGE
|
|
metadata[0].annotations["keel.sh/policy"],
|
|
metadata[0].annotations["keel.sh/trigger"],
|
|
metadata[0].annotations["keel.sh/pollSchedule"],
|
|
metadata[0].annotations["keel.sh/match-tag"],
|
|
spec[0].template[0].metadata[0].annotations["keel.sh/update-time"], # KEEL_LIFECYCLE_V1
|
|
]
|
|
}
|
|
}
|
|
|
|
resource "kubernetes_service" "goflow2" {
|
|
metadata {
|
|
name = "goflow2"
|
|
namespace = kubernetes_namespace.monitoring.metadata[0].name
|
|
labels = {
|
|
app = "goflow2"
|
|
}
|
|
}
|
|
spec {
|
|
selector = {
|
|
app = "goflow2"
|
|
}
|
|
port {
|
|
name = "metrics"
|
|
port = 8080
|
|
target_port = 8080
|
|
protocol = "TCP"
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "kubernetes_service" "goflow2-netflow" {
|
|
metadata {
|
|
name = "goflow2-netflow"
|
|
namespace = kubernetes_namespace.monitoring.metadata[0].name
|
|
labels = {
|
|
app = "goflow2"
|
|
}
|
|
}
|
|
spec {
|
|
type = "NodePort"
|
|
selector = {
|
|
app = "goflow2"
|
|
}
|
|
port {
|
|
name = "netflow"
|
|
port = 2055
|
|
target_port = 2055
|
|
protocol = "UDP"
|
|
node_port = 32055
|
|
}
|
|
}
|
|
}
|