ProjectsEnvironment variables

Environment variables can be set in the .env.q8s file that should be placed in the root directory of the workspace.

    • .env.q8s

The .env.q8s file should contain the environment variables in the following format:

.env.q8s
export KEY=VALUE

The environment variables will be mounted in the Qubernetes Job container, so you can access them in programs or Jupyter notebooks as usual:

app.py
import os
 
print(os.environ.get("KEY", None))
# VALUE