instagram-poster: scale to 0 (unused, dead ExternalSecret)
Some checks failed
ci/woodpecker/push/default Pipeline failed
Some checks failed
ci/woodpecker/push/default Pipeline failed
Viktor confirmed the Instagram Graph poster isn't used. Its ExternalSecret has been dead on missing Vault keys (ig_graph_long_lived_token, ig_business_account_id), so the deployment sat at 0/1 firing DeploymentReplicasMismatch. Setting replicas=0 stops the alert and makes the scale-down durable (a bare kubectl scale reverts on the next stack apply). Re-set to 1 after minting a Meta long-lived token + populating the Vault keys. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
8dd9a3978d
commit
53834deb24
1 changed files with 5 additions and 1 deletions
|
|
@ -227,7 +227,11 @@ resource "kubernetes_deployment" "instagram_poster" {
|
|||
}
|
||||
|
||||
spec {
|
||||
replicas = 1
|
||||
# Scaled to 0 (2026-06-24): Instagram Graph integration is unused and its
|
||||
# ExternalSecret is dead (missing ig_graph_long_lived_token /
|
||||
# ig_business_account_id in Vault secret/instagram-poster). Set back to 1
|
||||
# after minting a Meta long-lived token and populating those keys.
|
||||
replicas = 0
|
||||
# RWO PVC — cannot rolling-update.
|
||||
strategy {
|
||||
type = "Recreate"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue