mirror of
https://github.com/bitnami/containers.git
synced 2026-03-27 15:27:48 +08:00
22 lines
590 B
YAML
22 lines
590 B
YAML
# Copyright Broadcom, Inc. All Rights Reserved.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
command:
|
|
check-scheduler:
|
|
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
|