diff --git a/internal/cmd/local/local/install.go b/internal/cmd/local/local/install.go index 9f3dc20..34cc1e1 100644 --- a/internal/cmd/local/local/install.go +++ b/internal/cmd/local/local/install.go @@ -187,15 +187,11 @@ func (c *Command) Install(ctx context.Context, opts InstallOpts) error { if opts.LowResourceMode { airbyteValues = append(airbyteValues, "server.env_vars.JOB_RESOURCE_VARIANT_OVERRIDE=lowresource", - "server.env_vars.JOB_MAIN_CONTAINER_CPU_LIMIT=0", - "server.env_vars.JOB_MAIN_CONTAINER_CPU_REQUEST=0", - "server.env_vars.JOB_MAIN_CONTAINER_MEMORY_LIMIT=0", - "server.env_vars.JOB_MAIN_CONTAINER_MEMORY_REQUEST=0", - - "workload-launcher.env_vars.JOB_MAIN_CONTAINER_CPU_LIMIT=0", - "workload-launcher.env_vars.JOB_MAIN_CONTAINER_CPU_REQUEST=0", - "workload-launcher.env_vars.JOB_MAIN_CONTAINER_MEMORY_LIMIT=0", - "workload-launcher.env_vars.JOB_MAIN_CONTAINER_MEMORY_REQUEST=0", + "global.jobs.resources.limits.cpu=0", + "global.jobs.resources.requests.cpu=0", + "global.jobs.resources.limits.memory=0", + "global.jobs.resources.requests.memory=0", + "workload-launcher.env_vars.CHECK_JOB_MAIN_CONTAINER_CPU_LIMIT=0", "workload-launcher.env_vars.CHECK_JOB_MAIN_CONTAINER_CPU_REQUEST=0", "workload-launcher.env_vars.CHECK_JOB_MAIN_CONTAINER_MEMORY_LIMIT=0",