├── .actionlint.yaml ├── .dockerignore ├── .envrc.sample ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── 01-normal-issue.md │ ├── 02-bug_report.yml │ ├── config.yml │ ├── new_version.md │ └── normal-issue.md ├── PULL_REQUEST_TEMPLATE │ ├── pre-release-getting-started-script.md │ └── pre-release-rust-deps.md ├── actionlint.yaml ├── pull_request_template.md └── workflows │ ├── build.yaml │ ├── general_daily_security.yml │ ├── integration-test.yml │ └── pr_pre-commit.yaml ├── .gitignore ├── .hadolint.yaml ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── .pylintrc ├── .readme ├── README.md.j2 ├── partials │ ├── borrowed │ │ ├── documentation.md.j2 │ │ ├── footer.md.j2 │ │ ├── header.md.j2 │ │ ├── links.md.j2 │ │ ├── overview_blurb.md.j2 │ │ └── related_reading.md.j2 │ └── main.md.j2 └── static │ └── borrowed │ ├── Icon_Stackable.svg │ └── stackable_overview.png ├── .vscode ├── launch.json └── settings.json ├── .yamllint.yaml ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.nix ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── Tiltfile ├── crate-hashes.json ├── default.nix ├── deny.toml ├── deploy ├── DO_NOT_EDIT.md ├── config-spec │ └── properties.yaml ├── helm │ ├── chart_testing.yaml │ ├── ct.yaml │ └── kafka-operator │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── configs │ │ └── properties.yaml │ │ ├── crds │ │ └── crds.yaml │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── _maintenance.tpl │ │ ├── _telemetry.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── roles.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ │ └── values.yaml └── stackable-operators-ns.yaml ├── docker └── Dockerfile ├── docs ├── antora.yml ├── modules │ └── kafka │ │ ├── examples │ │ └── getting_started │ │ │ ├── getting_started.sh │ │ │ ├── getting_started.sh.j2 │ │ │ ├── install_output.txt │ │ │ ├── install_output.txt.j2 │ │ │ ├── kafka-znode.yaml │ │ │ ├── kafka.yaml │ │ │ ├── test_getting_started_helm.sh │ │ │ ├── test_getting_started_stackablectl.sh │ │ │ └── zookeeper.yaml │ │ ├── images │ │ └── kafka_overview.drawio.svg │ │ ├── pages │ │ ├── getting_started │ │ │ ├── first_steps.adoc │ │ │ ├── index.adoc │ │ │ └── installation.adoc │ │ ├── index.adoc │ │ ├── reference │ │ │ ├── commandline-parameters.adoc │ │ │ ├── crds.adoc │ │ │ ├── discovery.adoc │ │ │ ├── environment-variables.adoc │ │ │ └── index.adoc │ │ └── usage-guide │ │ │ ├── index.adoc │ │ │ ├── kraft-controller.adoc │ │ │ ├── listenerclass.adoc │ │ │ ├── logging.adoc │ │ │ ├── monitoring.adoc │ │ │ ├── operations │ │ │ ├── cluster-operations.adoc │ │ │ ├── graceful-shutdown.adoc │ │ │ ├── index.adoc │ │ │ ├── pod-disruptions.adoc │ │ │ ├── pod-placement.adoc │ │ │ └── znode-id.adoc │ │ │ ├── overrides.adoc │ │ │ ├── security.adoc │ │ │ └── storage-resources.adoc │ │ └── partials │ │ ├── nav.adoc │ │ └── supported-versions.adoc └── templating_vars.yaml ├── examples ├── logging │ └── simple-kafka-cluster-opa-log4j.yaml ├── opa │ └── simple-kafka-cluster-opa-allow-all.yaml └── tls │ └── simple-kafka-cluster-tls.yaml ├── nix ├── README.md ├── meta.json ├── sources.json └── sources.nix ├── renovate.json ├── rust-toolchain.toml ├── rust └── operator-binary │ ├── Cargo.toml │ ├── build.rs │ └── src │ ├── config │ ├── command.rs │ ├── jvm.rs │ ├── mod.rs │ └── node_id_hasher.rs │ ├── crd │ ├── affinity.rs │ ├── authentication.rs │ ├── authorization.rs │ ├── listener.rs │ ├── mod.rs │ ├── role │ │ ├── broker.rs │ │ ├── commons.rs │ │ ├── controller.rs │ │ └── mod.rs │ ├── security.rs │ └── tls.rs │ ├── discovery.rs │ ├── kafka_controller.rs │ ├── kerberos.rs │ ├── main.rs │ ├── operations │ ├── graceful_shutdown.rs │ ├── mod.rs │ └── pdb.rs │ ├── product_logging.rs │ ├── resource │ ├── configmap.rs │ ├── listener.rs │ ├── mod.rs │ ├── service.rs │ └── statefulset.rs │ └── utils.rs ├── rustfmt.toml ├── scripts ├── auto-retry-tests.py ├── docs_templating.sh ├── ensure_one_trailing_newline.py ├── generate-manifests.sh ├── render_readme.sh ├── run-tests └── run_tests.sh ├── shell.nix └── tests ├── README-templating.md ├── interu.yaml ├── kuttl-test.yaml.jinja2 ├── release.yaml ├── templates ├── .gitkeep └── kuttl │ ├── cluster-operation │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-install-zk.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-install-kafka.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-stop-kafka.yaml.j2 │ ├── 40-assert.yaml │ ├── 40-pause-kafka.yaml.j2 │ ├── 50-assert.yaml │ └── 50-restart-kafka.yaml.j2 │ ├── configuration │ ├── 00-limit-range.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 10-assert.yaml.j2 │ └── 10-install-kafka.yaml.j2 │ ├── delete-rolegroup │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 01-assert.yaml │ ├── 01-install-zk.yaml.j2 │ ├── 02-assert.yaml │ ├── 02-install-kafka.yaml.j2 │ ├── 03-assert.yaml │ ├── 03-delete-secondary.yaml.j2 │ └── 03-errors.yaml │ ├── kerberos │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 00-rbac.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-krb5-kdc.yaml.j2 │ ├── 02-create-kerberos-secretclass.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-install-zk.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-install-kafka.yaml.j2 │ ├── 30-access-kafka.txt.j2 │ ├── 30-access-kafka.yaml │ └── 30-assert.yaml │ ├── logging │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 01-assert.yaml │ ├── 01-install-kafka-vector-aggregator.yaml │ ├── 02-assert.yaml │ ├── 02-install-zookeeper.yaml.j2 │ ├── 03-create-configmap-with-prepared-logs.yaml.j2 │ ├── 04-assert.yaml │ ├── 04-install-kafka.yaml.j2 │ ├── 05-assert.yaml │ ├── 05-install-kafka-test-runner.yaml │ ├── 06-assert.yaml │ ├── 06-test-log-aggregation.yaml │ ├── kafka-vector-aggregator-values.yaml.j2 │ ├── prepared-logs.log4j.xml │ ├── prepared-logs.log4j2.xml │ └── test_log_aggregation.py │ ├── operations-kraft │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 20-assert.yaml.j2 │ ├── 20-install-kafka.yaml.j2 │ ├── 25-assert.yaml.j2 │ ├── 25-pause-kafka.yaml.j2 │ ├── 30-assert.yaml.j2 │ ├── 30-stop-kafka.yaml.j2 │ ├── 50-assert.yaml.j2 │ ├── 50-restart-kafka.yaml.j2 │ ├── 60-assert.yaml.j2 │ ├── 60-scale-controller-up.yaml.j2 │ ├── 70-assert.yaml.j2 │ ├── 70-scale-controller-down.yaml.j2 │ ├── 80-assert.yaml.j2 │ ├── 80-scale-broker-down.yaml.j2 │ └── README.md │ ├── smoke-kraft │ ├── 00-limit-range.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 00-rbac.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-kafka-vector-aggregator.yaml │ ├── 03-create-configmap-with-prepared-logs.yaml.j2 │ ├── 30-assert.yaml.j2 │ ├── 30-install-kafka.yaml.j2 │ ├── 31-assert.yaml │ ├── 32-assert.yaml │ ├── 40-assert.yaml │ ├── 40-install-test-container.yaml │ ├── 50-assert.yaml │ ├── 50-prepare-test.yaml │ ├── 60-assert.yaml │ ├── 60-install-test-scripts-configmap.yaml │ ├── 60_test_client_auth_tls.sh │ ├── 60_wrong_keystore.p12 │ ├── 60_wrong_truststore.p12 │ ├── 70-assert.yaml │ ├── 70-run-tests.yaml.j2 │ ├── 70_test-tls-job.yaml.j2 │ ├── README.md │ ├── kafka-vector-aggregator-values.yaml.j2 │ ├── metrics.py │ ├── prepared-logs.log4j.xml │ ├── prepared-logs.log4j2.xml │ ├── test_heap.sh │ └── test_log_aggregation.py │ ├── smoke │ ├── 00-limit-range.yaml │ ├── 00-patch-ns.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 20-assert.yaml.j2 │ ├── 20-install-zk.yaml.j2 │ ├── 30-assert.yaml.j2 │ ├── 30-install-kafka.yaml.j2 │ ├── 31-assert.yaml │ ├── 32-assert.yaml │ ├── 40-assert.yaml │ ├── 40-install-test-container.yaml │ ├── 50-assert.yaml │ ├── 50-prepare-test.yaml │ ├── metrics.py │ └── test_heap.sh │ ├── tls │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 00-rbac.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-install-zookeeper.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-install-test-scripts-configmap.yaml │ ├── 30_test_client_auth_tls.sh │ ├── 30_test_client_tls.sh │ ├── 30_wrong_keystore.p12 │ ├── 30_wrong_truststore.p12 │ ├── 40-assert.yaml │ ├── 40-install-kafka.yaml.j2 │ └── 50-assert.yaml.j2 │ └── upgrade │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 01-assert.yaml.j2 │ ├── 01-install-zk.yaml.j2 │ ├── 02-assert.yaml.j2 │ ├── 02-install-kafka.yaml.j2 │ ├── 03-assert.yaml │ ├── 04-assert.yaml.j2 │ ├── 04-upgrade-kafka.yaml.j2 │ └── 05-assert.yaml └── test-definition.yaml /.actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.actionlint.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.envrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.envrc.sample -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-normal-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.github/ISSUE_TEMPLATE/01-normal-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.github/ISSUE_TEMPLATE/02-bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.github/ISSUE_TEMPLATE/new_version.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/normal-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.github/ISSUE_TEMPLATE/normal-issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pre-release-getting-started-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-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/kafka-operator/HEAD/.github/PULL_REQUEST_TEMPLATE/pre-release-rust-deps.md -------------------------------------------------------------------------------- /.github/actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.github/actionlint.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/general_daily_security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.github/workflows/general_daily_security.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.github/workflows/integration-test.yml -------------------------------------------------------------------------------- /.github/workflows/pr_pre-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.github/workflows/pr_pre-commit.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.hadolint.yaml -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readme/README.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.readme/README.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/documentation.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.readme/partials/borrowed/documentation.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/footer.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.readme/partials/borrowed/footer.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/header.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.readme/partials/borrowed/header.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/links.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.readme/partials/borrowed/links.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/overview_blurb.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.readme/partials/borrowed/overview_blurb.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/related_reading.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.readme/partials/borrowed/related_reading.md.j2 -------------------------------------------------------------------------------- /.readme/partials/main.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.readme/partials/main.md.j2 -------------------------------------------------------------------------------- /.readme/static/borrowed/Icon_Stackable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.readme/static/borrowed/Icon_Stackable.svg -------------------------------------------------------------------------------- /.readme/static/borrowed/stackable_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.readme/static/borrowed/stackable_overview.png -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/Cargo.nix -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/README.md -------------------------------------------------------------------------------- /Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/Tiltfile -------------------------------------------------------------------------------- /crate-hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/crate-hashes.json -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/default.nix -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deny.toml -------------------------------------------------------------------------------- /deploy/DO_NOT_EDIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/DO_NOT_EDIT.md -------------------------------------------------------------------------------- /deploy/config-spec/properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/config-spec/properties.yaml -------------------------------------------------------------------------------- /deploy/helm/chart_testing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/chart_testing.yaml -------------------------------------------------------------------------------- /deploy/helm/ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/ct.yaml -------------------------------------------------------------------------------- /deploy/helm/kafka-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/kafka-operator/.helmignore -------------------------------------------------------------------------------- /deploy/helm/kafka-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/kafka-operator/Chart.yaml -------------------------------------------------------------------------------- /deploy/helm/kafka-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/kafka-operator/README.md -------------------------------------------------------------------------------- /deploy/helm/kafka-operator/configs/properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/kafka-operator/configs/properties.yaml -------------------------------------------------------------------------------- /deploy/helm/kafka-operator/crds/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/kafka-operator/crds/crds.yaml -------------------------------------------------------------------------------- /deploy/helm/kafka-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/kafka-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/helm/kafka-operator/templates/_maintenance.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/kafka-operator/templates/_maintenance.tpl -------------------------------------------------------------------------------- /deploy/helm/kafka-operator/templates/_telemetry.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/kafka-operator/templates/_telemetry.tpl -------------------------------------------------------------------------------- /deploy/helm/kafka-operator/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/kafka-operator/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/helm/kafka-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/kafka-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/helm/kafka-operator/templates/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/kafka-operator/templates/roles.yaml -------------------------------------------------------------------------------- /deploy/helm/kafka-operator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/kafka-operator/templates/service.yaml -------------------------------------------------------------------------------- /deploy/helm/kafka-operator/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/kafka-operator/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /deploy/helm/kafka-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/helm/kafka-operator/values.yaml -------------------------------------------------------------------------------- /deploy/stackable-operators-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/deploy/stackable-operators-ns.yaml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/antora.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: home 3 | version: "nightly" 4 | -------------------------------------------------------------------------------- /docs/modules/kafka/examples/getting_started/getting_started.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/examples/getting_started/getting_started.sh -------------------------------------------------------------------------------- /docs/modules/kafka/examples/getting_started/getting_started.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/examples/getting_started/getting_started.sh.j2 -------------------------------------------------------------------------------- /docs/modules/kafka/examples/getting_started/install_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/examples/getting_started/install_output.txt -------------------------------------------------------------------------------- /docs/modules/kafka/examples/getting_started/install_output.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/examples/getting_started/install_output.txt.j2 -------------------------------------------------------------------------------- /docs/modules/kafka/examples/getting_started/kafka-znode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/examples/getting_started/kafka-znode.yaml -------------------------------------------------------------------------------- /docs/modules/kafka/examples/getting_started/kafka.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/examples/getting_started/kafka.yaml -------------------------------------------------------------------------------- /docs/modules/kafka/examples/getting_started/test_getting_started_helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/examples/getting_started/test_getting_started_helm.sh -------------------------------------------------------------------------------- /docs/modules/kafka/examples/getting_started/test_getting_started_stackablectl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/examples/getting_started/test_getting_started_stackablectl.sh -------------------------------------------------------------------------------- /docs/modules/kafka/examples/getting_started/zookeeper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/examples/getting_started/zookeeper.yaml -------------------------------------------------------------------------------- /docs/modules/kafka/images/kafka_overview.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/images/kafka_overview.drawio.svg -------------------------------------------------------------------------------- /docs/modules/kafka/pages/getting_started/first_steps.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/getting_started/first_steps.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/getting_started/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/getting_started/index.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/getting_started/installation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/getting_started/installation.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/reference/commandline-parameters.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/reference/commandline-parameters.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/reference/crds.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/reference/crds.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/reference/discovery.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/reference/discovery.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/reference/environment-variables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/reference/environment-variables.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/reference/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/reference/index.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/usage-guide/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/usage-guide/index.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/usage-guide/kraft-controller.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/usage-guide/kraft-controller.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/usage-guide/listenerclass.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/usage-guide/listenerclass.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/usage-guide/logging.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/usage-guide/logging.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/usage-guide/monitoring.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/usage-guide/monitoring.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/usage-guide/operations/cluster-operations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/usage-guide/operations/cluster-operations.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/usage-guide/operations/graceful-shutdown.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/usage-guide/operations/graceful-shutdown.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/usage-guide/operations/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/usage-guide/operations/index.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/usage-guide/operations/pod-disruptions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/usage-guide/operations/pod-disruptions.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/usage-guide/operations/pod-placement.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/usage-guide/operations/pod-placement.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/usage-guide/operations/znode-id.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/usage-guide/operations/znode-id.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/usage-guide/overrides.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/usage-guide/overrides.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/usage-guide/security.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/usage-guide/security.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/pages/usage-guide/storage-resources.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/pages/usage-guide/storage-resources.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/partials/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/partials/nav.adoc -------------------------------------------------------------------------------- /docs/modules/kafka/partials/supported-versions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/modules/kafka/partials/supported-versions.adoc -------------------------------------------------------------------------------- /docs/templating_vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/docs/templating_vars.yaml -------------------------------------------------------------------------------- /examples/logging/simple-kafka-cluster-opa-log4j.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/examples/logging/simple-kafka-cluster-opa-log4j.yaml -------------------------------------------------------------------------------- /examples/opa/simple-kafka-cluster-opa-allow-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/examples/opa/simple-kafka-cluster-opa-allow-all.yaml -------------------------------------------------------------------------------- /examples/tls/simple-kafka-cluster-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/examples/tls/simple-kafka-cluster-tls.yaml -------------------------------------------------------------------------------- /nix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/nix/README.md -------------------------------------------------------------------------------- /nix/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/nix/meta.json -------------------------------------------------------------------------------- /nix/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/nix/sources.json -------------------------------------------------------------------------------- /nix/sources.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/nix/sources.nix -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/renovate.json -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rust/operator-binary/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/Cargo.toml -------------------------------------------------------------------------------- /rust/operator-binary/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/build.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/config/command.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/jvm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/config/jvm.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/config/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/node_id_hasher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/config/node_id_hasher.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/affinity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/crd/affinity.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/authentication.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/crd/authentication.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/authorization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/crd/authorization.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/listener.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/crd/listener.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/crd/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/role/broker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/crd/role/broker.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/role/commons.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/crd/role/commons.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/role/controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/crd/role/controller.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/role/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/crd/role/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/security.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/crd/security.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/tls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/crd/tls.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/discovery.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/discovery.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/kafka_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/kafka_controller.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/kerberos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/kerberos.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/main.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/graceful_shutdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/operations/graceful_shutdown.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/operations/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/pdb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/operations/pdb.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/product_logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/product_logging.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/resource/configmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/resource/configmap.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/resource/listener.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/resource/listener.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/resource/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/resource/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/resource/service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/resource/service.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/resource/statefulset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/resource/statefulset.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rust/operator-binary/src/utils.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /scripts/auto-retry-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/scripts/auto-retry-tests.py -------------------------------------------------------------------------------- /scripts/docs_templating.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/scripts/docs_templating.sh -------------------------------------------------------------------------------- /scripts/ensure_one_trailing_newline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/scripts/ensure_one_trailing_newline.py -------------------------------------------------------------------------------- /scripts/generate-manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/scripts/generate-manifests.sh -------------------------------------------------------------------------------- /scripts/render_readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/scripts/render_readme.sh -------------------------------------------------------------------------------- /scripts/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-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/kafka-operator/HEAD/shell.nix -------------------------------------------------------------------------------- /tests/README-templating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/README-templating.md -------------------------------------------------------------------------------- /tests/interu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/interu.yaml -------------------------------------------------------------------------------- /tests/kuttl-test.yaml.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/kuttl-test.yaml.jinja2 -------------------------------------------------------------------------------- /tests/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/release.yaml -------------------------------------------------------------------------------- /tests/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/cluster-operation/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/cluster-operation/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/cluster-operation/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/cluster-operation/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/10-install-zk.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/cluster-operation/10-install-zk.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/cluster-operation/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/20-install-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/cluster-operation/20-install-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/cluster-operation/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/30-stop-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/cluster-operation/30-stop-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/cluster-operation/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/40-pause-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/cluster-operation/40-pause-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/50-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/cluster-operation/50-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster-operation/50-restart-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/cluster-operation/50-restart-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/configuration/00-limit-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/configuration/00-limit-range.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/configuration/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/configuration/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/configuration/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/configuration/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/configuration/01-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/configuration/01-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/configuration/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/configuration/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/configuration/10-install-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/configuration/10-install-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/delete-rolegroup/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/delete-rolegroup/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/delete-rolegroup/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/delete-rolegroup/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/delete-rolegroup/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/delete-rolegroup/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/delete-rolegroup/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/delete-rolegroup/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/delete-rolegroup/01-install-zk.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/delete-rolegroup/01-install-zk.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/delete-rolegroup/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/delete-rolegroup/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/delete-rolegroup/02-install-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/delete-rolegroup/02-install-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/delete-rolegroup/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/delete-rolegroup/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/delete-rolegroup/03-delete-secondary.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/delete-rolegroup/03-delete-secondary.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/delete-rolegroup/03-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/delete-rolegroup/03-errors.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/kerberos/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/kerberos/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/kerberos/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/kerberos/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/kerberos/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos/01-install-krb5-kdc.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/kerberos/01-install-krb5-kdc.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos/02-create-kerberos-secretclass.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/kerberos/02-create-kerberos-secretclass.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/kerberos/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos/10-install-zk.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/kerberos/10-install-zk.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/kerberos/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos/20-install-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/kerberos/20-install-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos/30-access-kafka.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/kerberos/30-access-kafka.txt.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos/30-access-kafka.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/kerberos/30-access-kafka.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/kerberos/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/kerberos/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/01-install-kafka-vector-aggregator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/01-install-kafka-vector-aggregator.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/02-install-zookeeper.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/02-install-zookeeper.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/03-create-configmap-with-prepared-logs.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/03-create-configmap-with-prepared-logs.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/04-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/04-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/04-install-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/04-install-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/05-install-kafka-test-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/05-install-kafka-test-runner.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/06-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/06-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/06-test-log-aggregation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/06-test-log-aggregation.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/kafka-vector-aggregator-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/kafka-vector-aggregator-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/prepared-logs.log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/prepared-logs.log4j.xml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/prepared-logs.log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/prepared-logs.log4j2.xml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/test_log_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/logging/test_log_aggregation.py -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/20-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/20-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/20-install-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/20-install-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/25-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/25-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/25-pause-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/25-pause-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/30-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/30-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/30-stop-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/30-stop-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/50-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/50-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/50-restart-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/50-restart-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/60-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/60-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/60-scale-controller-up.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/60-scale-controller-up.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/70-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/70-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/70-scale-controller-down.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/70-scale-controller-down.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/80-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/80-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/80-scale-broker-down.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/80-scale-broker-down.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/operations-kraft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/operations-kraft/README.md -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/00-limit-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/00-limit-range.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/01-install-kafka-vector-aggregator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/01-install-kafka-vector-aggregator.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/03-create-configmap-with-prepared-logs.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/03-create-configmap-with-prepared-logs.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/30-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/30-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/30-install-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/30-install-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/31-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/31-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/32-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/32-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/40-install-test-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/40-install-test-container.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/50-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/50-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/50-prepare-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/50-prepare-test.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/60-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/60-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/60-install-test-scripts-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/60-install-test-scripts-configmap.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/60_test_client_auth_tls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/60_test_client_auth_tls.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/60_wrong_keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/60_wrong_keystore.p12 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/60_wrong_truststore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/60_wrong_truststore.p12 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/70-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/70-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/70-run-tests.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/70-run-tests.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/70_test-tls-job.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/70_test-tls-job.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/README.md -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/kafka-vector-aggregator-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/kafka-vector-aggregator-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/metrics.py -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/prepared-logs.log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/prepared-logs.log4j.xml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/prepared-logs.log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/prepared-logs.log4j2.xml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/test_heap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/test_heap.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke-kraft/test_log_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke-kraft/test_log_aggregation.py -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-limit-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/00-limit-range.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/01-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/01-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/20-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/20-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/20-install-zk.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/20-install-zk.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/30-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/30-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/30-install-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/30-install-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/31-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/31-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/32-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/32-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/40-install-test-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/40-install-test-container.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/50-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/50-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/50-prepare-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/50-prepare-test.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/metrics.py -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke/test_heap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/smoke/test_heap.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/10-install-zookeeper.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/10-install-zookeeper.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/30-install-test-scripts-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/30-install-test-scripts-configmap.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/30_test_client_auth_tls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/30_test_client_auth_tls.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/30_test_client_tls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/30_test_client_tls.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/30_wrong_keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/30_wrong_keystore.p12 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/30_wrong_truststore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/30_wrong_truststore.p12 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/40-install-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/40-install-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/tls/50-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/tls/50-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/upgrade/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/upgrade/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/upgrade/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/01-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/upgrade/01-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/01-install-zk.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/upgrade/01-install-zk.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/02-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/upgrade/02-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/02-install-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/upgrade/02-install-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/upgrade/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/04-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/upgrade/04-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/04-upgrade-kafka.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/upgrade/04-upgrade-kafka.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/templates/kuttl/upgrade/05-assert.yaml -------------------------------------------------------------------------------- /tests/test-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/kafka-operator/HEAD/tests/test-definition.yaml --------------------------------------------------------------------------------