* feat(security): unbind pid for worker jobs to create extra process isolation * review * simplify * cleanup + compose files * re-add removed comments from nu executor * simplify * fail immediately * updates * update ping backend * nsjail / unshare in workers page * migrations * frontend + sqlx * frontend * frontend * fix error message * undo example changes
5 lines
269 B
SQL
5 lines
269 B
SQL
-- Add job_isolation column to worker_ping table
|
|
-- This tracks which job isolation method the worker is using: 'nsjail', 'unshare', or 'none'
|
|
-- Nullable for backwards compatibility - old workers will report NULL
|
|
ALTER TABLE worker_ping ADD COLUMN job_isolation TEXT;
|