├── .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 │ ├── chart_testing.yaml │ ├── ct.yaml │ └── trino-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 └── stackable-operators-ns.yaml ├── docker └── Dockerfile ├── docs ├── antora.yml ├── modules │ └── trino │ │ ├── assets │ │ └── images │ │ │ ├── connect-with-dbeaver-1.png │ │ │ ├── connect-with-dbeaver-2.png │ │ │ ├── connect-with-dbeaver-3.png │ │ │ ├── connect-with-superset-1.png │ │ │ ├── connect-with-superset-2.png │ │ │ ├── trino-web-ui-finished.png │ │ │ └── trino-web-ui.png │ │ ├── examples │ │ ├── getting_started │ │ │ └── code │ │ │ │ ├── getting_started.sh │ │ │ │ ├── getting_started.sh.j2 │ │ │ │ ├── install_output.txt │ │ │ │ ├── install_output.txt.j2 │ │ │ │ ├── test_getting_started_helm.sh │ │ │ │ ├── test_getting_started_stackablectl.sh │ │ │ │ ├── trino.yaml │ │ │ │ └── trino.yaml.j2 │ │ └── usage-guide │ │ │ ├── fault-tolerant-execution.yaml │ │ │ ├── opa-bundle-trino-cm.yaml │ │ │ ├── trino-file-auth-snippet.yaml │ │ │ ├── trino-insecure.yaml │ │ │ ├── trino-ldap-auth-snippet.yaml │ │ │ ├── trino-oidc-auth-snippet.yaml │ │ │ ├── trino-secure-internal-tls.yaml │ │ │ ├── trino-secure-tls-only.yaml │ │ │ └── trino-secure-tls.yaml │ │ ├── images │ │ ├── catalogs.drawio.svg │ │ └── trino_overview.drawio.svg │ │ ├── pages │ │ ├── concepts.adoc │ │ ├── getting_started │ │ │ ├── first_steps.adoc │ │ │ ├── index.adoc │ │ │ └── installation.adoc │ │ ├── index.adoc │ │ ├── reference │ │ │ ├── commandline-parameters.adoc │ │ │ ├── crds.adoc │ │ │ ├── environment-variables.adoc │ │ │ └── index.adoc │ │ └── usage-guide │ │ │ ├── OpenTelemetry.adoc │ │ │ ├── catalogs │ │ │ ├── black-hole.adoc │ │ │ ├── delta-lake.adoc │ │ │ ├── generic.adoc │ │ │ ├── google-sheets.adoc │ │ │ ├── hive.adoc │ │ │ ├── iceberg.adoc │ │ │ ├── index.adoc │ │ │ ├── tpcds.adoc │ │ │ └── tpch.adoc │ │ │ ├── client-spooling-protocol.adoc │ │ │ ├── configuration.adoc │ │ │ ├── connect_to_trino.adoc │ │ │ ├── fault-tolerant-execution.adoc │ │ │ ├── index.adoc │ │ │ ├── listenerclass.adoc │ │ │ ├── log_aggregation.adoc │ │ │ ├── monitoring.adoc │ │ │ ├── operations │ │ │ ├── cluster-operations.adoc │ │ │ ├── graceful-shutdown.adoc │ │ │ ├── index.adoc │ │ │ ├── pod-disruptions.adoc │ │ │ └── pod-placement.adoc │ │ │ ├── overrides.adoc │ │ │ ├── query.adoc │ │ │ ├── s3.adoc │ │ │ └── security.adoc │ │ └── partials │ │ ├── nav.adoc │ │ └── supported-versions.adoc └── templating_vars.yaml ├── examples ├── simple-trino-cluster-authentication-opa-authorization-s3.yaml ├── simple-trino-cluster-hive-ha-s3.yaml ├── simple-trino-cluster-resource-limits.yaml ├── simple-trino-cluster-s3.yaml ├── simple-trino-cluster.yaml └── simple-trino-oauth2.yaml ├── nix ├── README.md ├── meta.json ├── sources.json └── sources.nix ├── renovate.json ├── rust-toolchain.toml ├── rust └── operator-binary │ ├── Cargo.toml │ ├── build.rs │ └── src │ ├── authentication │ ├── mod.rs │ ├── oidc │ │ └── mod.rs │ └── password │ │ ├── file.rs │ │ ├── ldap.rs │ │ └── mod.rs │ ├── authorization │ ├── mod.rs │ └── opa.rs │ ├── catalog │ ├── black_hole.rs │ ├── commons.rs │ ├── config.rs │ ├── delta_lake.rs │ ├── generic.rs │ ├── google_sheet.rs │ ├── hive.rs │ ├── iceberg.rs │ ├── mod.rs │ ├── tpcds.rs │ └── tpch.rs │ ├── command.rs │ ├── config │ ├── client_protocol.rs │ ├── fault_tolerant_execution.rs │ ├── jvm.rs │ ├── mod.rs │ └── s3.rs │ ├── controller.rs │ ├── crd │ ├── affinity.rs │ ├── authentication.rs │ ├── catalog │ │ ├── black_hole.rs │ │ ├── commons.rs │ │ ├── delta_lake.rs │ │ ├── generic.rs │ │ ├── google_sheet.rs │ │ ├── hive.rs │ │ ├── iceberg.rs │ │ ├── mod.rs │ │ ├── tpcds.rs │ │ └── tpch.rs │ ├── client_protocol.rs │ ├── discovery.rs │ ├── fault_tolerant_execution.rs │ └── mod.rs │ ├── listener.rs │ ├── main.rs │ ├── operations │ ├── graceful_shutdown.rs │ ├── mod.rs │ └── pdb.rs │ ├── product_logging.rs │ └── service.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 │ ├── authentication │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 00-rbac.yaml.j2 │ ├── 01-assert.yaml │ ├── 01-install-openldap.yaml │ ├── 02-assert.yaml │ ├── 02-create-ldap-user.yaml │ ├── 03-keycloak-realm.yaml │ ├── 04-assert.yaml │ ├── 04-install-keycloak.yaml.j2 │ ├── 05-assert.yaml │ ├── 05-install-test-trino.yaml.j2 │ ├── 11-create-authentication-classes.yaml │ ├── 12-assert.yaml │ ├── 12-create-trino-cluster.yaml │ ├── 20-assert.yaml │ ├── 20-test-trino.yaml │ ├── 30-hot-reloading-add-user.yaml │ ├── 31-assert.yaml │ ├── 32-hot-reloading-remove-user.yaml │ ├── 33-assert.yaml │ ├── add_user.yaml.j2 │ ├── check-oauth-login.py │ ├── create-authentication-classes.yaml.j2 │ ├── create-trino-cluster.yaml.j2 │ ├── create_ldap_user.sh │ ├── create_ldap_user_other.sh │ ├── install-openldap-other.yaml.j2 │ ├── install-openldap.yaml.j2 │ └── remove_user.yaml.j2 │ ├── client-spooling │ ├── 00-assert.yaml │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 00-rbac.yaml.j2 │ ├── 00-secrets.yaml │ ├── 01-assert.yaml │ ├── 01-install-minio.yaml │ ├── 01_helm-bitnami-minio-values.yaml │ ├── 02-assert.yaml │ ├── 02-install-trino.yaml.j2 │ ├── 03-assert.yaml │ ├── 03-install-test-helper.yaml │ ├── 04-copy-scripts.yaml │ ├── 04_query.py │ ├── 05-assert.yaml │ └── 05-run-tests.yaml │ ├── cluster-operation │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-install-trino.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-stop-trino.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-pause-trino.yaml.j2 │ ├── 40-assert.yaml │ └── 40-restart-trino.yaml.j2 │ ├── commons │ ├── check-active-workers.py │ ├── check-metrics.py │ ├── check-opa.py │ └── check-s3.py │ ├── fault-tolerant-execution │ ├── 00-assert.yaml │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 00-rbac.yaml.j2 │ ├── 00-secrets.yaml │ ├── 01-assert.yaml │ ├── 01-install-minio.yaml │ ├── 01_helm-bitnami-minio-values.yaml │ ├── 02-assert.yaml │ ├── 02-install-trino.yaml.j2 │ ├── 03-assert.yaml │ ├── 03-install-test-helper.yaml │ ├── 04-copy-scripts.yaml │ ├── 04_check-fte.py │ ├── 05-assert.yaml │ └── 05-run-tests.yaml │ ├── listener │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 00-rbac.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-install-trino.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-install-check.yaml │ ├── 21-assert.yaml │ └── 21-copy-scripts.yaml │ ├── logging │ ├── 00-patch-ns.yaml.j2 │ ├── 00-rbac.yaml.j2 │ ├── 01-assert.yaml │ ├── 01-install-trino-vector-aggregator.yaml │ ├── 02-create-configmap-with-prepared-logs.yaml │ ├── 03-assert.yaml │ ├── 03-install-trino.yaml.j2 │ ├── 04-assert.yaml │ ├── 04-install-trino-test-runner.yaml │ ├── 05-assert.yaml │ ├── 05-test-log-aggregation.yaml │ ├── prepared-logs.airlift.json │ ├── test_log_aggregation.py │ └── trino-vector-aggregator-values.yaml.j2 │ ├── opa-authorization │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-limit-range.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-rbac.yaml.j2 │ ├── 00-secrets.yaml.j2 │ ├── 01-assert.yaml │ ├── 01-install-postgres.yaml │ ├── 02-install-minio.yaml.j2 │ ├── 03-assert.yaml │ ├── 03-install-hive.yaml.j2 │ ├── 04-assert.yaml │ ├── 04-install-keycloak.yaml.j2 │ ├── 04-keycloak-realm-cm.yaml │ ├── 10-assert.yaml │ ├── 10-install-opa.yaml.j2 │ ├── 11-opa-rego.yaml │ ├── 12-stop-opa.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-install-trino.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-install-opa-check.yaml │ ├── 40-assert.yaml │ ├── 40-copy-scripts.yaml │ ├── check-opa.py.j2 │ ├── helm-bitnami-minio-values.yaml.j2 │ ├── helm-bitnami-postgresql-values.yaml.j2 │ ├── trino_policies.rego │ └── trino_rules │ │ ├── .regal │ │ └── config.yaml │ │ ├── schema │ │ ├── input.json │ │ └── policies.json │ │ └── trino │ │ ├── actual_permissions.rego │ │ ├── actual_permissions_test.rego │ │ ├── policies.rego │ │ ├── policies_test.rego │ │ ├── requested_permissions.rego │ │ ├── requested_permissions_test.rego │ │ ├── util.rego │ │ ├── util_test.rego │ │ ├── verification.rego │ │ └── verification_test.rego │ ├── orphaned-resources │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 1-assert.yaml │ ├── 1-install-trino.yaml.j2 │ ├── 2-assert.yaml │ ├── 2-errors.yaml │ └── 2-remove-rolegroup.yaml │ ├── resources │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 10-assert.yaml.j2 │ ├── 10-install-trino.yaml.j2 │ └── 20-assert.yaml │ ├── smoke │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-limit-range.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-rbac.yaml.j2 │ ├── 00-secrets.yaml.j2 │ ├── 02-install-minio.yaml.j2 │ ├── 04-prepare-bucket.yaml.j2 │ ├── 05-assert.yaml │ ├── 05-install-zookeeper.yaml.j2 │ ├── 06-assert.yaml │ ├── 06-install-hdfs.yaml.j2 │ ├── 07-assert.yaml │ ├── 07-install-postgres.yaml │ ├── 08-assert.yaml │ ├── 08-install-hive.yaml.j2 │ ├── 09-assert.yaml │ ├── 09-install-opa.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-install-trino.yaml.j2 │ ├── 11-assert.yaml │ ├── 12-assert.yaml │ ├── 20-assert.yaml │ ├── 20-install-check.yaml │ ├── 21-assert.yaml │ ├── 21-copy-scripts.yaml │ ├── 30-assert.yaml │ ├── 30-scale-trino.yaml.j2 │ ├── 31-assert.yaml │ ├── certs │ │ ├── ca.crt │ │ ├── client.crt.pem │ │ ├── client.csr.pem │ │ ├── client.key.pem │ │ ├── generate.sh │ │ ├── root-ca.crt.pem │ │ ├── root-ca.crt.srl │ │ ├── root-ca.key.pem │ │ ├── tls.crt │ │ └── tls.key │ ├── helm-bitnami-minio-values.yaml.j2 │ ├── helm-bitnami-postgresql-values.yaml.j2 │ └── yellow_tripdata_2021-07.csv │ ├── smoke_aws │ ├── 00-s3connection.yaml │ ├── 00-secretclass.yaml │ ├── 04-prepare-bucket.yaml │ ├── 05-assert.yaml │ ├── 05-install-zookeeper.yaml.j2 │ ├── 06-assert.yaml │ ├── 06-install-hdfs.yaml.j2 │ ├── 07-assert.yaml │ ├── 07-install-postgres.yaml │ ├── 08-assert.yaml │ ├── 08-install-hive.yaml.j2 │ ├── 09-assert.yaml │ ├── 09-install-opa.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-install-trino.yaml.j2 │ ├── 11-assert.yaml │ ├── 20-assert.yaml │ ├── 20-install-check.yaml │ ├── 21-assert.yaml │ ├── 21-copy-scripts.yaml │ ├── README.md │ ├── aws_secret.yaml │ ├── helm-bitnami-postgresql-values.yaml.j2 │ └── yellow_tripdata_2021-07.csv │ └── tls │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 00-rbac.yaml.j2 │ ├── 10-assert.yaml.j2 │ ├── 10-install-trino.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-install-check.yaml.j2 │ ├── 21-assert.yaml.j2 │ ├── 21-install-requirements.yaml.j2 │ ├── check-tls.py │ ├── test-config.json.j2 │ └── untrusted-cert.crt └── test-definition.yaml /.actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.actionlint.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.envrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.envrc.sample -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-normal-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.github/ISSUE_TEMPLATE/01-normal-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.github/ISSUE_TEMPLATE/02-bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.github/ISSUE_TEMPLATE/new_version.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/normal-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.github/ISSUE_TEMPLATE/normal-issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pre-release-getting-started-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-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/trino-operator/HEAD/.github/PULL_REQUEST_TEMPLATE/pre-release-rust-deps.md -------------------------------------------------------------------------------- /.github/actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.github/actionlint.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/general_daily_security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.github/workflows/general_daily_security.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.github/workflows/integration-test.yml -------------------------------------------------------------------------------- /.github/workflows/pr_pre-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.github/workflows/pr_pre-commit.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.hadolint.yaml -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readme/README.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.readme/README.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/documentation.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.readme/partials/borrowed/documentation.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/footer.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.readme/partials/borrowed/footer.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/header.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.readme/partials/borrowed/header.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/links.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.readme/partials/borrowed/links.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/overview_blurb.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.readme/partials/borrowed/overview_blurb.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/related_reading.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.readme/partials/borrowed/related_reading.md.j2 -------------------------------------------------------------------------------- /.readme/partials/main.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.readme/partials/main.md.j2 -------------------------------------------------------------------------------- /.readme/static/borrowed/Icon_Stackable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.readme/static/borrowed/Icon_Stackable.svg -------------------------------------------------------------------------------- /.readme/static/borrowed/stackable_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.readme/static/borrowed/stackable_overview.png -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/Cargo.nix -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/README.md -------------------------------------------------------------------------------- /Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/Tiltfile -------------------------------------------------------------------------------- /crate-hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/crate-hashes.json -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/default.nix -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deny.toml -------------------------------------------------------------------------------- /deploy/DO_NOT_EDIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/DO_NOT_EDIT.md -------------------------------------------------------------------------------- /deploy/config-spec/properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/config-spec/properties.yaml -------------------------------------------------------------------------------- /deploy/helm/chart_testing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/chart_testing.yaml -------------------------------------------------------------------------------- /deploy/helm/ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/ct.yaml -------------------------------------------------------------------------------- /deploy/helm/trino-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/trino-operator/.helmignore -------------------------------------------------------------------------------- /deploy/helm/trino-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/trino-operator/Chart.yaml -------------------------------------------------------------------------------- /deploy/helm/trino-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/trino-operator/README.md -------------------------------------------------------------------------------- /deploy/helm/trino-operator/configs/properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/trino-operator/configs/properties.yaml -------------------------------------------------------------------------------- /deploy/helm/trino-operator/crds/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/trino-operator/crds/crds.yaml -------------------------------------------------------------------------------- /deploy/helm/trino-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/trino-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/helm/trino-operator/templates/_maintenance.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/trino-operator/templates/_maintenance.tpl -------------------------------------------------------------------------------- /deploy/helm/trino-operator/templates/_telemetry.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/trino-operator/templates/_telemetry.tpl -------------------------------------------------------------------------------- /deploy/helm/trino-operator/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/trino-operator/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/helm/trino-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/trino-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/helm/trino-operator/templates/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/trino-operator/templates/roles.yaml -------------------------------------------------------------------------------- /deploy/helm/trino-operator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/trino-operator/templates/service.yaml -------------------------------------------------------------------------------- /deploy/helm/trino-operator/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/trino-operator/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /deploy/helm/trino-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/helm/trino-operator/values.yaml -------------------------------------------------------------------------------- /deploy/stackable-operators-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/deploy/stackable-operators-ns.yaml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/antora.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: home 3 | version: "nightly" 4 | -------------------------------------------------------------------------------- /docs/modules/trino/assets/images/connect-with-dbeaver-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/assets/images/connect-with-dbeaver-1.png -------------------------------------------------------------------------------- /docs/modules/trino/assets/images/connect-with-dbeaver-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/assets/images/connect-with-dbeaver-2.png -------------------------------------------------------------------------------- /docs/modules/trino/assets/images/connect-with-dbeaver-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/assets/images/connect-with-dbeaver-3.png -------------------------------------------------------------------------------- /docs/modules/trino/assets/images/connect-with-superset-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/assets/images/connect-with-superset-1.png -------------------------------------------------------------------------------- /docs/modules/trino/assets/images/connect-with-superset-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/assets/images/connect-with-superset-2.png -------------------------------------------------------------------------------- /docs/modules/trino/assets/images/trino-web-ui-finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/assets/images/trino-web-ui-finished.png -------------------------------------------------------------------------------- /docs/modules/trino/assets/images/trino-web-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/assets/images/trino-web-ui.png -------------------------------------------------------------------------------- /docs/modules/trino/examples/getting_started/code/getting_started.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/getting_started/code/getting_started.sh -------------------------------------------------------------------------------- /docs/modules/trino/examples/getting_started/code/getting_started.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/getting_started/code/getting_started.sh.j2 -------------------------------------------------------------------------------- /docs/modules/trino/examples/getting_started/code/install_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/getting_started/code/install_output.txt -------------------------------------------------------------------------------- /docs/modules/trino/examples/getting_started/code/install_output.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/getting_started/code/install_output.txt.j2 -------------------------------------------------------------------------------- /docs/modules/trino/examples/getting_started/code/test_getting_started_helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/getting_started/code/test_getting_started_helm.sh -------------------------------------------------------------------------------- /docs/modules/trino/examples/getting_started/code/test_getting_started_stackablectl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/getting_started/code/test_getting_started_stackablectl.sh -------------------------------------------------------------------------------- /docs/modules/trino/examples/getting_started/code/trino.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/getting_started/code/trino.yaml -------------------------------------------------------------------------------- /docs/modules/trino/examples/getting_started/code/trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/getting_started/code/trino.yaml.j2 -------------------------------------------------------------------------------- /docs/modules/trino/examples/usage-guide/fault-tolerant-execution.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/usage-guide/fault-tolerant-execution.yaml -------------------------------------------------------------------------------- /docs/modules/trino/examples/usage-guide/opa-bundle-trino-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/usage-guide/opa-bundle-trino-cm.yaml -------------------------------------------------------------------------------- /docs/modules/trino/examples/usage-guide/trino-file-auth-snippet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/usage-guide/trino-file-auth-snippet.yaml -------------------------------------------------------------------------------- /docs/modules/trino/examples/usage-guide/trino-insecure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/usage-guide/trino-insecure.yaml -------------------------------------------------------------------------------- /docs/modules/trino/examples/usage-guide/trino-ldap-auth-snippet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/usage-guide/trino-ldap-auth-snippet.yaml -------------------------------------------------------------------------------- /docs/modules/trino/examples/usage-guide/trino-oidc-auth-snippet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/usage-guide/trino-oidc-auth-snippet.yaml -------------------------------------------------------------------------------- /docs/modules/trino/examples/usage-guide/trino-secure-internal-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/usage-guide/trino-secure-internal-tls.yaml -------------------------------------------------------------------------------- /docs/modules/trino/examples/usage-guide/trino-secure-tls-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/usage-guide/trino-secure-tls-only.yaml -------------------------------------------------------------------------------- /docs/modules/trino/examples/usage-guide/trino-secure-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/examples/usage-guide/trino-secure-tls.yaml -------------------------------------------------------------------------------- /docs/modules/trino/images/catalogs.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/images/catalogs.drawio.svg -------------------------------------------------------------------------------- /docs/modules/trino/images/trino_overview.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/images/trino_overview.drawio.svg -------------------------------------------------------------------------------- /docs/modules/trino/pages/concepts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/concepts.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/getting_started/first_steps.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/getting_started/first_steps.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/getting_started/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/getting_started/index.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/getting_started/installation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/getting_started/installation.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/reference/commandline-parameters.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/reference/commandline-parameters.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/reference/crds.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/reference/crds.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/reference/environment-variables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/reference/environment-variables.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/reference/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/reference/index.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/OpenTelemetry.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/OpenTelemetry.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/catalogs/black-hole.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/catalogs/black-hole.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/catalogs/delta-lake.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/catalogs/delta-lake.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/catalogs/generic.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/catalogs/generic.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/catalogs/google-sheets.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/catalogs/google-sheets.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/catalogs/hive.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/catalogs/hive.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/catalogs/iceberg.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/catalogs/iceberg.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/catalogs/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/catalogs/index.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/catalogs/tpcds.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/catalogs/tpcds.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/catalogs/tpch.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/catalogs/tpch.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/client-spooling-protocol.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/client-spooling-protocol.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/configuration.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/connect_to_trino.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/connect_to_trino.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/fault-tolerant-execution.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/fault-tolerant-execution.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/index.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/listenerclass.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/listenerclass.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/log_aggregation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/log_aggregation.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/monitoring.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/monitoring.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/operations/cluster-operations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/operations/cluster-operations.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/operations/graceful-shutdown.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/operations/graceful-shutdown.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/operations/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/operations/index.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/operations/pod-disruptions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/operations/pod-disruptions.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/operations/pod-placement.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/operations/pod-placement.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/overrides.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/overrides.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/query.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/query.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/s3.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/s3.adoc -------------------------------------------------------------------------------- /docs/modules/trino/pages/usage-guide/security.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/pages/usage-guide/security.adoc -------------------------------------------------------------------------------- /docs/modules/trino/partials/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/partials/nav.adoc -------------------------------------------------------------------------------- /docs/modules/trino/partials/supported-versions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/modules/trino/partials/supported-versions.adoc -------------------------------------------------------------------------------- /docs/templating_vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/docs/templating_vars.yaml -------------------------------------------------------------------------------- /examples/simple-trino-cluster-authentication-opa-authorization-s3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/examples/simple-trino-cluster-authentication-opa-authorization-s3.yaml -------------------------------------------------------------------------------- /examples/simple-trino-cluster-hive-ha-s3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/examples/simple-trino-cluster-hive-ha-s3.yaml -------------------------------------------------------------------------------- /examples/simple-trino-cluster-resource-limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/examples/simple-trino-cluster-resource-limits.yaml -------------------------------------------------------------------------------- /examples/simple-trino-cluster-s3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/examples/simple-trino-cluster-s3.yaml -------------------------------------------------------------------------------- /examples/simple-trino-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/examples/simple-trino-cluster.yaml -------------------------------------------------------------------------------- /examples/simple-trino-oauth2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/examples/simple-trino-oauth2.yaml -------------------------------------------------------------------------------- /nix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/nix/README.md -------------------------------------------------------------------------------- /nix/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/nix/meta.json -------------------------------------------------------------------------------- /nix/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/nix/sources.json -------------------------------------------------------------------------------- /nix/sources.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/nix/sources.nix -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/renovate.json -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rust/operator-binary/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/Cargo.toml -------------------------------------------------------------------------------- /rust/operator-binary/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/build.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/authentication/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/authentication/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/authentication/oidc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/authentication/oidc/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/authentication/password/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/authentication/password/file.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/authentication/password/ldap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/authentication/password/ldap.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/authentication/password/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/authentication/password/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/authorization/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod opa; 2 | -------------------------------------------------------------------------------- /rust/operator-binary/src/authorization/opa.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/authorization/opa.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/catalog/black_hole.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/catalog/black_hole.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/catalog/commons.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/catalog/commons.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/catalog/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/catalog/config.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/catalog/delta_lake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/catalog/delta_lake.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/catalog/generic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/catalog/generic.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/catalog/google_sheet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/catalog/google_sheet.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/catalog/hive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/catalog/hive.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/catalog/iceberg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/catalog/iceberg.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/catalog/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/catalog/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/catalog/tpcds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/catalog/tpcds.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/catalog/tpch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/catalog/tpch.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/command.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/client_protocol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/config/client_protocol.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/fault_tolerant_execution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/config/fault_tolerant_execution.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/jvm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/config/jvm.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/config/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/s3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/config/s3.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/controller.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/affinity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/affinity.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/authentication.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/authentication.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/catalog/black_hole.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/catalog/black_hole.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/catalog/commons.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/catalog/commons.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/catalog/delta_lake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/catalog/delta_lake.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/catalog/generic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/catalog/generic.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/catalog/google_sheet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/catalog/google_sheet.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/catalog/hive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/catalog/hive.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/catalog/iceberg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/catalog/iceberg.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/catalog/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/catalog/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/catalog/tpcds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/catalog/tpcds.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/catalog/tpch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/catalog/tpch.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/client_protocol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/client_protocol.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/discovery.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/discovery.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/fault_tolerant_execution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/fault_tolerant_execution.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/crd/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/listener.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/listener.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/main.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/graceful_shutdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/operations/graceful_shutdown.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/operations/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/pdb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/operations/pdb.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/product_logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/product_logging.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rust/operator-binary/src/service.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /scripts/auto-retry-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/scripts/auto-retry-tests.py -------------------------------------------------------------------------------- /scripts/docs_templating.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/scripts/docs_templating.sh -------------------------------------------------------------------------------- /scripts/ensure_one_trailing_newline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/scripts/ensure_one_trailing_newline.py -------------------------------------------------------------------------------- /scripts/generate-manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/scripts/generate-manifests.sh -------------------------------------------------------------------------------- /scripts/render_readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/scripts/render_readme.sh -------------------------------------------------------------------------------- /scripts/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-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/trino-operator/HEAD/shell.nix -------------------------------------------------------------------------------- /tests/README-templating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/README-templating.md -------------------------------------------------------------------------------- /tests/interu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/interu.yaml -------------------------------------------------------------------------------- /tests/kuttl-test.yaml.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/kuttl-test.yaml.jinja2 -------------------------------------------------------------------------------- /tests/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/release.yaml -------------------------------------------------------------------------------- /tests/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/01-install-openldap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/01-install-openldap.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/02-create-ldap-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/02-create-ldap-user.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/03-keycloak-realm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/03-keycloak-realm.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/04-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/04-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/04-install-keycloak.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/04-install-keycloak.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/05-install-test-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/05-install-test-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/11-create-authentication-classes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/11-create-authentication-classes.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/12-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/12-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/12-create-trino-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/12-create-trino-cluster.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/20-test-trino.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/20-test-trino.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/30-hot-reloading-add-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/30-hot-reloading-add-user.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/31-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/31-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/32-hot-reloading-remove-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/32-hot-reloading-remove-user.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/33-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/33-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/add_user.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/add_user.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/check-oauth-login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/check-oauth-login.py -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/create-authentication-classes.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/create-authentication-classes.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/create-trino-cluster.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/create-trino-cluster.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/create_ldap_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/create_ldap_user.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/create_ldap_user_other.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/create_ldap_user_other.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/install-openldap-other.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/install-openldap-other.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/install-openldap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/install-openldap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/authentication/remove_user.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/authentication/remove_user.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/00-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/00-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/00-secrets.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/01-install-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/01-install-minio.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/01_helm-bitnami-minio-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/01_helm-bitnami-minio-values.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/02-install-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/02-install-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/03-install-test-helper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/03-install-test-helper.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/04-copy-scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/04-copy-scripts.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/04_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/04_query.py -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/client-spooling/05-run-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/client-spooling/05-run-tests.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/cluster-operation/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/cluster-operation/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/cluster-operation/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/cluster-operation/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/10-install-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/cluster-operation/10-install-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/cluster-operation/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/20-stop-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/cluster-operation/20-stop-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/cluster-operation/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/30-pause-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/cluster-operation/30-pause-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/cluster-operation/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/40-restart-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/cluster-operation/40-restart-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/commons/check-active-workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/commons/check-active-workers.py -------------------------------------------------------------------------------- /tests/templates/kuttl/commons/check-metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/commons/check-metrics.py -------------------------------------------------------------------------------- /tests/templates/kuttl/commons/check-opa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/commons/check-opa.py -------------------------------------------------------------------------------- /tests/templates/kuttl/commons/check-s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/commons/check-s3.py -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/00-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/00-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/00-secrets.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/01-install-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/01-install-minio.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/01_helm-bitnami-minio-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/01_helm-bitnami-minio-values.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/02-install-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/02-install-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/03-install-test-helper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/03-install-test-helper.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/04-copy-scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/04-copy-scripts.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/04_check-fte.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/04_check-fte.py -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/fault-tolerant-execution/05-run-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/fault-tolerant-execution/05-run-tests.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/listener/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/listener/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/listener/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/listener/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/listener/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/listener/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/listener/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/listener/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/listener/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/listener/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/listener/10-install-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/listener/10-install-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/listener/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/listener/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/listener/20-install-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/listener/20-install-check.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/listener/21-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/listener/21-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/listener/21-copy-scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/listener/21-copy-scripts.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/logging/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/logging/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/logging/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/01-install-trino-vector-aggregator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/logging/01-install-trino-vector-aggregator.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/02-create-configmap-with-prepared-logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/logging/02-create-configmap-with-prepared-logs.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/logging/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/03-install-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/logging/03-install-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/04-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/logging/04-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/04-install-trino-test-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/logging/04-install-trino-test-runner.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/logging/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/05-test-log-aggregation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/logging/05-test-log-aggregation.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/prepared-logs.airlift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/logging/prepared-logs.airlift.json -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/test_log_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/logging/test_log_aggregation.py -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/trino-vector-aggregator-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/logging/trino-vector-aggregator-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/00-limit-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/00-limit-range.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/00-secrets.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/00-secrets.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/01-install-postgres.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/01-install-postgres.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/02-install-minio.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/02-install-minio.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/03-install-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/03-install-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/04-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/04-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/04-install-keycloak.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/04-install-keycloak.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/04-keycloak-realm-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/04-keycloak-realm-cm.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/10-install-opa.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/10-install-opa.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/11-opa-rego.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/11-opa-rego.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/12-stop-opa.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/12-stop-opa.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/20-install-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/20-install-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/30-install-opa-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/30-install-opa-check.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/40-copy-scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/40-copy-scripts.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/check-opa.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/check-opa.py.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/helm-bitnami-minio-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/helm-bitnami-minio-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/trino_policies.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/trino_policies.rego -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/trino_rules/.regal/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/trino_rules/.regal/config.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/trino_rules/schema/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/trino_rules/schema/input.json -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/trino_rules/schema/policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/trino_rules/schema/policies.json -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/trino_rules/trino/actual_permissions.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/trino_rules/trino/actual_permissions.rego -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/trino_rules/trino/actual_permissions_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/trino_rules/trino/actual_permissions_test.rego -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/trino_rules/trino/policies.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/trino_rules/trino/policies.rego -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/trino_rules/trino/policies_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/trino_rules/trino/policies_test.rego -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/trino_rules/trino/requested_permissions.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/trino_rules/trino/requested_permissions.rego -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/trino_rules/trino/requested_permissions_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/trino_rules/trino/requested_permissions_test.rego -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/trino_rules/trino/util.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/trino_rules/trino/util.rego -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/trino_rules/trino/util_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/trino_rules/trino/util_test.rego -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/trino_rules/trino/verification.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/trino_rules/trino/verification.rego -------------------------------------------------------------------------------- /tests/templates/kuttl/opa-authorization/trino_rules/trino/verification_test.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/opa-authorization/trino_rules/trino/verification_test.rego -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/orphaned-resources/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/orphaned-resources/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/orphaned-resources/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/1-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/orphaned-resources/1-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/1-install-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/orphaned-resources/1-install-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/2-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/orphaned-resources/2-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/2-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/orphaned-resources/2-errors.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/2-remove-rolegroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/orphaned-resources/2-remove-rolegroup.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/resources/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/resources/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/resources/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/resources/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/10-install-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/resources/10-install-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/resources/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-limit-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/00-limit-range.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-secrets.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/00-secrets.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/02-install-minio.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/02-install-minio.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/04-prepare-bucket.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/04-prepare-bucket.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/05-install-zookeeper.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/05-install-zookeeper.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/06-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/06-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/06-install-hdfs.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/06-install-hdfs.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/07-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/07-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/07-install-postgres.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/07-install-postgres.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/08-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/08-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/08-install-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/08-install-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/09-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/09-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/09-install-opa.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/09-install-opa.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/10-install-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/10-install-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/11-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/11-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/12-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/12-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/20-install-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/20-install-check.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/21-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/21-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/21-copy-scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/21-copy-scripts.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/30-scale-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/30-scale-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/31-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/31-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/certs/ca.crt -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/client.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/certs/client.crt.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/client.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/certs/client.csr.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/client.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/certs/client.key.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/certs/generate.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/root-ca.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/certs/root-ca.crt.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/root-ca.crt.srl: -------------------------------------------------------------------------------- 1 | 7046F738B5BC7F7DC43E1E7E2EF5B23832C7A59A 2 | -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/root-ca.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/certs/root-ca.key.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/certs/tls.crt -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/certs/tls.key -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/helm-bitnami-minio-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/helm-bitnami-minio-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/yellow_tripdata_2021-07.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke/yellow_tripdata_2021-07.csv -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/00-s3connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/00-s3connection.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/00-secretclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/00-secretclass.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/04-prepare-bucket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/04-prepare-bucket.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/05-install-zookeeper.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/05-install-zookeeper.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/06-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/06-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/06-install-hdfs.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/06-install-hdfs.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/07-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/07-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/07-install-postgres.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/07-install-postgres.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/08-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/08-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/08-install-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/08-install-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/09-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/09-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/09-install-opa.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/09-install-opa.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/10-install-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/10-install-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/11-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/11-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/20-install-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/20-install-check.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/21-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/21-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/21-copy-scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/21-copy-scripts.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/README.md -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/aws_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/aws_secret.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_aws/yellow_tripdata_2021-07.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/smoke_aws/yellow_tripdata_2021-07.csv -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/tls/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/tls/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/tls/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/tls/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/tls/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/10-install-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/tls/10-install-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/tls/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/20-install-check.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/tls/20-install-check.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/21-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/tls/21-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/21-install-requirements.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/tls/21-install-requirements.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/check-tls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/tls/check-tls.py -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/test-config.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/tls/test-config.json.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/untrusted-cert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/templates/kuttl/tls/untrusted-cert.crt -------------------------------------------------------------------------------- /tests/test-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/trino-operator/HEAD/tests/test-definition.yaml --------------------------------------------------------------------------------