├── .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 │ └── hive-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 │ └── hive │ │ ├── examples │ │ └── getting_started │ │ │ ├── getting_started.sh │ │ │ ├── getting_started.sh.j2 │ │ │ ├── hive-minio-credentials-secret-class.yaml │ │ │ ├── hive-minio-credentials.yaml │ │ │ ├── hive-minio-s3-connection.yaml │ │ │ ├── hive-postgres-s3.yaml │ │ │ ├── hive-postgres-s3.yaml.j2 │ │ │ ├── hive-test-helper.yaml │ │ │ ├── install-operator-output.txt │ │ │ ├── install-operator-output.txt.j2 │ │ │ ├── minio-stack.yaml │ │ │ ├── minio-stack.yaml.j2 │ │ │ ├── postgres-stack.yaml │ │ │ ├── postgres-stack.yaml.j2 │ │ │ ├── release.yaml │ │ │ ├── release.yaml.j2 │ │ │ ├── stackablectl-hive-postgres-minio-stack.yaml │ │ │ ├── test_getting_started_helm.sh │ │ │ └── test_getting_started_stackablectl.sh │ │ ├── images │ │ └── hive_overview.drawio.svg │ │ ├── pages │ │ ├── getting_started │ │ │ ├── first_steps.adoc │ │ │ ├── index.adoc │ │ │ └── installation.adoc │ │ ├── index.adoc │ │ ├── reference │ │ │ ├── commandline-parameters.adoc │ │ │ ├── crds.adoc │ │ │ ├── discovery.adoc │ │ │ ├── environment-variables.adoc │ │ │ └── index.adoc │ │ ├── required-external-components.adoc │ │ ├── troubleshooting │ │ │ └── index.adoc │ │ └── usage-guide │ │ │ ├── data-storage.adoc │ │ │ ├── database-driver.adoc │ │ │ ├── derby-example.adoc │ │ │ ├── index.adoc │ │ │ ├── listenerclass.adoc │ │ │ ├── logging.adoc │ │ │ ├── monitoring.adoc │ │ │ ├── operations │ │ │ ├── cluster-operations.adoc │ │ │ ├── graceful-shutdown.adoc │ │ │ ├── index.adoc │ │ │ ├── pod-disruptions.adoc │ │ │ └── pod-placement.adoc │ │ │ ├── overrides.adoc │ │ │ ├── resources.adoc │ │ │ └── security.adoc │ │ └── partials │ │ ├── nav.adoc │ │ └── supported-versions.adoc └── templating_vars.yaml ├── examples ├── hive-opa-cluster.yaml ├── simple-hive-cluster-postgres-s3.yaml └── simple-hive-cluster.yaml ├── nix ├── README.md ├── meta.json ├── sources.json └── sources.nix ├── renovate.json ├── rust-toolchain.toml ├── rust └── operator-binary │ ├── Cargo.toml │ ├── build.rs │ └── src │ ├── command.rs │ ├── config │ ├── jvm.rs │ ├── mod.rs │ └── opa.rs │ ├── controller.rs │ ├── crd │ ├── affinity.rs │ ├── mod.rs │ └── security.rs │ ├── discovery.rs │ ├── kerberos.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 │ ├── cluster-operation │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-install-hive.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-stop-hive.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-pause-hive.yaml.j2 │ ├── 40-assert.yaml │ └── 40-restart-hive.yaml.j2 │ ├── external-access │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-limit-range.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 10-listener-classes.yaml │ ├── 20-assert.yaml │ ├── 20-install-hive.yaml │ ├── helm-bitnami-postgresql-values.yaml.j2 │ ├── install-hive.yaml.j2 │ └── listener-classes.yaml │ ├── kerberos-hdfs │ ├── 00-patch-ns.yaml.j2 │ ├── 00-rbac.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-krb5-kdc.yaml.j2 │ ├── 02-create-kerberos-secretclass.yaml.j2 │ ├── 10-assert.yaml.j2 │ ├── 10-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-install-zk.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-install-hdfs.yaml.j2 │ ├── 35-access-hdfs.yaml.j2 │ ├── 35-assert.yaml │ ├── 40-assert.yaml │ ├── 40-install-postgres.yaml.j2 │ ├── 60-assert.yaml.j2 │ ├── 60-install-hive.yaml.j2 │ ├── 70-assert.yaml │ ├── 70-install-access-hive.yaml.j2 │ └── helm-bitnami-postgresql-values.yaml.j2 │ ├── kerberos-s3 │ ├── 00-patch-ns.yaml.j2 │ ├── 00-rbac.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-krb5-kdc.yaml.j2 │ ├── 02-create-kerberos-secretclass.yaml.j2 │ ├── 10-assert.yaml.j2 │ ├── 10-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 10-secrets.yaml.j2 │ ├── 30-setup-minio.yaml.j2 │ ├── 40-assert.yaml │ ├── 40-install-postgres.yaml.j2 │ ├── 60-assert.yaml.j2 │ ├── 60-install-hive.yaml.j2 │ ├── 70-assert.yaml │ ├── 70-install-access-hive.yaml.j2 │ ├── helm-bitnami-minio-values.yaml.j2 │ └── helm-bitnami-postgresql-values.yaml.j2 │ ├── logging │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 01-assert.yaml │ ├── 01-install-hbase-vector-aggregator.yaml │ ├── 02-assert.yaml │ ├── 02-install-postgres.yaml.j2 │ ├── 03-create-configmap-with-prepared-logs.yaml │ ├── 04-assert.yaml │ ├── 04-install-hive.yaml.j2 │ ├── 05-assert.yaml │ ├── 05-install-hive-test-runner.yaml │ ├── 06-assert.yaml │ ├── 06-test-log-aggregation.yaml │ ├── helm-bitnami-postgresql-values.yaml.j2 │ ├── hive-vector-aggregator-values.yaml.j2 │ ├── prepared-logs.log4j2.xml │ └── test_log_aggregation.py │ ├── orphaned-resources │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 01-assert.yaml │ ├── 01-install-hive.yaml.j2 │ ├── 03-assert.yaml │ ├── 03-errors.yaml │ ├── 03-remove-role-group.yaml.j2 │ ├── 04-assert.yaml │ ├── 04-change-rolegroup.yaml │ └── 04-errors.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-hive.yaml.j2 │ └── 20-assert.yaml │ ├── smoke │ ├── 00-limit-range.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 10-assert.yaml.j2 │ ├── 10-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 10-secrets.yaml.j2 │ ├── 30-setup-minio.yaml.j2 │ ├── 40-assert.yaml │ ├── 40-install-postgres.yaml.j2 │ ├── 50-assert.yaml │ ├── 50-install-opa.yaml.j2 │ ├── 60-assert.yaml.j2 │ ├── 60-install-hive.yaml.j2 │ ├── 61-assert.yaml │ ├── 62-assert.yaml │ ├── 70-assert.yaml │ ├── 70-install-test-metastore.yaml │ ├── 80-assert.yaml │ ├── 80-prepare-test-metastore.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 │ ├── test_metastore.py │ └── test_metastore_opa.py │ └── upgrade │ ├── 00-limit-range.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 10-assert.yaml.j2 │ ├── 10-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-install-postgres.yaml.j2 │ ├── 30-assert.yaml.j2 │ ├── 30-install-hive.yaml.j2 │ ├── 31-assert.yaml.j2 │ ├── 31-upgrade-hive.yaml.j2 │ └── helm-bitnami-postgresql-values.yaml.j2 └── test-definition.yaml /.actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.actionlint.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.envrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.envrc.sample -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-normal-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.github/ISSUE_TEMPLATE/01-normal-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.github/ISSUE_TEMPLATE/02-bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.github/ISSUE_TEMPLATE/new_version.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/normal-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.github/ISSUE_TEMPLATE/normal-issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pre-release-getting-started-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-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/hive-operator/HEAD/.github/PULL_REQUEST_TEMPLATE/pre-release-rust-deps.md -------------------------------------------------------------------------------- /.github/actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.github/actionlint.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/general_daily_security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.github/workflows/general_daily_security.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.github/workflows/integration-test.yml -------------------------------------------------------------------------------- /.github/workflows/pr_pre-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.github/workflows/pr_pre-commit.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.hadolint.yaml -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readme/README.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.readme/README.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/documentation.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.readme/partials/borrowed/documentation.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/footer.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.readme/partials/borrowed/footer.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/header.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.readme/partials/borrowed/header.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/links.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.readme/partials/borrowed/links.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/overview_blurb.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.readme/partials/borrowed/overview_blurb.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/related_reading.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.readme/partials/borrowed/related_reading.md.j2 -------------------------------------------------------------------------------- /.readme/partials/main.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.readme/partials/main.md.j2 -------------------------------------------------------------------------------- /.readme/static/borrowed/Icon_Stackable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.readme/static/borrowed/Icon_Stackable.svg -------------------------------------------------------------------------------- /.readme/static/borrowed/stackable_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.readme/static/borrowed/stackable_overview.png -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/Cargo.nix -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/README.md -------------------------------------------------------------------------------- /Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/Tiltfile -------------------------------------------------------------------------------- /crate-hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/crate-hashes.json -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/default.nix -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deny.toml -------------------------------------------------------------------------------- /deploy/DO_NOT_EDIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/DO_NOT_EDIT.md -------------------------------------------------------------------------------- /deploy/config-spec/properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/config-spec/properties.yaml -------------------------------------------------------------------------------- /deploy/helm/chart_testing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/chart_testing.yaml -------------------------------------------------------------------------------- /deploy/helm/ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/ct.yaml -------------------------------------------------------------------------------- /deploy/helm/hive-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/hive-operator/.helmignore -------------------------------------------------------------------------------- /deploy/helm/hive-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/hive-operator/Chart.yaml -------------------------------------------------------------------------------- /deploy/helm/hive-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/hive-operator/README.md -------------------------------------------------------------------------------- /deploy/helm/hive-operator/configs/properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/hive-operator/configs/properties.yaml -------------------------------------------------------------------------------- /deploy/helm/hive-operator/crds/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/hive-operator/crds/crds.yaml -------------------------------------------------------------------------------- /deploy/helm/hive-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/hive-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/helm/hive-operator/templates/_maintenance.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/hive-operator/templates/_maintenance.tpl -------------------------------------------------------------------------------- /deploy/helm/hive-operator/templates/_telemetry.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/hive-operator/templates/_telemetry.tpl -------------------------------------------------------------------------------- /deploy/helm/hive-operator/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/hive-operator/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/helm/hive-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/hive-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/helm/hive-operator/templates/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/hive-operator/templates/roles.yaml -------------------------------------------------------------------------------- /deploy/helm/hive-operator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/hive-operator/templates/service.yaml -------------------------------------------------------------------------------- /deploy/helm/hive-operator/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/hive-operator/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /deploy/helm/hive-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/helm/hive-operator/values.yaml -------------------------------------------------------------------------------- /deploy/stackable-operators-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/deploy/stackable-operators-ns.yaml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/antora.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: home 3 | version: "nightly" 4 | -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/getting_started.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/getting_started.sh -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/getting_started.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/getting_started.sh.j2 -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/hive-minio-credentials-secret-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/hive-minio-credentials-secret-class.yaml -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/hive-minio-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/hive-minio-credentials.yaml -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/hive-minio-s3-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/hive-minio-s3-connection.yaml -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/hive-postgres-s3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/hive-postgres-s3.yaml -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/hive-postgres-s3.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/hive-postgres-s3.yaml.j2 -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/hive-test-helper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/hive-test-helper.yaml -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/install-operator-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/install-operator-output.txt -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/install-operator-output.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/install-operator-output.txt.j2 -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/minio-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/minio-stack.yaml -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/minio-stack.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/minio-stack.yaml.j2 -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/postgres-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/postgres-stack.yaml -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/postgres-stack.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/postgres-stack.yaml.j2 -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/release.yaml -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/release.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/release.yaml.j2 -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/stackablectl-hive-postgres-minio-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/stackablectl-hive-postgres-minio-stack.yaml -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/test_getting_started_helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/test_getting_started_helm.sh -------------------------------------------------------------------------------- /docs/modules/hive/examples/getting_started/test_getting_started_stackablectl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/examples/getting_started/test_getting_started_stackablectl.sh -------------------------------------------------------------------------------- /docs/modules/hive/images/hive_overview.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/images/hive_overview.drawio.svg -------------------------------------------------------------------------------- /docs/modules/hive/pages/getting_started/first_steps.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/getting_started/first_steps.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/getting_started/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/getting_started/index.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/getting_started/installation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/getting_started/installation.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/reference/commandline-parameters.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/reference/commandline-parameters.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/reference/crds.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/reference/crds.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/reference/discovery.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/reference/discovery.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/reference/environment-variables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/reference/environment-variables.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/reference/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/reference/index.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/required-external-components.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/required-external-components.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/troubleshooting/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/troubleshooting/index.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/data-storage.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/data-storage.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/database-driver.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/database-driver.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/derby-example.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/derby-example.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/index.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/listenerclass.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/listenerclass.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/logging.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/logging.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/monitoring.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/monitoring.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/operations/cluster-operations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/operations/cluster-operations.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/operations/graceful-shutdown.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/operations/graceful-shutdown.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/operations/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/operations/index.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/operations/pod-disruptions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/operations/pod-disruptions.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/operations/pod-placement.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/operations/pod-placement.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/overrides.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/overrides.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/resources.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/resources.adoc -------------------------------------------------------------------------------- /docs/modules/hive/pages/usage-guide/security.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/pages/usage-guide/security.adoc -------------------------------------------------------------------------------- /docs/modules/hive/partials/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/partials/nav.adoc -------------------------------------------------------------------------------- /docs/modules/hive/partials/supported-versions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/modules/hive/partials/supported-versions.adoc -------------------------------------------------------------------------------- /docs/templating_vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/docs/templating_vars.yaml -------------------------------------------------------------------------------- /examples/hive-opa-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/examples/hive-opa-cluster.yaml -------------------------------------------------------------------------------- /examples/simple-hive-cluster-postgres-s3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/examples/simple-hive-cluster-postgres-s3.yaml -------------------------------------------------------------------------------- /examples/simple-hive-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/examples/simple-hive-cluster.yaml -------------------------------------------------------------------------------- /nix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/nix/README.md -------------------------------------------------------------------------------- /nix/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/nix/meta.json -------------------------------------------------------------------------------- /nix/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/nix/sources.json -------------------------------------------------------------------------------- /nix/sources.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/nix/sources.nix -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/renovate.json -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rust/operator-binary/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/Cargo.toml -------------------------------------------------------------------------------- /rust/operator-binary/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/build.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/command.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/jvm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/config/jvm.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/config/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/opa.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/config/opa.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/controller.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/affinity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/crd/affinity.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/crd/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/security.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/crd/security.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/discovery.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/discovery.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/kerberos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/kerberos.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/listener.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/listener.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/main.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/graceful_shutdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/operations/graceful_shutdown.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/operations/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/pdb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/operations/pdb.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/product_logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/product_logging.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rust/operator-binary/src/service.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /scripts/auto-retry-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/scripts/auto-retry-tests.py -------------------------------------------------------------------------------- /scripts/docs_templating.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/scripts/docs_templating.sh -------------------------------------------------------------------------------- /scripts/ensure_one_trailing_newline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/scripts/ensure_one_trailing_newline.py -------------------------------------------------------------------------------- /scripts/generate-manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/scripts/generate-manifests.sh -------------------------------------------------------------------------------- /scripts/render_readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/scripts/render_readme.sh -------------------------------------------------------------------------------- /scripts/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-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/hive-operator/HEAD/shell.nix -------------------------------------------------------------------------------- /tests/README-templating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/README-templating.md -------------------------------------------------------------------------------- /tests/interu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/interu.yaml -------------------------------------------------------------------------------- /tests/kuttl-test.yaml.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/kuttl-test.yaml.jinja2 -------------------------------------------------------------------------------- /tests/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/release.yaml -------------------------------------------------------------------------------- /tests/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-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/hive-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/hive-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/hive-operator/HEAD/tests/templates/kuttl/cluster-operation/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/10-install-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/cluster-operation/10-install-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/cluster-operation/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/20-stop-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/cluster-operation/20-stop-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/cluster-operation/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/30-pause-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/cluster-operation/30-pause-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/cluster-operation/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/40-restart-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/cluster-operation/40-restart-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/external-access/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/00-limit-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/external-access/00-limit-range.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/external-access/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/10-listener-classes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/external-access/10-listener-classes.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/external-access/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/20-install-hive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/external-access/20-install-hive.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/external-access/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/install-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/external-access/install-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/listener-classes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/external-access/listener-classes.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/01-install-krb5-kdc.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/01-install-krb5-kdc.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/02-create-kerberos-secretclass.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/02-create-kerberos-secretclass.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/10-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/10-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/20-install-zk.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/20-install-zk.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/30-install-hdfs.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/30-install-hdfs.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/35-access-hdfs.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/35-access-hdfs.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/35-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/35-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/40-install-postgres.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/40-install-postgres.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/60-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/60-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/60-install-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/60-install-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/70-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/70-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/70-install-access-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/70-install-access-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-hdfs/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-hdfs/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/01-install-krb5-kdc.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/01-install-krb5-kdc.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/02-create-kerberos-secretclass.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/02-create-kerberos-secretclass.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/10-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/10-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/10-secrets.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/10-secrets.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/30-setup-minio.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/30-setup-minio.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/40-install-postgres.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/40-install-postgres.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/60-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/60-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/60-install-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/60-install-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/70-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/70-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/70-install-access-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/70-install-access-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/helm-bitnami-minio-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/helm-bitnami-minio-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos-s3/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/kerberos-s3/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/01-install-hbase-vector-aggregator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/01-install-hbase-vector-aggregator.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/02-install-postgres.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/02-install-postgres.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/03-create-configmap-with-prepared-logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/03-create-configmap-with-prepared-logs.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/04-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/04-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/04-install-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/04-install-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/05-install-hive-test-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/05-install-hive-test-runner.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/06-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/06-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/06-test-log-aggregation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/06-test-log-aggregation.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/hive-vector-aggregator-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/hive-vector-aggregator-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/prepared-logs.log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/prepared-logs.log4j2.xml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/test_log_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/logging/test_log_aggregation.py -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-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/hive-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/hive-operator/HEAD/tests/templates/kuttl/orphaned-resources/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/orphaned-resources/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/01-install-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/orphaned-resources/01-install-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/orphaned-resources/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/03-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/orphaned-resources/03-errors.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/03-remove-role-group.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/orphaned-resources/03-remove-role-group.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/04-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/orphaned-resources/04-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/04-change-rolegroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/orphaned-resources/04-change-rolegroup.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned-resources/04-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/orphaned-resources/04-errors.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-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/hive-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/hive-operator/HEAD/tests/templates/kuttl/resources/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/resources/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/10-install-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/resources/10-install-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/resources/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-limit-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/00-limit-range.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/10-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/10-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/10-secrets.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/10-secrets.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/30-setup-minio.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/30-setup-minio.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/40-install-postgres.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/40-install-postgres.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/50-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/50-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/50-install-opa.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/50-install-opa.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/60-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/60-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/60-install-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/60-install-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/61-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/61-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/62-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/62-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/70-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/70-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/70-install-test-metastore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/70-install-test-metastore.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/80-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/80-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/80-prepare-test-metastore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/80-prepare-test-metastore.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/certs/ca.crt -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/client.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/certs/client.crt.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/client.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/certs/client.csr.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/client.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/certs/client.key.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/certs/generate.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/root-ca.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-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/hive-operator/HEAD/tests/templates/kuttl/smoke/certs/root-ca.key.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/certs/tls.crt -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/certs/tls.key -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/helm-bitnami-minio-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-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/hive-operator/HEAD/tests/templates/kuttl/smoke/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/test_metastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/test_metastore.py -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/test_metastore_opa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/smoke/test_metastore_opa.py -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/00-limit-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/upgrade/00-limit-range.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/upgrade/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/upgrade/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/10-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/upgrade/10-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/upgrade/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/20-install-postgres.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/upgrade/20-install-postgres.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/30-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/upgrade/30-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/30-install-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/upgrade/30-install-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/31-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/upgrade/31-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/31-upgrade-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/upgrade/31-upgrade-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/templates/kuttl/upgrade/helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/test-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/hive-operator/HEAD/tests/test-definition.yaml --------------------------------------------------------------------------------