├── .actionlint.yaml ├── .dockerignore ├── .envrc.sample ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── 01-normal-issue.md │ ├── 02-bug_report.yml │ ├── config.yml │ ├── new_version.md │ └── normal-issue.md ├── PULL_REQUEST_TEMPLATE │ ├── pre-release-getting-started-script.md │ └── pre-release-rust-deps.md ├── actionlint.yaml ├── pull_request_template.md └── workflows │ ├── build.yaml │ ├── general_daily_security.yml │ ├── integration-test.yml │ └── pr_pre-commit.yaml ├── .gitignore ├── .hadolint.yaml ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── .pylintrc ├── .readme ├── README.md.j2 ├── partials │ ├── borrowed │ │ ├── documentation.md.j2 │ │ ├── footer.md.j2 │ │ ├── header.md.j2 │ │ ├── links.md.j2 │ │ ├── overview_blurb.md.j2 │ │ └── related_reading.md.j2 │ └── main.md.j2 └── static │ └── borrowed │ ├── Icon_Stackable.svg │ └── stackable_overview.png ├── .vscode ├── launch.json └── settings.json ├── .yamllint.yaml ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.nix ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── Tiltfile ├── crate-hashes.json ├── default.nix ├── deny.toml ├── deploy ├── DO_NOT_EDIT.md ├── config-spec │ └── properties.yaml ├── helm │ ├── airflow-operator │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── configs │ │ │ └── properties.yaml │ │ ├── crds │ │ │ └── crds.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── _maintenance.tpl │ │ │ ├── _telemetry.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── roles.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ └── ct.yaml └── stackable-operators-ns.yaml ├── docker └── Dockerfile ├── docs ├── antora.yml ├── modules │ └── airflow │ │ ├── examples │ │ ├── example-airflow-dags-configmap.yaml │ │ ├── example-airflow-gitsync.yaml │ │ ├── example-airflow-incluster.yaml │ │ ├── example-airflow-kubernetes-executor-s3-logging.yaml │ │ ├── example-airflow-kubernetes-executor-s3-xcom.yaml │ │ ├── example-airflow-secret.yaml │ │ ├── example-airflow-spark-clusterrole.yaml │ │ ├── example-airflow-spark-clusterrolebinding.yaml │ │ ├── example-configmap.yaml │ │ ├── example-pyspark-pi.yaml │ │ ├── example-spark-dag.py │ │ ├── example_spark_kubernetes_operator.py │ │ ├── example_spark_kubernetes_sensor.py │ │ └── getting_started │ │ │ └── code │ │ │ ├── airflow-credentials.yaml │ │ │ ├── airflow.yaml │ │ │ ├── getting_started.sh │ │ │ ├── getting_started.sh.j2 │ │ │ ├── install_output.txt │ │ │ ├── install_output.txt.j2 │ │ │ ├── test_getting_started_helm.sh │ │ │ └── test_getting_started_stackablectl.sh │ │ ├── images │ │ ├── airflow_connection_ui.png │ │ ├── airflow_dag_graph.png │ │ ├── airflow_dag_log.png │ │ ├── airflow_dag_log_opensearch.png │ │ ├── airflow_dag_s3_logs.png │ │ ├── airflow_dags.png │ │ ├── airflow_edit_s3_connection.png │ │ ├── airflow_login.png │ │ ├── airflow_overview.drawio.svg │ │ ├── airflow_running.png │ │ ├── airflow_security.png │ │ ├── airflow_security_ldap.png │ │ └── getting_started │ │ │ ├── airflow_dags.png │ │ │ ├── airflow_login.png │ │ │ ├── airflow_pods.png │ │ │ └── airflow_running.png │ │ ├── pages │ │ ├── getting_started │ │ │ ├── first_steps.adoc │ │ │ ├── index.adoc │ │ │ └── installation.adoc │ │ ├── index.adoc │ │ ├── reference │ │ │ ├── commandline-parameters.adoc │ │ │ ├── crds.adoc │ │ │ ├── environment-variables.adoc │ │ │ └── index.adoc │ │ ├── required-external-components.adoc │ │ ├── troubleshooting │ │ │ └── index.adoc │ │ └── usage-guide │ │ │ ├── applying-custom-resources.adoc │ │ │ ├── db-init.adoc │ │ │ ├── index.adoc │ │ │ ├── listenerclass.adoc │ │ │ ├── logging.adoc │ │ │ ├── monitoring.adoc │ │ │ ├── mounting-dags.adoc │ │ │ ├── operations │ │ │ ├── cluster-operations.adoc │ │ │ ├── graceful-shutdown.adoc │ │ │ ├── index.adoc │ │ │ ├── pod-disruptions.adoc │ │ │ └── pod-placement.adoc │ │ │ ├── overrides.adoc │ │ │ ├── security.adoc │ │ │ ├── storage-resources.adoc │ │ │ └── using-kubernetes-executors.adoc │ │ └── partials │ │ ├── hardware-requirements.adoc │ │ ├── nav.adoc │ │ └── supported-versions.adoc └── templating_vars.yaml ├── examples ├── simple-airflow-cluster-dags-cmap.yaml ├── simple-airflow-cluster-ldap-insecure-tls.yaml ├── simple-airflow-cluster-ldap.yaml └── simple-airflow-cluster.yaml ├── nix ├── README.md ├── meta.json ├── sources.json └── sources.nix ├── renovate.json ├── rust-toolchain.toml ├── rust └── operator-binary │ ├── Cargo.toml │ ├── build.rs │ └── src │ ├── airflow_controller.rs │ ├── config.rs │ ├── controller_commons.rs │ ├── crd │ ├── affinity.rs │ ├── authentication.rs │ ├── authorization.rs │ ├── internal_secret.rs │ └── mod.rs │ ├── env_vars.rs │ ├── main.rs │ ├── operations │ ├── graceful_shutdown.rs │ ├── mod.rs │ └── pdb.rs │ ├── product_logging.rs │ ├── service.rs │ └── util.rs ├── rustfmt.toml ├── scripts ├── auto-retry-tests.py ├── docs_templating.sh ├── ensure_one_trailing_newline.py ├── generate-manifests.sh ├── render_readme.sh ├── run-tests └── run_tests.sh ├── shell.nix └── tests ├── README-templating.md ├── interu.yaml ├── kuttl-test.yaml.jinja2 ├── release.yaml ├── templates ├── .gitkeep └── kuttl │ ├── cluster-operation │ ├── 00-patch-ns.yaml.j2 │ ├── 02-assert.yaml │ ├── 02-install-postgresql.yaml │ ├── 04-assert.yaml │ ├── 04-install-redis.yaml │ ├── 06-assert.yaml.j2 │ ├── 06-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 08-assert.yaml │ ├── 08-install-airflow.yaml.j2 │ ├── 09-assert.yaml │ ├── 10-assert.yaml │ ├── 10-pause-airflow.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-stop-airflow.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-restart-airflow.yaml.j2 │ ├── 31-assert.yaml │ ├── helm-bitnami-postgresql-values.yaml.j2 │ └── helm-bitnami-redis-values.yaml.j2 │ ├── commons │ ├── health.py │ └── metrics.py │ ├── external-access │ ├── 00-patch-ns.yaml.j2 │ ├── 10-install-postgresql.yaml │ ├── 20-assert.yaml │ ├── 20-install-redis.yaml │ ├── 30-listener-classes.yaml │ ├── 40-assert.yaml.j2 │ ├── 40-install-airflow-cluster.yaml │ ├── 50-assert.yaml.j2 │ ├── helm-bitnami-postgresql-values.yaml.j2 │ ├── helm-bitnami-redis-values.yaml.j2 │ ├── install-airflow-cluster.yaml.j2 │ └── listener-classes.yaml │ ├── ldap │ ├── 00-patch-ns.yaml.j2 │ ├── 05-assert.yaml │ ├── 05-install-postgresql.yaml │ ├── 10-assert.yaml.j2 │ ├── 10-install-redis.yaml.j2 │ ├── 20-assert.yaml.j2 │ ├── 20-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-install-openldap.yaml.j2 │ ├── 40-assert.yaml │ ├── 40-create-ldap-user.yaml │ ├── 50-create-authentication-classes.yaml.j2 │ ├── 60-assert.yaml.j2 │ ├── 60-install-airflow-cluster.yaml.j2 │ ├── 70-assert.yaml │ ├── 70-install-airflow-python.yaml │ ├── 80-assert.yaml.j2 │ ├── 80-health-check.yaml │ ├── 90-assert.yaml.j2 │ ├── 90-install-metrics-script.yaml │ ├── 95-assert.yaml.j2 │ ├── create_ldap_user.sh │ ├── helm-bitnami-postgresql-values.yaml.j2 │ └── helm-bitnami-redis-values.yaml.j2 │ ├── logging │ ├── 00-patch-ns.yaml.j2 │ ├── 05-assert.yaml │ ├── 05-install-postgresql.yaml │ ├── 10-assert.yaml │ ├── 10-install-redis.yaml │ ├── 20-assert.yaml.j2 │ ├── 20-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-install-airflow-vector-aggregator.yaml │ ├── 40-create-configmap-with-prepared-logs.yaml │ ├── 41-assert.yaml.j2 │ ├── 41-install-airflow-cluster.yaml.j2 │ ├── 50-assert.yaml │ ├── 50-install-airflow-python.yaml │ ├── 51-assert.yaml.j2 │ ├── 51-health-check.yaml │ ├── 52-assert.yaml.j2 │ ├── 52-install-metrics-script.yaml │ ├── 60-assert.yaml │ ├── 60-test-log-aggregation.yaml │ ├── 70-assert.yaml.j2 │ ├── airflow-vector-aggregator-values.yaml.j2 │ ├── helm-bitnami-postgresql-values.yaml.j2 │ ├── helm-bitnami-redis-values.yaml.j2 │ ├── prepared-logs.py.json │ └── test_log_aggregation.py │ ├── mount-dags-configmap │ ├── 00-patch-ns.yaml.j2 │ ├── 05-assert.yaml │ ├── 05-install-postgresql.yaml │ ├── 10-assert.yaml.j2 │ ├── 10-install-redis.yaml.j2 │ ├── 20-assert.yaml.j2 │ ├── 20-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 30-assert.yaml.j2 │ ├── 30-install-airflow-cluster.yaml.j2 │ ├── 40-assert.yaml │ ├── 40-install-airflow-python.yaml │ ├── 50-assert.yaml.j2 │ ├── 50-health-check.yaml │ ├── 60-assert.yaml.j2 │ ├── 60-install-metrics-script.yaml │ ├── 70-assert.yaml.j2 │ ├── helm-bitnami-postgresql-values.yaml.j2 │ └── helm-bitnami-redis-values.yaml.j2 │ ├── mount-dags-gitsync │ ├── 00-patch-ns.yaml.j2 │ ├── 03-assert.yaml │ ├── 03-install-postgresql.yaml │ ├── 04-assert.yaml.j2 │ ├── 04-install-redis.yaml.j2 │ ├── 05-assert.yaml.j2 │ ├── 05-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 10-clusterrole.yaml │ ├── 30-assert.yaml.j2 │ ├── 30-install-airflow-cluster.yaml.j2 │ ├── 31-assert.yaml.j2 │ ├── 40-assert.yaml │ ├── 40-install-airflow-python.yaml │ ├── 50-assert.yaml.j2 │ ├── 50-health-check.yaml │ ├── 60-assert.yaml │ ├── 60-install-metrics-script.yaml │ ├── 70-assert.yaml.j2 │ ├── dag_metrics.py │ ├── helm-bitnami-postgresql-values.yaml.j2 │ └── helm-bitnami-redis-values.yaml.j2 │ ├── oidc │ ├── 00-patch-ns.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-install-postgresql.yaml │ ├── 20-assert.yaml.j2 │ ├── 20-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-install-keycloak.yaml │ ├── 40-assert.yaml │ ├── 40-install-airflow.yaml │ ├── 50-assert.yaml │ ├── 50-install-test-container.yaml.j2 │ ├── 60-assert.yaml │ ├── 60-login.yaml │ ├── helm-bitnami-postgresql-values.yaml.j2 │ ├── install-airflow.yaml.j2 │ ├── install-keycloak.yaml.j2 │ └── login.py │ ├── opa │ ├── 10-patch-ns.yaml.j2 │ ├── 11-assert.yaml │ ├── 11-install-postgresql.yaml │ ├── 11_helm-bitnami-postgresql-values.yaml.j2 │ ├── 12-assert.yaml.j2 │ ├── 12-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-install-opa.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-install-airflow.yaml.j2 │ ├── 31-opa-rules.yaml │ ├── 32-create-users.yaml │ ├── 40-assert.yaml │ ├── 40-install-test-container.yaml.j2 │ ├── 41-assert.yaml │ ├── 41-check-authorization.yaml.j2 │ ├── 41_check-authorization_2.py │ └── 41_check-authorization_3.py │ ├── orphaned-resources │ ├── 00-patch-ns.yaml.j2 │ ├── 05-assert.yaml │ ├── 05-install-postgresql.yaml │ ├── 10-assert.yaml │ ├── 10-install-redis.yaml │ ├── 20-assert.yaml.j2 │ ├── 20-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-install-airflow-cluster.yaml.j2 │ ├── 40-assert.yaml │ ├── 40-errors.yaml │ ├── 40-remove-webserver.yaml │ ├── 50-assert.yaml │ ├── 50-change-worker-rolegroup.yaml │ ├── 50-errors.yaml │ ├── helm-bitnami-postgresql-values.yaml.j2 │ └── helm-bitnami-redis-values.yaml.j2 │ ├── overrides │ ├── 05-assert.yaml │ ├── 05-install-postgresql.yaml │ ├── 07-assert.yaml.j2 │ ├── 07-install-redis.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-install-airflow.yaml.j2 │ ├── 11-assert.yaml │ ├── 20-assert.yaml │ ├── 20-install-airflow2.yaml.j2 │ ├── 21-assert.yaml │ ├── helm-bitnami-postgresql-values.yaml.j2 │ └── helm-bitnami-redis-values.yaml.j2 │ ├── remote-logging │ ├── 00-patch-ns.yaml.j2 │ ├── 00-range-limit.yaml.j2 │ ├── 02-s3-secret.yaml │ ├── 03-assert.yaml │ ├── 03-setup-minio.yaml │ ├── 10-assert.yaml │ ├── 10-install-postgresql.yaml │ ├── 20-assert.yaml.j2 │ ├── 20-install-redis.yaml.j2 │ ├── 40-assert.yaml.j2 │ ├── 40-install-airflow-cluster.yaml.j2 │ ├── 50-assert.yaml │ ├── 50-install-airflow-python.yaml │ ├── 60-assert.yaml.j2 │ ├── 60-health-check.yaml │ ├── 70-assert.yaml.j2 │ ├── 70-install-remote-logging-script.yaml │ ├── helm-bitnami-minio-values.yaml │ ├── helm-bitnami-postgresql-values.yaml.j2 │ ├── helm-bitnami-redis-values.yaml.j2 │ └── remote-logging-metrics.py │ ├── resources │ ├── 00-patch-ns.yaml.j2 │ ├── 05-assert.yaml │ ├── 05-install-postgresql.yaml │ ├── 10-assert.yaml │ ├── 10-install-redis.yaml │ ├── 20-assert.yaml.j2 │ ├── 20-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 30-assert.yaml.j2 │ ├── 30-install-airflow-cluster.yaml.j2 │ ├── helm-bitnami-postgresql-values.yaml.j2 │ └── helm-bitnami-redis-values.yaml.j2 │ ├── smoke │ ├── 00-patch-ns.yaml.j2 │ ├── 00-range-limit.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-install-postgresql.yaml │ ├── 20-assert.yaml.j2 │ ├── 20-install-redis.yaml.j2 │ ├── 30-assert.yaml.j2 │ ├── 30-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 40-assert.yaml.j2 │ ├── 40-install-airflow-cluster.yaml.j2 │ ├── 41-assert.yaml │ ├── 50-assert.yaml │ ├── 50-install-airflow-python.yaml │ ├── 60-assert.yaml.j2 │ ├── 60-health-check.yaml │ ├── 70-assert.yaml.j2 │ ├── 70-install-metrics-script.yaml │ ├── 80-assert.yaml.j2 │ ├── helm-bitnami-postgresql-values.yaml.j2 │ └── helm-bitnami-redis-values.yaml.j2 │ └── triggerer │ ├── 00-patch-ns.yaml.j2 │ ├── 05-assert.yaml │ ├── 05-install-postgresql.yaml │ ├── 10-assert.yaml.j2 │ ├── 10-install-redis.yaml.j2 │ ├── 30-assert.yaml.j2 │ ├── 30-install-airflow-cluster.yaml.j2 │ ├── 40-assert.yaml │ ├── 40-install-airflow-python.yaml │ ├── 50-assert.yaml.j2 │ ├── 50-health-check.yaml │ ├── 60-assert.yaml.j2 │ ├── 60-install-metrics-script.yaml │ ├── 70-assert.yaml.j2 │ ├── helm-bitnami-postgresql-values.yaml.j2 │ ├── helm-bitnami-redis-values.yaml.j2 │ └── triggerer_metrics.py └── test-definition.yaml /.actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.actionlint.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.envrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.envrc.sample -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-normal-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.github/ISSUE_TEMPLATE/01-normal-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.github/ISSUE_TEMPLATE/02-bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.github/ISSUE_TEMPLATE/new_version.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/normal-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.github/ISSUE_TEMPLATE/normal-issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pre-release-getting-started-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.github/PULL_REQUEST_TEMPLATE/pre-release-getting-started-script.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pre-release-rust-deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.github/PULL_REQUEST_TEMPLATE/pre-release-rust-deps.md -------------------------------------------------------------------------------- /.github/actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.github/actionlint.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/general_daily_security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.github/workflows/general_daily_security.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.github/workflows/integration-test.yml -------------------------------------------------------------------------------- /.github/workflows/pr_pre-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.github/workflows/pr_pre-commit.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.hadolint.yaml -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readme/README.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.readme/README.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/documentation.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.readme/partials/borrowed/documentation.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/footer.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.readme/partials/borrowed/footer.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/header.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.readme/partials/borrowed/header.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/links.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.readme/partials/borrowed/links.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/overview_blurb.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.readme/partials/borrowed/overview_blurb.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/related_reading.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.readme/partials/borrowed/related_reading.md.j2 -------------------------------------------------------------------------------- /.readme/partials/main.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.readme/partials/main.md.j2 -------------------------------------------------------------------------------- /.readme/static/borrowed/Icon_Stackable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.readme/static/borrowed/Icon_Stackable.svg -------------------------------------------------------------------------------- /.readme/static/borrowed/stackable_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.readme/static/borrowed/stackable_overview.png -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/Cargo.nix -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/README.md -------------------------------------------------------------------------------- /Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/Tiltfile -------------------------------------------------------------------------------- /crate-hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/crate-hashes.json -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/default.nix -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deny.toml -------------------------------------------------------------------------------- /deploy/DO_NOT_EDIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/DO_NOT_EDIT.md -------------------------------------------------------------------------------- /deploy/config-spec/properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/config-spec/properties.yaml -------------------------------------------------------------------------------- /deploy/helm/airflow-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/airflow-operator/.helmignore -------------------------------------------------------------------------------- /deploy/helm/airflow-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/airflow-operator/Chart.yaml -------------------------------------------------------------------------------- /deploy/helm/airflow-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/airflow-operator/README.md -------------------------------------------------------------------------------- /deploy/helm/airflow-operator/configs/properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/airflow-operator/configs/properties.yaml -------------------------------------------------------------------------------- /deploy/helm/airflow-operator/crds/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/airflow-operator/crds/crds.yaml -------------------------------------------------------------------------------- /deploy/helm/airflow-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/airflow-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/helm/airflow-operator/templates/_maintenance.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/airflow-operator/templates/_maintenance.tpl -------------------------------------------------------------------------------- /deploy/helm/airflow-operator/templates/_telemetry.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/airflow-operator/templates/_telemetry.tpl -------------------------------------------------------------------------------- /deploy/helm/airflow-operator/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/airflow-operator/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/helm/airflow-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/airflow-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/helm/airflow-operator/templates/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/airflow-operator/templates/roles.yaml -------------------------------------------------------------------------------- /deploy/helm/airflow-operator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/airflow-operator/templates/service.yaml -------------------------------------------------------------------------------- /deploy/helm/airflow-operator/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/airflow-operator/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /deploy/helm/airflow-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/airflow-operator/values.yaml -------------------------------------------------------------------------------- /deploy/helm/ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/helm/ct.yaml -------------------------------------------------------------------------------- /deploy/stackable-operators-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/deploy/stackable-operators-ns.yaml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/antora.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: home 3 | version: "nightly" 4 | -------------------------------------------------------------------------------- /docs/modules/airflow/examples/example-airflow-dags-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/example-airflow-dags-configmap.yaml -------------------------------------------------------------------------------- /docs/modules/airflow/examples/example-airflow-gitsync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/example-airflow-gitsync.yaml -------------------------------------------------------------------------------- /docs/modules/airflow/examples/example-airflow-incluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/example-airflow-incluster.yaml -------------------------------------------------------------------------------- /docs/modules/airflow/examples/example-airflow-kubernetes-executor-s3-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/example-airflow-kubernetes-executor-s3-logging.yaml -------------------------------------------------------------------------------- /docs/modules/airflow/examples/example-airflow-kubernetes-executor-s3-xcom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/example-airflow-kubernetes-executor-s3-xcom.yaml -------------------------------------------------------------------------------- /docs/modules/airflow/examples/example-airflow-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/example-airflow-secret.yaml -------------------------------------------------------------------------------- /docs/modules/airflow/examples/example-airflow-spark-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/example-airflow-spark-clusterrole.yaml -------------------------------------------------------------------------------- /docs/modules/airflow/examples/example-airflow-spark-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/example-airflow-spark-clusterrolebinding.yaml -------------------------------------------------------------------------------- /docs/modules/airflow/examples/example-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/example-configmap.yaml -------------------------------------------------------------------------------- /docs/modules/airflow/examples/example-pyspark-pi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/example-pyspark-pi.yaml -------------------------------------------------------------------------------- /docs/modules/airflow/examples/example-spark-dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/example-spark-dag.py -------------------------------------------------------------------------------- /docs/modules/airflow/examples/example_spark_kubernetes_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/example_spark_kubernetes_operator.py -------------------------------------------------------------------------------- /docs/modules/airflow/examples/example_spark_kubernetes_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/example_spark_kubernetes_sensor.py -------------------------------------------------------------------------------- /docs/modules/airflow/examples/getting_started/code/airflow-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/getting_started/code/airflow-credentials.yaml -------------------------------------------------------------------------------- /docs/modules/airflow/examples/getting_started/code/airflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/getting_started/code/airflow.yaml -------------------------------------------------------------------------------- /docs/modules/airflow/examples/getting_started/code/getting_started.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/getting_started/code/getting_started.sh -------------------------------------------------------------------------------- /docs/modules/airflow/examples/getting_started/code/getting_started.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/getting_started/code/getting_started.sh.j2 -------------------------------------------------------------------------------- /docs/modules/airflow/examples/getting_started/code/install_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/getting_started/code/install_output.txt -------------------------------------------------------------------------------- /docs/modules/airflow/examples/getting_started/code/install_output.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/getting_started/code/install_output.txt.j2 -------------------------------------------------------------------------------- /docs/modules/airflow/examples/getting_started/code/test_getting_started_helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/getting_started/code/test_getting_started_helm.sh -------------------------------------------------------------------------------- /docs/modules/airflow/examples/getting_started/code/test_getting_started_stackablectl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/examples/getting_started/code/test_getting_started_stackablectl.sh -------------------------------------------------------------------------------- /docs/modules/airflow/images/airflow_connection_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/airflow_connection_ui.png -------------------------------------------------------------------------------- /docs/modules/airflow/images/airflow_dag_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/airflow_dag_graph.png -------------------------------------------------------------------------------- /docs/modules/airflow/images/airflow_dag_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/airflow_dag_log.png -------------------------------------------------------------------------------- /docs/modules/airflow/images/airflow_dag_log_opensearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/airflow_dag_log_opensearch.png -------------------------------------------------------------------------------- /docs/modules/airflow/images/airflow_dag_s3_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/airflow_dag_s3_logs.png -------------------------------------------------------------------------------- /docs/modules/airflow/images/airflow_dags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/airflow_dags.png -------------------------------------------------------------------------------- /docs/modules/airflow/images/airflow_edit_s3_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/airflow_edit_s3_connection.png -------------------------------------------------------------------------------- /docs/modules/airflow/images/airflow_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/airflow_login.png -------------------------------------------------------------------------------- /docs/modules/airflow/images/airflow_overview.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/airflow_overview.drawio.svg -------------------------------------------------------------------------------- /docs/modules/airflow/images/airflow_running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/airflow_running.png -------------------------------------------------------------------------------- /docs/modules/airflow/images/airflow_security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/airflow_security.png -------------------------------------------------------------------------------- /docs/modules/airflow/images/airflow_security_ldap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/airflow_security_ldap.png -------------------------------------------------------------------------------- /docs/modules/airflow/images/getting_started/airflow_dags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/getting_started/airflow_dags.png -------------------------------------------------------------------------------- /docs/modules/airflow/images/getting_started/airflow_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/getting_started/airflow_login.png -------------------------------------------------------------------------------- /docs/modules/airflow/images/getting_started/airflow_pods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/getting_started/airflow_pods.png -------------------------------------------------------------------------------- /docs/modules/airflow/images/getting_started/airflow_running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/images/getting_started/airflow_running.png -------------------------------------------------------------------------------- /docs/modules/airflow/pages/getting_started/first_steps.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/getting_started/first_steps.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/getting_started/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/getting_started/index.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/getting_started/installation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/getting_started/installation.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/reference/commandline-parameters.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/reference/commandline-parameters.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/reference/crds.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/reference/crds.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/reference/environment-variables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/reference/environment-variables.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/reference/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/reference/index.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/required-external-components.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/required-external-components.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/troubleshooting/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/troubleshooting/index.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/applying-custom-resources.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/applying-custom-resources.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/db-init.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/db-init.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/index.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/listenerclass.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/listenerclass.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/logging.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/logging.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/monitoring.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/monitoring.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/mounting-dags.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/mounting-dags.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/operations/cluster-operations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/operations/cluster-operations.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/operations/graceful-shutdown.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/operations/graceful-shutdown.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/operations/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/operations/index.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/operations/pod-disruptions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/operations/pod-disruptions.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/operations/pod-placement.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/operations/pod-placement.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/overrides.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/overrides.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/security.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/security.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/storage-resources.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/storage-resources.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/pages/usage-guide/using-kubernetes-executors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/pages/usage-guide/using-kubernetes-executors.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/partials/hardware-requirements.adoc: -------------------------------------------------------------------------------- 1 | * 0.2 cores (e.g. i5 or similar) 2 | * 256MB RAM 3 | -------------------------------------------------------------------------------- /docs/modules/airflow/partials/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/partials/nav.adoc -------------------------------------------------------------------------------- /docs/modules/airflow/partials/supported-versions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/modules/airflow/partials/supported-versions.adoc -------------------------------------------------------------------------------- /docs/templating_vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/docs/templating_vars.yaml -------------------------------------------------------------------------------- /examples/simple-airflow-cluster-dags-cmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/examples/simple-airflow-cluster-dags-cmap.yaml -------------------------------------------------------------------------------- /examples/simple-airflow-cluster-ldap-insecure-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/examples/simple-airflow-cluster-ldap-insecure-tls.yaml -------------------------------------------------------------------------------- /examples/simple-airflow-cluster-ldap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/examples/simple-airflow-cluster-ldap.yaml -------------------------------------------------------------------------------- /examples/simple-airflow-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/examples/simple-airflow-cluster.yaml -------------------------------------------------------------------------------- /nix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/nix/README.md -------------------------------------------------------------------------------- /nix/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/nix/meta.json -------------------------------------------------------------------------------- /nix/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/nix/sources.json -------------------------------------------------------------------------------- /nix/sources.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/nix/sources.nix -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/renovate.json -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rust/operator-binary/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/Cargo.toml -------------------------------------------------------------------------------- /rust/operator-binary/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/build.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/airflow_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/airflow_controller.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/config.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/controller_commons.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/controller_commons.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/affinity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/crd/affinity.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/authentication.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/crd/authentication.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/authorization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/crd/authorization.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/internal_secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/crd/internal_secret.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/crd/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/env_vars.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/env_vars.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/main.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/graceful_shutdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/operations/graceful_shutdown.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/operations/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/pdb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/operations/pdb.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/product_logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/product_logging.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/service.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rust/operator-binary/src/util.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /scripts/auto-retry-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/scripts/auto-retry-tests.py -------------------------------------------------------------------------------- /scripts/docs_templating.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/scripts/docs_templating.sh -------------------------------------------------------------------------------- /scripts/ensure_one_trailing_newline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/scripts/ensure_one_trailing_newline.py -------------------------------------------------------------------------------- /scripts/generate-manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/scripts/generate-manifests.sh -------------------------------------------------------------------------------- /scripts/render_readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/scripts/render_readme.sh -------------------------------------------------------------------------------- /scripts/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/scripts/run-tests -------------------------------------------------------------------------------- /scripts/run_tests.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ./scripts/run-tests "$@" 4 | -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/shell.nix -------------------------------------------------------------------------------- /tests/README-templating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/README-templating.md -------------------------------------------------------------------------------- /tests/interu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/interu.yaml -------------------------------------------------------------------------------- /tests/kuttl-test.yaml.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/kuttl-test.yaml.jinja2 -------------------------------------------------------------------------------- /tests/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/release.yaml -------------------------------------------------------------------------------- /tests/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/02-install-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/02-install-postgresql.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/04-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/04-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/04-install-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/04-install-redis.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/06-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/06-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/06-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/06-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/08-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/08-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/08-install-airflow.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/08-install-airflow.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/09-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/09-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/10-pause-airflow.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/10-pause-airflow.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/20-stop-airflow.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/20-stop-airflow.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/30-restart-airflow.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/30-restart-airflow.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/31-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/31-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/helm-bitnami-redis-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/cluster-operation/helm-bitnami-redis-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/commons/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/commons/health.py -------------------------------------------------------------------------------- /tests/templates/kuttl/commons/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/commons/metrics.py -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/external-access/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/10-install-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/external-access/10-install-postgresql.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/external-access/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/20-install-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/external-access/20-install-redis.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/30-listener-classes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/external-access/30-listener-classes.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/40-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/external-access/40-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/40-install-airflow-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/external-access/40-install-airflow-cluster.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/50-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/external-access/50-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/external-access/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/helm-bitnami-redis-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/external-access/helm-bitnami-redis-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/install-airflow-cluster.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/external-access/install-airflow-cluster.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/listener-classes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/external-access/listener-classes.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/05-install-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/05-install-postgresql.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/10-install-redis.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/10-install-redis.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/20-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/20-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/20-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/20-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/30-install-openldap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/30-install-openldap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/40-create-ldap-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/40-create-ldap-user.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/50-create-authentication-classes.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/50-create-authentication-classes.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/60-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/60-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/60-install-airflow-cluster.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/60-install-airflow-cluster.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/70-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/70-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/70-install-airflow-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/70-install-airflow-python.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/80-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/80-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/80-health-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/80-health-check.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/90-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/90-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/90-install-metrics-script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/90-install-metrics-script.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/95-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/95-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/create_ldap_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/create_ldap_user.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/helm-bitnami-redis-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/ldap/helm-bitnami-redis-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/05-install-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/05-install-postgresql.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/10-install-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/10-install-redis.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/20-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/20-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/20-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/20-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/30-install-airflow-vector-aggregator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/30-install-airflow-vector-aggregator.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/40-create-configmap-with-prepared-logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/40-create-configmap-with-prepared-logs.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/41-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/41-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/41-install-airflow-cluster.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/41-install-airflow-cluster.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/50-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/50-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/50-install-airflow-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/50-install-airflow-python.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/51-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/51-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/51-health-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/51-health-check.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/52-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/52-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/52-install-metrics-script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/52-install-metrics-script.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/60-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/60-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/60-test-log-aggregation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/60-test-log-aggregation.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/70-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/70-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/airflow-vector-aggregator-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/airflow-vector-aggregator-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/helm-bitnami-redis-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/helm-bitnami-redis-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/prepared-logs.py.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/prepared-logs.py.json -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/test_log_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/logging/test_log_aggregation.py -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/05-install-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/05-install-postgresql.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/10-install-redis.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/10-install-redis.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/20-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/20-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/20-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/20-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/30-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/30-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/30-install-airflow-cluster.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/30-install-airflow-cluster.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/40-install-airflow-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/40-install-airflow-python.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/50-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/50-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/50-health-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/50-health-check.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/60-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/60-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/60-install-metrics-script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/60-install-metrics-script.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/70-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/70-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-configmap/helm-bitnami-redis-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-configmap/helm-bitnami-redis-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/03-install-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/03-install-postgresql.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/04-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/04-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/04-install-redis.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/04-install-redis.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/05-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/05-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/05-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/05-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/10-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/10-clusterrole.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/30-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/30-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/30-install-airflow-cluster.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/30-install-airflow-cluster.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/31-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/31-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/40-install-airflow-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/40-install-airflow-python.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/50-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/50-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/50-health-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/50-health-check.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/60-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/60-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/60-install-metrics-script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/60-install-metrics-script.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/70-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/70-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/dag_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/dag_metrics.py -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/mount-dags-gitsync/helm-bitnami-redis-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/mount-dags-gitsync/helm-bitnami-redis-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/10-install-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/10-install-postgresql.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/20-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/20-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/20-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/20-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/30-install-keycloak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/30-install-keycloak.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/40-install-airflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/40-install-airflow.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/50-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/50-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/50-install-test-container.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/50-install-test-container.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/60-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/60-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/60-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/60-login.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/install-airflow.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/install-airflow.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/install-keycloak.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/install-keycloak.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/oidc/login.py -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/10-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/10-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/11-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/11-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/11-install-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/11-install-postgresql.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/11_helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/11_helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/12-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/12-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/12-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/12-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/20-install-opa.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/20-install-opa.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/30-install-airflow.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/30-install-airflow.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/31-opa-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/31-opa-rules.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/32-create-users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/32-create-users.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/40-install-test-container.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/40-install-test-container.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/41-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/41-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/41-check-authorization.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/41-check-authorization.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/41_check-authorization_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/41_check-authorization_2.py -------------------------------------------------------------------------------- /tests/templates/kuttl/opa/41_check-authorization_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/opa/41_check-authorization_3.py -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/05-install-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/05-install-postgresql.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/10-install-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/10-install-redis.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/20-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/20-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/20-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/20-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/30-install-airflow-cluster.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/30-install-airflow-cluster.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/40-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/40-errors.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/40-remove-webserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/40-remove-webserver.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/50-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/50-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/50-change-worker-rolegroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/50-change-worker-rolegroup.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/50-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/50-errors.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/helm-bitnami-redis-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/orphaned-resources/helm-bitnami-redis-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/overrides/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/05-install-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/overrides/05-install-postgresql.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/07-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/overrides/07-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/07-install-redis.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/overrides/07-install-redis.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/overrides/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/10-install-airflow.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/overrides/10-install-airflow.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/11-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/overrides/11-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/overrides/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/20-install-airflow2.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/overrides/20-install-airflow2.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/21-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/overrides/21-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/overrides/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/helm-bitnami-redis-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/overrides/helm-bitnami-redis-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/00-range-limit.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/00-range-limit.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/02-s3-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/02-s3-secret.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/03-setup-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/03-setup-minio.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/10-install-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/10-install-postgresql.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/20-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/20-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/20-install-redis.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/20-install-redis.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/40-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/40-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/40-install-airflow-cluster.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/40-install-airflow-cluster.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/50-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/50-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/50-install-airflow-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/50-install-airflow-python.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/60-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/60-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/60-health-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/60-health-check.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/70-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/70-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/70-install-remote-logging-script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/70-install-remote-logging-script.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/helm-bitnami-minio-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/helm-bitnami-minio-values.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/helm-bitnami-redis-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/helm-bitnami-redis-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/remote-logging/remote-logging-metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/remote-logging/remote-logging-metrics.py -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/resources/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/resources/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/05-install-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/resources/05-install-postgresql.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/resources/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/10-install-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/resources/10-install-redis.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/20-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/resources/20-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/20-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/resources/20-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/30-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/resources/30-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/30-install-airflow-cluster.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/resources/30-install-airflow-cluster.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/resources/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/helm-bitnami-redis-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/resources/helm-bitnami-redis-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-range-limit.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/00-range-limit.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/10-install-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/10-install-postgresql.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/20-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/20-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/20-install-redis.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/20-install-redis.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/30-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/30-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/30-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/30-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/40-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/40-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/40-install-airflow-cluster.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/40-install-airflow-cluster.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/41-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/41-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/50-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/50-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/50-install-airflow-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/50-install-airflow-python.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/60-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/60-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/60-health-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/60-health-check.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/70-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/70-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/70-install-metrics-script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/70-install-metrics-script.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/80-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/80-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/helm-bitnami-redis-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/smoke/helm-bitnami-redis-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/05-install-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/05-install-postgresql.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/10-install-redis.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/10-install-redis.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/30-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/30-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/30-install-airflow-cluster.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/30-install-airflow-cluster.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/40-install-airflow-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/40-install-airflow-python.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/50-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/50-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/50-health-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/50-health-check.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/60-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/60-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/60-install-metrics-script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/60-install-metrics-script.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/70-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/70-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/helm-bitnami-redis-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/helm-bitnami-redis-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/triggerer/triggerer_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/templates/kuttl/triggerer/triggerer_metrics.py -------------------------------------------------------------------------------- /tests/test-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/airflow-operator/HEAD/tests/test-definition.yaml --------------------------------------------------------------------------------