[hermes-agent] disable deployment — PVC permission mismatch
Main container crashes with "mkdir: cannot create directory '/opt/data': Permission denied". Init container writes fine but main container runs with different fsGroup/runAsUser. Scaling to 0 until the PVC permission model is reworked. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
a4eafafe49
commit
dc05c440bc
1 changed files with 2 additions and 1 deletions
|
|
@ -220,7 +220,8 @@ resource "kubernetes_deployment" "hermes_agent" {
|
||||||
strategy {
|
strategy {
|
||||||
type = "Recreate"
|
type = "Recreate"
|
||||||
}
|
}
|
||||||
replicas = 1
|
# Disabled 2026-04-22 — main container fails with "mkdir: cannot create directory '/opt/data': Permission denied" (fsGroup/runAsUser mismatch vs init container). Re-enable after fixing PVC permissions.
|
||||||
|
replicas = 0
|
||||||
selector {
|
selector {
|
||||||
match_labels = {
|
match_labels = {
|
||||||
app = "hermes-agent"
|
app = "hermes-agent"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue