Pod Environment Variables
Manage runtime environment variables for your pods
Use Pod Environment Variables (Vars tab) to provide runtime config to your app containers.
Where to Edit
In the TUI:
- Open a pod
- Switch to the Vars tab (
4or[/]) - Press
eto edit - Enter variables in
KEY=valueformat (one per line) - Press
Ctrl+Sto save
Format Rules
- One variable per line
- Format must be
KEY=value - Empty lines are ignored
- Duplicate keys are resolved by last entry
When Changes Apply
Saved vars are stored for the pod and applied to the container on deploy/redeploy/restart.
Recommended flow after changes:
- Save vars in Vars tab
- Trigger Restart (
R) or Deploy (D)
Security Notes
- Pod vars are stored encrypted server-side
- They are used for container runtime environment injection
- Keep secrets out of repository files and Dockerfiles when possible
Common Mistakes
- Missing
=in a line - Trailing spaces in keys
- Editing vars but forgetting to restart/redeploy
- Setting app vars in server config instead of pod vars