├── .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 │ ├── dev_ny-tlc-report.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 ├── apps ├── README.md ├── docker │ └── Dockerfile └── ny_tlc_report.py ├── crate-hashes.json ├── default.nix ├── deny.toml ├── deploy ├── DO_NOT_EDIT.md ├── config-spec │ └── properties.yaml ├── helm │ ├── chart_testing.yaml │ ├── ct.yaml │ └── spark-k8s-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 │ │ ├── spark-clusterrole.yaml │ │ ├── spark-connect-clusterrole.yaml │ │ └── spark-history-clusterrole.yaml │ │ └── values.yaml └── stackable-operators-ns.yaml ├── docker └── Dockerfile ├── docs ├── antora.yml ├── modules │ └── spark-k8s │ │ ├── examples │ │ ├── example-configmap.yaml │ │ ├── example-history-app.yaml │ │ ├── example-history-server.yaml │ │ ├── example-pvc.yaml │ │ ├── example-spark-connect.yaml │ │ ├── example-sparkapp-configmap.yaml │ │ ├── example-sparkapp-image.yaml │ │ ├── example-sparkapp-pvc.yaml │ │ ├── example-sparkapp-s3-private.yaml │ │ ├── example-sparkapp-streaming.yaml │ │ └── getting_started │ │ │ ├── application.yaml │ │ │ ├── getting_started.sh │ │ │ ├── getting_started.sh.j2 │ │ │ ├── install_output.txt │ │ │ ├── install_output.txt.j2 │ │ │ ├── test_getting_started_helm.sh │ │ │ └── test_getting_started_stackablectl.sh │ │ ├── images │ │ ├── getting_started │ │ │ ├── spark_complete.png │ │ │ ├── spark_log.png │ │ │ └── spark_running.png │ │ ├── history-server-ui.png │ │ └── spark_overview.drawio.svg │ │ ├── pages │ │ ├── getting_started │ │ │ ├── first_steps.adoc │ │ │ ├── index.adoc │ │ │ └── installation.adoc │ │ ├── index.adoc │ │ ├── reference │ │ │ ├── commandline-parameters.adoc │ │ │ ├── crds.adoc │ │ │ ├── environment-variables.adoc │ │ │ └── index.adoc │ │ └── usage-guide │ │ │ ├── examples.adoc │ │ │ ├── history-server.adoc │ │ │ ├── index.adoc │ │ │ ├── job-dependencies.adoc │ │ │ ├── listenerclass.adoc │ │ │ ├── logging.adoc │ │ │ ├── operations │ │ │ ├── applications.adoc │ │ │ ├── graceful-shutdown.adoc │ │ │ ├── index.adoc │ │ │ ├── pod-disruptions.adoc │ │ │ └── pod-placement.adoc │ │ │ ├── overrides.adoc │ │ │ ├── resources.adoc │ │ │ ├── s3.adoc │ │ │ ├── security.adoc │ │ │ └── spark-connect.adoc │ │ └── partials │ │ ├── nav.adoc │ │ └── supported-versions.adoc └── templating_vars.yaml ├── examples ├── README-examples.md ├── ny-tlc-report-external-dependencies.yaml ├── ny-tlc-report-image.yaml ├── ny-tlc-report.yaml └── yellow_tripdata_2021-07.csv ├── kind ├── assert-pvc-jars.yaml ├── kind-pvc.yaml ├── minio.yaml └── spark-k8s-kind-cluster-yaml ├── nix ├── README.md ├── meta.json ├── sources.json └── sources.nix ├── renovate.json ├── rust-toolchain.toml ├── rust └── operator-binary │ ├── Cargo.toml │ ├── build.rs │ └── src │ ├── config │ ├── jvm.rs │ └── mod.rs │ ├── connect │ ├── common.rs │ ├── controller.rs │ ├── crd.rs │ ├── executor.rs │ ├── mod.rs │ ├── server.rs │ └── service.rs │ ├── crd │ ├── affinity.rs │ ├── constants.rs │ ├── history.rs │ ├── listener_ext.rs │ ├── logdir.rs │ ├── mod.rs │ ├── roles.rs │ └── tlscerts.rs │ ├── history │ ├── config │ │ ├── jvm.rs │ │ └── mod.rs │ ├── history_controller.rs │ ├── mod.rs │ ├── operations │ │ ├── mod.rs │ │ └── pdb.rs │ └── service.rs │ ├── main.rs │ ├── pod_driver_controller.rs │ ├── product_logging.rs │ └── spark_k8s_controller.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 ├── CHANGELOG.md ├── README-templating.md ├── README.md ├── interu.yaml ├── kuttl-test.yaml.jinja2 ├── release.yaml ├── templates ├── .gitkeep └── kuttl │ ├── custom-log-directory │ ├── 00-assert.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-serviceaccount.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 02-assert.yaml │ ├── 02-install-zookeeper.yaml.j2 │ ├── 03-assert.yaml │ ├── 03-install-hdfs.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-deploy-history-server.yaml.j2 │ ├── 11-assert.yaml │ ├── 11-deploy-spark-app.yaml.j2 │ ├── 20-assert.yaml │ └── 20-test-logs.yaml │ ├── delta-lake │ ├── 00-patch-ns.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 10-s3-secret.yaml │ ├── 20-assert.yaml │ ├── 20-setup-minio.yaml │ ├── 30-prepare-bucket.yaml │ ├── 40-assert.yaml │ ├── 40-spark-app.yaml.j2 │ └── helm-bitnami-minio-values.yaml │ ├── hbase-connector │ ├── 00-assert.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-serviceaccount.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 02-assert.yaml │ ├── 02-install-zookeeper.yaml.j2 │ ├── 03-assert.yaml │ ├── 03-install-hdfs.yaml.j2 │ ├── 04-assert.yaml │ ├── 04-install-hbase.yaml.j2 │ ├── 10-assert.yaml │ └── 10-deploy-spark-app.yaml.j2 │ ├── iceberg │ ├── 00-patch-ns.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 10-assert.yaml.j2 │ └── 10-deploy-spark-app.yaml.j2 │ ├── logging │ ├── 00-assert.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-serviceaccount.yaml.j2 │ ├── 01-assert.yaml │ ├── 01-install-spark-vector-aggregator.yaml │ ├── 02-assert.yaml │ ├── 02-setup-s3.yaml │ ├── 03-prepare-bucket.yaml.j2 │ ├── 04-create-configmap-with-prepared-logs.yaml │ ├── 05-assert.yaml │ ├── 05-deploy-history-server.yaml.j2 │ ├── 06-assert.yaml │ ├── 06-deploy-automatic-log-config-spark-app.yaml.j2 │ ├── 07-assert.yaml │ ├── 07-deploy-custom-log-config-spark-app.yaml.j2 │ ├── 08-assert.yaml │ ├── 08-deploy-automatic-log-config-pyspark-app.yaml.j2 │ ├── 09-assert.yaml │ ├── 09-deploy-custom-log-config-pyspark-app.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-install-test-runner.yaml │ ├── 11-assert.yaml │ ├── 11-test-log-aggregation.yaml │ ├── helm-bitnami-eventlog-minio-values.yaml │ ├── prepared-logs.log4j2.xml │ ├── spark-vector-aggregator-values.yaml.j2 │ └── test_log_aggregation.py │ ├── overrides │ ├── 00-assert.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-secrets.yaml.j2 │ ├── 00-serviceaccount.yaml.j2 │ ├── 03-assert.yaml │ ├── 03-setup-minio.yaml │ ├── 05-s3-connection.yaml.j2 │ ├── 06-assert.yaml │ ├── 06-deploy-history-server.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-deploy-spark-app.yaml.j2 │ ├── 11-assert.yaml │ ├── 20-assert.yaml │ ├── 20-test-logs.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-eventlog-minio-values.yaml.j2 │ └── helm-bitnami-minio-values.yaml │ ├── pyspark-ny-public-s3-image │ ├── 00-assert.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-serviceaccount.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 02-assert.yaml │ ├── 02-setup-minio.yaml │ ├── 03-prepare-bucket.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-deploy-spark-app.yaml.j2 │ ├── helm-bitnami-minio-values.yaml │ └── yellow_tripdata_2021-07.csv │ ├── pyspark-ny-public-s3 │ ├── 00-assert.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-serviceaccount.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 02-assert.yaml │ ├── 02-setup-minio.yaml │ ├── 03-prepare-bucket.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-deploy-spark-app.yaml.j2 │ ├── helm-bitnami-minio-values.yaml │ ├── ny_tlc_report.py │ └── yellow_tripdata_2021-07.csv │ ├── resources │ ├── 00-patch-ns.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 10-assert.yaml.j2 │ ├── 10-deploy-spark-app.yaml.j2 │ ├── 12-assert.yaml.j2 │ └── 12-deploy-spark-app.yaml.j2 │ ├── smoke │ ├── 00-assert.yaml │ ├── 00-limit-range.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-secrets.yaml.j2 │ ├── 00-serviceaccount.yaml.j2 │ ├── 10-assert.yaml.j2 │ ├── 10-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-setup-minio.yaml │ ├── 30-s3-connection.yaml.j2 │ ├── 40-assert.yaml │ ├── 40-deploy-history-server.yaml.j2 │ ├── 41-assert.yaml │ ├── 50-assert.yaml │ ├── 50-deploy-spark-app.yaml.j2 │ ├── 51-assert.yaml │ ├── 60-assert.yaml │ ├── 60-test-logs.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-eventlog-minio-values.yaml.j2 │ └── helm-bitnami-minio-values.yaml │ ├── spark-connect │ ├── 00-assert.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-serviceaccount.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 04-minio-users.yaml │ ├── 05-assert.yaml │ ├── 05-minio.yaml │ ├── 10-assert.yaml │ ├── 10-deploy-spark-connect.yaml.j2 │ ├── 11-assert.yaml │ ├── 20-assert.yaml │ ├── 20-run-connect-client.yaml.j2 │ ├── 30-assert.yaml │ ├── 40-assert.yaml │ ├── 40-install-test-container.yaml │ └── helm-bitnami-minio-values.yaml │ ├── spark-examples │ ├── 00-assert.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-serviceaccount.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 10-assert.yaml │ └── 10-deploy-spark-app.yaml.j2 │ ├── spark-history-server │ ├── 00-assert.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-secrets.yaml.j2 │ ├── 00-serviceaccount.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 03-assert.yaml │ ├── 03-setup-minio.yaml │ ├── 05-s3-connection.yaml.j2 │ ├── 06-assert.yaml │ ├── 06-deploy-history-server.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-deploy-spark-app.yaml.j2 │ ├── 12-assert.yaml │ ├── 12-deploy-spark-app.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-test-logs.yaml │ ├── 30-assert.yaml │ ├── 30-install-test-container.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-eventlog-minio-values.yaml.j2 │ └── helm-bitnami-minio-values.yaml │ ├── spark-ny-public-s3 │ ├── 00-assert.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-secrets.yaml.j2 │ ├── 00-serviceaccount.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 02-assert.yaml │ ├── 02-setup-minio.yaml.j2 │ ├── 03-prepare-bucket.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-deploy-spark-app.yaml.j2 │ ├── 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 │ ├── ny-tlc-report-1.1.0-3.5.6.jar │ ├── ny-tlc-report-1.1.0-3.5.7.jar │ ├── ny-tlc-report-1.1.0-4.0.1.jar │ └── yellow_tripdata_2021-07.csv │ └── spark-pi-private-s3 │ ├── 00-assert.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-serviceaccount.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 02-s3-secret.yaml │ ├── 03-assert.yaml │ ├── 03-setup-minio.yaml │ ├── 04-prepare-bucket.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-deploy-spark-app.yaml.j2 │ └── helm-bitnami-minio-values.yaml └── test-definition.yaml /.actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.actionlint.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.envrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.envrc.sample -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-normal-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.github/ISSUE_TEMPLATE/01-normal-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.github/ISSUE_TEMPLATE/02-bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.github/ISSUE_TEMPLATE/new_version.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/normal-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.github/ISSUE_TEMPLATE/normal-issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pre-release-getting-started-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-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/spark-k8s-operator/HEAD/.github/PULL_REQUEST_TEMPLATE/pre-release-rust-deps.md -------------------------------------------------------------------------------- /.github/actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.github/actionlint.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/dev_ny-tlc-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.github/workflows/dev_ny-tlc-report.yaml -------------------------------------------------------------------------------- /.github/workflows/general_daily_security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.github/workflows/general_daily_security.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.github/workflows/integration-test.yml -------------------------------------------------------------------------------- /.github/workflows/pr_pre-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.github/workflows/pr_pre-commit.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.hadolint.yaml -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readme/README.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.readme/README.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/documentation.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.readme/partials/borrowed/documentation.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/footer.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.readme/partials/borrowed/footer.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/header.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.readme/partials/borrowed/header.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/links.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.readme/partials/borrowed/links.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/overview_blurb.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.readme/partials/borrowed/overview_blurb.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/related_reading.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.readme/partials/borrowed/related_reading.md.j2 -------------------------------------------------------------------------------- /.readme/partials/main.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.readme/partials/main.md.j2 -------------------------------------------------------------------------------- /.readme/static/borrowed/Icon_Stackable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.readme/static/borrowed/Icon_Stackable.svg -------------------------------------------------------------------------------- /.readme/static/borrowed/stackable_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.readme/static/borrowed/stackable_overview.png -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/Cargo.nix -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/README.md -------------------------------------------------------------------------------- /Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/Tiltfile -------------------------------------------------------------------------------- /apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/apps/README.md -------------------------------------------------------------------------------- /apps/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/apps/docker/Dockerfile -------------------------------------------------------------------------------- /apps/ny_tlc_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/apps/ny_tlc_report.py -------------------------------------------------------------------------------- /crate-hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/crate-hashes.json -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/default.nix -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deny.toml -------------------------------------------------------------------------------- /deploy/DO_NOT_EDIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/DO_NOT_EDIT.md -------------------------------------------------------------------------------- /deploy/config-spec/properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/config-spec/properties.yaml -------------------------------------------------------------------------------- /deploy/helm/chart_testing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/chart_testing.yaml -------------------------------------------------------------------------------- /deploy/helm/ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/ct.yaml -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/.helmignore -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/Chart.yaml -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/README.md -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/configs/properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/configs/properties.yaml -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/crds/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/crds/crds.yaml -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/templates/_maintenance.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/templates/_maintenance.tpl -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/templates/_telemetry.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/templates/_telemetry.tpl -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/templates/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/templates/roles.yaml -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/templates/service.yaml -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/templates/spark-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/templates/spark-clusterrole.yaml -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/templates/spark-connect-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/templates/spark-connect-clusterrole.yaml -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/templates/spark-history-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/templates/spark-history-clusterrole.yaml -------------------------------------------------------------------------------- /deploy/helm/spark-k8s-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/helm/spark-k8s-operator/values.yaml -------------------------------------------------------------------------------- /deploy/stackable-operators-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/deploy/stackable-operators-ns.yaml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/antora.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: home 3 | version: "nightly" 4 | -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/example-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/example-configmap.yaml -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/example-history-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/example-history-app.yaml -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/example-history-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/example-history-server.yaml -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/example-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/example-pvc.yaml -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/example-spark-connect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/example-spark-connect.yaml -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/example-sparkapp-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/example-sparkapp-configmap.yaml -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/example-sparkapp-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/example-sparkapp-image.yaml -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/example-sparkapp-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/example-sparkapp-pvc.yaml -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/example-sparkapp-s3-private.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/example-sparkapp-s3-private.yaml -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/example-sparkapp-streaming.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/example-sparkapp-streaming.yaml -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/getting_started/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/getting_started/application.yaml -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/getting_started/getting_started.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/getting_started/getting_started.sh -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/getting_started/getting_started.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/getting_started/getting_started.sh.j2 -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/getting_started/install_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/getting_started/install_output.txt -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/getting_started/install_output.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/getting_started/install_output.txt.j2 -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/getting_started/test_getting_started_helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/getting_started/test_getting_started_helm.sh -------------------------------------------------------------------------------- /docs/modules/spark-k8s/examples/getting_started/test_getting_started_stackablectl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/examples/getting_started/test_getting_started_stackablectl.sh -------------------------------------------------------------------------------- /docs/modules/spark-k8s/images/getting_started/spark_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/images/getting_started/spark_complete.png -------------------------------------------------------------------------------- /docs/modules/spark-k8s/images/getting_started/spark_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/images/getting_started/spark_log.png -------------------------------------------------------------------------------- /docs/modules/spark-k8s/images/getting_started/spark_running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/images/getting_started/spark_running.png -------------------------------------------------------------------------------- /docs/modules/spark-k8s/images/history-server-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/images/history-server-ui.png -------------------------------------------------------------------------------- /docs/modules/spark-k8s/images/spark_overview.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/images/spark_overview.drawio.svg -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/getting_started/first_steps.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/getting_started/first_steps.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/getting_started/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/getting_started/index.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/getting_started/installation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/getting_started/installation.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/reference/commandline-parameters.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/reference/commandline-parameters.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/reference/crds.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/reference/crds.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/reference/environment-variables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/reference/environment-variables.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/reference/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/reference/index.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/examples.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/examples.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/history-server.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/history-server.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/index.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/job-dependencies.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/job-dependencies.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/listenerclass.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/listenerclass.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/logging.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/logging.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/operations/applications.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/operations/applications.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/operations/graceful-shutdown.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/operations/graceful-shutdown.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/operations/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/operations/index.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/operations/pod-disruptions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/operations/pod-disruptions.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/operations/pod-placement.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/operations/pod-placement.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/overrides.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/overrides.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/resources.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/resources.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/s3.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/s3.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/security.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/security.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/pages/usage-guide/spark-connect.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/pages/usage-guide/spark-connect.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/partials/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/partials/nav.adoc -------------------------------------------------------------------------------- /docs/modules/spark-k8s/partials/supported-versions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/modules/spark-k8s/partials/supported-versions.adoc -------------------------------------------------------------------------------- /docs/templating_vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/docs/templating_vars.yaml -------------------------------------------------------------------------------- /examples/README-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/examples/README-examples.md -------------------------------------------------------------------------------- /examples/ny-tlc-report-external-dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/examples/ny-tlc-report-external-dependencies.yaml -------------------------------------------------------------------------------- /examples/ny-tlc-report-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/examples/ny-tlc-report-image.yaml -------------------------------------------------------------------------------- /examples/ny-tlc-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/examples/ny-tlc-report.yaml -------------------------------------------------------------------------------- /examples/yellow_tripdata_2021-07.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/examples/yellow_tripdata_2021-07.csv -------------------------------------------------------------------------------- /kind/assert-pvc-jars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/kind/assert-pvc-jars.yaml -------------------------------------------------------------------------------- /kind/kind-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/kind/kind-pvc.yaml -------------------------------------------------------------------------------- /kind/minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/kind/minio.yaml -------------------------------------------------------------------------------- /kind/spark-k8s-kind-cluster-yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/kind/spark-k8s-kind-cluster-yaml -------------------------------------------------------------------------------- /nix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/nix/README.md -------------------------------------------------------------------------------- /nix/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/nix/meta.json -------------------------------------------------------------------------------- /nix/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/nix/sources.json -------------------------------------------------------------------------------- /nix/sources.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/nix/sources.nix -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/renovate.json -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rust/operator-binary/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/Cargo.toml -------------------------------------------------------------------------------- /rust/operator-binary/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/build.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/jvm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/config/jvm.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod jvm; 2 | -------------------------------------------------------------------------------- /rust/operator-binary/src/connect/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/connect/common.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/connect/controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/connect/controller.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/connect/crd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/connect/crd.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/connect/executor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/connect/executor.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/connect/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/connect/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/connect/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/connect/server.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/connect/service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/connect/service.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/affinity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/crd/affinity.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/crd/constants.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/history.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/crd/history.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/listener_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/crd/listener_ext.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/logdir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/crd/logdir.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/crd/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/roles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/crd/roles.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/tlscerts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/crd/tlscerts.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/history/config/jvm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/history/config/jvm.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/history/config/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod jvm; 2 | -------------------------------------------------------------------------------- /rust/operator-binary/src/history/history_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/history/history_controller.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/history/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/history/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/history/operations/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod pdb; 2 | -------------------------------------------------------------------------------- /rust/operator-binary/src/history/operations/pdb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/history/operations/pdb.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/history/service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/history/service.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/main.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/pod_driver_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/pod_driver_controller.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/product_logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/product_logging.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/spark_k8s_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rust/operator-binary/src/spark_k8s_controller.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /scripts/auto-retry-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/scripts/auto-retry-tests.py -------------------------------------------------------------------------------- /scripts/docs_templating.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/scripts/docs_templating.sh -------------------------------------------------------------------------------- /scripts/ensure_one_trailing_newline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/scripts/ensure_one_trailing_newline.py -------------------------------------------------------------------------------- /scripts/generate-manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/scripts/generate-manifests.sh -------------------------------------------------------------------------------- /scripts/render_readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/scripts/render_readme.sh -------------------------------------------------------------------------------- /scripts/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-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/spark-k8s-operator/HEAD/shell.nix -------------------------------------------------------------------------------- /tests/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/CHANGELOG.md -------------------------------------------------------------------------------- /tests/README-templating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/README-templating.md -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/interu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/interu.yaml -------------------------------------------------------------------------------- /tests/kuttl-test.yaml.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/kuttl-test.yaml.jinja2 -------------------------------------------------------------------------------- /tests/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/release.yaml -------------------------------------------------------------------------------- /tests/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/00-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/00-serviceaccount.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/00-serviceaccount.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/01-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/01-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/02-install-zookeeper.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/02-install-zookeeper.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/03-install-hdfs.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/03-install-hdfs.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/10-deploy-history-server.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/10-deploy-history-server.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/11-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/11-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/11-deploy-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/11-deploy-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-log-directory/20-test-logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/custom-log-directory/20-test-logs.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/delta-lake/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/delta-lake/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/delta-lake/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/delta-lake/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/delta-lake/01-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/delta-lake/01-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/delta-lake/10-s3-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/delta-lake/10-s3-secret.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/delta-lake/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/delta-lake/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/delta-lake/20-setup-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/delta-lake/20-setup-minio.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/delta-lake/30-prepare-bucket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/delta-lake/30-prepare-bucket.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/delta-lake/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/delta-lake/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/delta-lake/40-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/delta-lake/40-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/delta-lake/helm-bitnami-minio-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/delta-lake/helm-bitnami-minio-values.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/hbase-connector/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/hbase-connector/00-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/hbase-connector/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/hbase-connector/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/hbase-connector/00-serviceaccount.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/hbase-connector/00-serviceaccount.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/hbase-connector/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/hbase-connector/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/hbase-connector/01-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/hbase-connector/01-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/hbase-connector/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/hbase-connector/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/hbase-connector/02-install-zookeeper.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/hbase-connector/02-install-zookeeper.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/hbase-connector/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/hbase-connector/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/hbase-connector/03-install-hdfs.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/hbase-connector/03-install-hdfs.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/hbase-connector/04-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/hbase-connector/04-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/hbase-connector/04-install-hbase.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/hbase-connector/04-install-hbase.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/hbase-connector/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/hbase-connector/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/hbase-connector/10-deploy-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/hbase-connector/10-deploy-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/iceberg/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/iceberg/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/01-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/iceberg/01-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/iceberg/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/10-deploy-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/iceberg/10-deploy-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/00-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/00-serviceaccount.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/00-serviceaccount.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/01-install-spark-vector-aggregator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/01-install-spark-vector-aggregator.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/02-setup-s3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/02-setup-s3.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/03-prepare-bucket.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/03-prepare-bucket.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/04-create-configmap-with-prepared-logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/04-create-configmap-with-prepared-logs.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/05-deploy-history-server.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/05-deploy-history-server.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/06-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/06-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/06-deploy-automatic-log-config-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/06-deploy-automatic-log-config-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/07-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/07-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/07-deploy-custom-log-config-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/07-deploy-custom-log-config-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/08-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/08-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/08-deploy-automatic-log-config-pyspark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/08-deploy-automatic-log-config-pyspark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/09-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/09-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/09-deploy-custom-log-config-pyspark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/09-deploy-custom-log-config-pyspark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/10-install-test-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/10-install-test-runner.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/11-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/11-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/11-test-log-aggregation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/11-test-log-aggregation.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/helm-bitnami-eventlog-minio-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/helm-bitnami-eventlog-minio-values.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/prepared-logs.log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/prepared-logs.log4j2.xml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/spark-vector-aggregator-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/spark-vector-aggregator-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/test_log_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/logging/test_log_aggregation.py -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/00-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/00-secrets.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/00-secrets.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/00-serviceaccount.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/00-serviceaccount.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/03-setup-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/03-setup-minio.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/05-s3-connection.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/05-s3-connection.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/06-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/06-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/06-deploy-history-server.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/06-deploy-history-server.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/10-deploy-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/10-deploy-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/11-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/11-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/20-test-logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/20-test-logs.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/certs/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/certs/ca.crt -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/certs/client.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/certs/client.crt.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/certs/client.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/certs/client.csr.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/certs/client.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/certs/client.key.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/certs/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/certs/generate.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/certs/root-ca.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/certs/root-ca.crt.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/certs/root-ca.crt.srl: -------------------------------------------------------------------------------- 1 | 576A0FFE70A083083D71BD244D0AAF58D16797F9 2 | -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/certs/root-ca.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/certs/root-ca.key.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/certs/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/certs/tls.crt -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/certs/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/certs/tls.key -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/helm-bitnami-eventlog-minio-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/helm-bitnami-eventlog-minio-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/overrides/helm-bitnami-minio-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/overrides/helm-bitnami-minio-values.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3-image/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3-image/00-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3-image/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3-image/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3-image/00-serviceaccount.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3-image/00-serviceaccount.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3-image/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3-image/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3-image/01-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3-image/01-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3-image/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3-image/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3-image/02-setup-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3-image/02-setup-minio.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3-image/03-prepare-bucket.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3-image/03-prepare-bucket.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3-image/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3-image/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3-image/10-deploy-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3-image/10-deploy-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3-image/helm-bitnami-minio-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3-image/helm-bitnami-minio-values.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3-image/yellow_tripdata_2021-07.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3-image/yellow_tripdata_2021-07.csv -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3/00-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3/00-serviceaccount.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3/00-serviceaccount.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3/01-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3/01-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3/02-setup-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3/02-setup-minio.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3/03-prepare-bucket.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3/03-prepare-bucket.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3/10-deploy-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3/10-deploy-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3/helm-bitnami-minio-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3/helm-bitnami-minio-values.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3/ny_tlc_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3/ny_tlc_report.py -------------------------------------------------------------------------------- /tests/templates/kuttl/pyspark-ny-public-s3/yellow_tripdata_2021-07.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/pyspark-ny-public-s3/yellow_tripdata_2021-07.csv -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/resources/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/resources/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/01-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/resources/01-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/resources/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/10-deploy-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/resources/10-deploy-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/12-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/resources/12-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/12-deploy-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/resources/12-deploy-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/00-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-limit-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/00-limit-range.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-secrets.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/00-secrets.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-serviceaccount.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/00-serviceaccount.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-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/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/10-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/20-setup-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/20-setup-minio.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/30-s3-connection.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/30-s3-connection.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/40-deploy-history-server.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/40-deploy-history-server.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/41-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/41-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/50-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/50-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/50-deploy-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/50-deploy-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/51-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/51-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/60-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/60-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/60-test-logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/60-test-logs.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/certs/ca.crt -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/client.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/certs/client.crt.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/client.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/certs/client.csr.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/client.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/certs/client.key.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/certs/generate.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/root-ca.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/certs/root-ca.crt.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/root-ca.crt.srl: -------------------------------------------------------------------------------- 1 | 576A0FFE70A083083D71BD244D0AAF58D16797F9 2 | -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/root-ca.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/certs/root-ca.key.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/certs/tls.crt -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/certs/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/certs/tls.key -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/helm-bitnami-eventlog-minio-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/helm-bitnami-eventlog-minio-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/helm-bitnami-minio-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/smoke/helm-bitnami-minio-values.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/00-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/00-serviceaccount.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/00-serviceaccount.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/01-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/01-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/04-minio-users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/04-minio-users.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/05-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/05-minio.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/10-deploy-spark-connect.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/10-deploy-spark-connect.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/11-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/11-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/20-run-connect-client.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/20-run-connect-client.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/40-install-test-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/40-install-test-container.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-connect/helm-bitnami-minio-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-connect/helm-bitnami-minio-values.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-examples/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-examples/00-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-examples/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-examples/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-examples/00-serviceaccount.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-examples/00-serviceaccount.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-examples/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-examples/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-examples/01-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-examples/01-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-examples/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-examples/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-examples/10-deploy-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-examples/10-deploy-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/00-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/00-secrets.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/00-secrets.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/00-serviceaccount.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/00-serviceaccount.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/01-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/01-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/03-setup-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/03-setup-minio.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/05-s3-connection.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/05-s3-connection.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/06-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/06-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/06-deploy-history-server.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/06-deploy-history-server.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/10-deploy-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/10-deploy-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/12-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/12-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/12-deploy-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/12-deploy-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/20-test-logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/20-test-logs.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/30-install-test-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/30-install-test-container.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/certs/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/certs/ca.crt -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/certs/client.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/certs/client.crt.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/certs/client.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/certs/client.csr.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/certs/client.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/certs/client.key.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/certs/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/certs/generate.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/certs/root-ca.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/certs/root-ca.crt.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/certs/root-ca.crt.srl: -------------------------------------------------------------------------------- 1 | 576A0FFE70A083083D71BD244D0AAF58D16797F9 2 | -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/certs/root-ca.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/certs/root-ca.key.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/certs/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/certs/tls.crt -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/certs/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/certs/tls.key -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/helm-bitnami-eventlog-minio-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/helm-bitnami-eventlog-minio-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-history-server/helm-bitnami-minio-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-history-server/helm-bitnami-minio-values.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/00-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/00-secrets.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/00-secrets.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/00-serviceaccount.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/00-serviceaccount.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/01-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/01-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/02-setup-minio.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/02-setup-minio.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/03-prepare-bucket.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/03-prepare-bucket.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/10-deploy-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/10-deploy-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/certs/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/certs/ca.crt -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/certs/client.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/certs/client.crt.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/certs/client.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/certs/client.csr.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/certs/client.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/certs/client.key.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/certs/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/certs/generate.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/certs/root-ca.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/certs/root-ca.crt.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/certs/root-ca.crt.srl: -------------------------------------------------------------------------------- 1 | 285B6B1D64775BCA631FB87647F40A1C2C3384F3 2 | -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/certs/root-ca.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/certs/root-ca.key.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/certs/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/certs/tls.crt -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/certs/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/certs/tls.key -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/helm-bitnami-minio-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/helm-bitnami-minio-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/ny-tlc-report-1.1.0-3.5.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/ny-tlc-report-1.1.0-3.5.6.jar -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/ny-tlc-report-1.1.0-3.5.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/ny-tlc-report-1.1.0-3.5.7.jar -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/ny-tlc-report-1.1.0-4.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/ny-tlc-report-1.1.0-4.0.1.jar -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-ny-public-s3/yellow_tripdata_2021-07.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-ny-public-s3/yellow_tripdata_2021-07.csv -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-pi-private-s3/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-pi-private-s3/00-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-pi-private-s3/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-pi-private-s3/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-pi-private-s3/00-serviceaccount.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-pi-private-s3/00-serviceaccount.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-pi-private-s3/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-pi-private-s3/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-pi-private-s3/01-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-pi-private-s3/01-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-pi-private-s3/02-s3-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-pi-private-s3/02-s3-secret.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-pi-private-s3/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-pi-private-s3/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-pi-private-s3/03-setup-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-pi-private-s3/03-setup-minio.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-pi-private-s3/04-prepare-bucket.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-pi-private-s3/04-prepare-bucket.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-pi-private-s3/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-pi-private-s3/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-pi-private-s3/10-deploy-spark-app.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-pi-private-s3/10-deploy-spark-app.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/spark-pi-private-s3/helm-bitnami-minio-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/templates/kuttl/spark-pi-private-s3/helm-bitnami-minio-values.yaml -------------------------------------------------------------------------------- /tests/test-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/spark-k8s-operator/HEAD/tests/test-definition.yaml --------------------------------------------------------------------------------