mirror of
https://github.com/bitnami/containers.git
synced 2026-03-27 15:27:48 +08:00
19 lines
497 B
YAML
19 lines
497 B
YAML
command:
|
|
check-airflow:
|
|
timeout: 30000
|
|
exec: airflow users list
|
|
exit-status: 0
|
|
stdout:
|
|
- No data found
|
|
check-subpackages:
|
|
# Check python packages that should have been installed
|
|
exec: . /opt/bitnami/airflow/venv/bin/activate && pip list
|
|
exit-status: 0
|
|
stdout:
|
|
{{ range $subpackage := .Vars.subpackages }}
|
|
- {{ $subpackage }}
|
|
{{ end }}
|
|
file:
|
|
/opt/bitnami/airflow/venv/lib/python3.9/site-packages/airflow/www/node_modules:
|
|
exists: false
|