I have an Apache Airflow working on Kubernetes (via Google Composer). I want to retrieve one variable store in Secret:
I need to consume the variables stored in this Secret from a DAG in Airflow.(python).
The variables are stored as "Environment Vars", so in Python is quite easy:
import os
os.environ['DB_USER'])