You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: revert env var flag defaults, use Kubernetes var substitution
The previous commit incorrectly added os.Getenv(...) defaults to flag
declarations in cmd/main.go. Go flag defaults are for documentation and
local use; env var wiring belongs in the deployment layer.
Revert cmd/main.go to plain hard-coded defaults and remove the
envOrDefault helper. In manager.yaml, introduce an env: section with the
default values and reference them from args via Kubernetes $(VAR_NAME)
substitution. Overlays can now override a single env entry by name
without touching the args list.
0 commit comments