├── .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 │ └── nifi-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 │ └── nifi │ │ ├── assets │ │ └── images │ │ │ ├── listen-http-1.png │ │ │ ├── listen-http-2.png │ │ │ ├── listen-http-3.png │ │ │ ├── listen-http-4.png │ │ │ ├── nifi-web-ui.png │ │ │ └── put-iceberg-processor.png │ │ ├── examples │ │ └── getting_started │ │ │ ├── getting_started.sh │ │ │ ├── getting_started.sh.j2 │ │ │ ├── install_output.txt │ │ │ ├── install_output.txt.j2 │ │ │ ├── test-nifi.sh │ │ │ ├── test_getting_started_helm.sh │ │ │ └── test_getting_started_stackablectl.sh │ │ ├── images │ │ ├── listening-processor-example.png │ │ └── nifi_overview.drawio.svg │ │ ├── pages │ │ ├── getting_started │ │ │ ├── first_steps.adoc │ │ │ ├── index.adoc │ │ │ └── installation.adoc │ │ ├── index.adoc │ │ ├── reference │ │ │ ├── commandline-parameters.adoc │ │ │ ├── crds.adoc │ │ │ ├── environment-variables.adoc │ │ │ └── index.adoc │ │ ├── troubleshooting │ │ │ └── index.adoc │ │ └── usage_guide │ │ │ ├── clustering.adoc │ │ │ ├── custom-components.adoc │ │ │ ├── exposing-processors │ │ │ ├── http.adoc │ │ │ ├── index.adoc │ │ │ └── tcp.adoc │ │ │ ├── extra-volumes.adoc │ │ │ ├── flow-versioning.adoc │ │ │ ├── index.adoc │ │ │ ├── listenerclass.adoc │ │ │ ├── log-aggregation.adoc │ │ │ ├── monitoring.adoc │ │ │ ├── operations │ │ │ ├── cluster-operations.adoc │ │ │ ├── graceful-shutdown.adoc │ │ │ ├── index.adoc │ │ │ ├── pod-disruptions.adoc │ │ │ └── pod-placement.adoc │ │ │ ├── overrides.adoc │ │ │ ├── resource-configuration.adoc │ │ │ ├── security.adoc │ │ │ ├── updating.adoc │ │ │ └── writing-to-iceberg-tables.adoc │ │ └── partials │ │ ├── nav.adoc │ │ └── supported-versions.adoc └── templating_vars.yaml ├── examples └── simple-nifi-cluster.yaml ├── nix ├── README.md ├── meta.json ├── sources.json └── sources.nix ├── renovate.json ├── rust-toolchain.toml ├── rust └── operator-binary │ ├── Cargo.toml │ ├── build.rs │ └── src │ ├── config │ ├── jvm.rs │ └── mod.rs │ ├── controller.rs │ ├── crd │ ├── affinity.rs │ ├── authentication.rs │ ├── mod.rs │ ├── sensitive_properties.rs │ └── tls.rs │ ├── listener.rs │ ├── main.rs │ ├── operations │ ├── graceful_shutdown.rs │ ├── mod.rs │ ├── pdb.rs │ └── upgrade.rs │ ├── product_logging.rs │ ├── reporting_task │ └── mod.rs │ ├── security │ ├── authentication.rs │ ├── authorization.rs │ ├── mod.rs │ ├── oidc.rs │ ├── sensitive_key.rs │ └── tls.rs │ └── service.rs ├── rustfmt.toml ├── scripts ├── auto-retry-tests.py ├── docs_templating.sh ├── ensure_one_trailing_newline.py ├── generate-manifests.sh ├── render_readme.sh ├── run-tests └── run_tests.sh ├── shell.nix └── tests ├── README-templating.md ├── interu.yaml ├── kuttl-test.yaml.jinja2 ├── release.yaml ├── templates ├── .gitkeep └── kuttl │ ├── cluster_operation │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 10-assert.yaml │ ├── 10-install-zk.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-install-nifi.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-stop-nifi.yaml.j2 │ ├── 40-assert.yaml │ ├── 40-pause-nifi.yaml.j2 │ ├── 50-assert.yaml │ └── 50-restart-nifi.yaml.j2 │ ├── custom-components-git-sync │ ├── 00-patch-ns.yaml.j2 │ ├── 10-assert.yaml.j2 │ ├── 10-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-install-zk.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-install-nifi.yaml.j2 │ ├── 40-assert.yaml │ ├── 40-test-nifi-greeting.yaml │ ├── README.md │ ├── canvas.png │ ├── java-processors │ │ ├── nifi-sample-nar-1.0.0.nar │ │ └── sample-processor.tar.gz │ └── python-processors │ │ └── greet_processor.py │ ├── external-access │ ├── 00-patch-ns.yaml.j2 │ ├── 00-range-limit.yaml │ ├── 00-rbac.yaml.j2 │ ├── 10-assert.yaml.j2 │ ├── 10-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 15-create-listener-class.yaml │ ├── 15_listener-class.yaml │ ├── 20-assert.yaml │ ├── 20-install-zk.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-install-nifi.yaml │ └── 30_nifi.yaml.j2 │ ├── iceberg │ ├── 00-patch-ns.yaml.j2 │ ├── 00-rbac.yaml.j2 │ ├── 01-create-s3-connection.yaml │ ├── 01_s3-connection.yaml │ ├── 02-assert.yaml.j2 │ ├── 02-install-krb5-kdc.yaml.j2 │ ├── 03-create-kerberos-secretclass.yaml.j2 │ ├── 03_kerberos-secretclass.yaml.j2 │ ├── 10-assert.yaml.j2 │ ├── 10-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-install-minio.yaml │ ├── 20_minio.yaml │ ├── 21-assert.yaml │ ├── 21-install-minio-jobs.yaml │ ├── 21_minio_jobs.yaml │ ├── 25-assert.yaml │ ├── 25-install-hive-postgres.yaml │ ├── 25_helm-bitnami-postgresql-values.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-install-zookeeper.yaml.j2 │ ├── 31-opa.yaml.j2 │ ├── 32-assert.yaml │ ├── 32-install-hdfs.yaml.j2 │ ├── 32_hdfs.yaml.j2 │ ├── 33-assert.yaml │ ├── 33-install-hive.yaml.j2 │ ├── 33_hive.yaml.j2 │ ├── 34-assert.yaml │ ├── 34-install-trino.yaml.j2 │ ├── 34_trino.yaml.j2 │ ├── 40-assert.yaml │ ├── 40-create-iceberg-tables.j2 │ ├── 50-assert.yaml │ ├── 50-install-nifi.yaml.j2 │ ├── 50_nifi.yaml.j2 │ ├── 60-create-nifi-flow-configmap.yaml.j2 │ ├── 60_nifi-flow-with-kerberos.json │ ├── 60_nifi-flow-without-kerberos.json │ ├── 61-assert.yaml │ ├── 61-provision-nifi-flow.yaml │ ├── 70-assert.yaml │ ├── 70-check-iceberg-tables.yaml.j2 │ ├── README.md │ └── interactive-nifi.yaml │ ├── ldap │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 01-assert.yaml │ ├── 01-install-openldap.yaml │ ├── 02-assert.yaml │ ├── 02-create-ldap-user.yaml │ ├── 03-assert.yaml │ ├── 03-install-test-nifi.yaml │ ├── 10-assert.yaml │ ├── 10-install-zk.yaml.j2 │ ├── 11-create-authentication-classes.yaml.j2 │ ├── 12-assert.yaml │ ├── 12-install-nifi.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-test-nifi.yaml │ ├── create-authentication-classes.yaml.j2 │ ├── create_ldap_user.sh │ ├── install-openldap.yaml.j2 │ └── test_nifi.py │ ├── logging │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 01-assert.yaml │ ├── 01-install-nifi-vector-aggregator.yaml │ ├── 02-assert.yaml │ ├── 02-install-zookeeper.yaml.j2 │ ├── 03-create-configmap-with-prepared-logs.yaml │ ├── 04-assert.yaml │ ├── 04-install-nifi.yaml.j2 │ ├── 05-assert.yaml │ ├── 05-install-nifi-test-runner.yaml │ ├── 06-assert.yaml │ ├── 06-test-log-aggregation.yaml │ ├── nifi-vector-aggregator-values.yaml.j2 │ ├── prepared-logs.log4j.xml │ └── test_log_aggregation.py │ ├── oidc-opa │ ├── 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 │ ├── 15-install-authentication-class.yaml │ ├── 15_authentication-class.yaml.j2 │ ├── 19-assert.yaml │ ├── 19-install-keycloak.yaml │ ├── 19-keycloak-realm-cm.yaml.j2 │ ├── 19_keycloak.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-install-opa.yaml.j2 │ ├── 25-opa-rego.yaml │ ├── 30-assert.yaml │ ├── 30-install-nifi.yaml │ ├── 30-nifi-flow-cm.yaml │ ├── 30_nifi.yaml.j2 │ ├── 40-create-configmap.yaml.j2 │ ├── 41-assert.yaml │ ├── 41-install-test-container.yaml.j2 │ ├── 45-assert.yaml │ └── test.py │ ├── orphaned_resources │ ├── 00-assert.yaml.j2 │ ├── 00-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 00-patch-ns.yaml.j2 │ ├── 01-assert.yaml │ ├── 01-install-zk.yaml.j2 │ ├── 02-assert.yaml │ ├── 02-install-nifi.yaml.j2 │ ├── 03-assert.yaml │ ├── 03-errors.yaml │ └── 03-remove-rolegroup.yaml.j2 │ ├── resources │ ├── 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.j2 │ ├── 02-install-nifi.yaml.j2 │ └── 03-assert.yaml │ ├── smoke_v1 │ ├── 00-patch-ns.yaml.j2 │ ├── 00-range-limit.yaml │ ├── 10-assert.yaml.j2 │ ├── 10-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 20-assert.yaml │ ├── 20-install-zookeeper.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-install-nifi.yaml.j2 │ ├── 31-assert.yaml.j2 │ ├── 32-assert.yaml │ ├── 33-assert.yaml │ ├── 40-assert.yaml │ ├── 40-scale-up-nifi.yaml.j2 │ ├── 50-assert.yaml │ ├── 50-install-test-nifi.yaml │ ├── 60-assert.yaml.j2 │ ├── 60-prepare-test-nifi.yaml │ ├── cacert.pem │ ├── test_nifi.py │ └── test_nifi_metrics.py │ ├── smoke_v2 │ ├── 00-patch-ns.yaml.j2 │ ├── 00-range-limit.yaml │ ├── 10-assert.yaml.j2 │ ├── 10-install-vector-aggregator-discovery-configmap.yaml.j2 │ ├── 20-assert.yaml.j2 │ ├── 20-install-zookeeper.yaml.j2 │ ├── 30-assert.yaml │ ├── 30-install-nifi.yaml.j2 │ ├── 31-assert.yaml.j2 │ ├── 32-assert.yaml │ ├── 33-assert.yaml │ ├── 40-assert.yaml │ ├── 40-scale-up-nifi.yaml.j2 │ ├── 50-assert.yaml │ ├── 50-install-test-nifi.yaml.j2 │ ├── 60-assert.yaml.j2 │ ├── 60-prepare-test-nifi.yaml │ ├── cacert.pem │ ├── test_nifi.py │ └── test_nifi_metrics.py │ └── upgrade │ ├── 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.j2 │ ├── 02-install-nifi.yaml.j2 │ ├── 03-assert.yaml │ ├── 03-install-test-nifi.yaml │ ├── 04-assert.yaml.j2 │ ├── 04-prepare-test-nifi.yaml.j2 │ ├── 05-assert.yaml.j2 │ ├── 05-upgrade-nifi.yaml.j2 │ ├── 07-assert.yaml.j2 │ ├── cacert.pem │ ├── flow.py │ ├── generate-and-log-flowfiles.json │ ├── generate-and-log-flowfiles.xml │ ├── test_nifi.py │ └── test_nifi_metrics.py └── test-definition.yaml /.actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.actionlint.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.envrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.envrc.sample -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-normal-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.github/ISSUE_TEMPLATE/01-normal-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.github/ISSUE_TEMPLATE/02-bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.github/ISSUE_TEMPLATE/new_version.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/normal-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.github/ISSUE_TEMPLATE/normal-issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pre-release-getting-started-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-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/nifi-operator/HEAD/.github/PULL_REQUEST_TEMPLATE/pre-release-rust-deps.md -------------------------------------------------------------------------------- /.github/actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.github/actionlint.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/general_daily_security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.github/workflows/general_daily_security.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.github/workflows/integration-test.yml -------------------------------------------------------------------------------- /.github/workflows/pr_pre-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.github/workflows/pr_pre-commit.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.hadolint.yaml -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readme/README.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.readme/README.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/documentation.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.readme/partials/borrowed/documentation.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/footer.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.readme/partials/borrowed/footer.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/header.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.readme/partials/borrowed/header.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/links.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.readme/partials/borrowed/links.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/overview_blurb.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.readme/partials/borrowed/overview_blurb.md.j2 -------------------------------------------------------------------------------- /.readme/partials/borrowed/related_reading.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.readme/partials/borrowed/related_reading.md.j2 -------------------------------------------------------------------------------- /.readme/partials/main.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.readme/partials/main.md.j2 -------------------------------------------------------------------------------- /.readme/static/borrowed/Icon_Stackable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.readme/static/borrowed/Icon_Stackable.svg -------------------------------------------------------------------------------- /.readme/static/borrowed/stackable_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.readme/static/borrowed/stackable_overview.png -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/Cargo.nix -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/README.md -------------------------------------------------------------------------------- /Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/Tiltfile -------------------------------------------------------------------------------- /crate-hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/crate-hashes.json -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/default.nix -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deny.toml -------------------------------------------------------------------------------- /deploy/DO_NOT_EDIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/DO_NOT_EDIT.md -------------------------------------------------------------------------------- /deploy/config-spec/properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/config-spec/properties.yaml -------------------------------------------------------------------------------- /deploy/helm/chart_testing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/chart_testing.yaml -------------------------------------------------------------------------------- /deploy/helm/ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/ct.yaml -------------------------------------------------------------------------------- /deploy/helm/nifi-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/nifi-operator/.helmignore -------------------------------------------------------------------------------- /deploy/helm/nifi-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/nifi-operator/Chart.yaml -------------------------------------------------------------------------------- /deploy/helm/nifi-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/nifi-operator/README.md -------------------------------------------------------------------------------- /deploy/helm/nifi-operator/configs/properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/nifi-operator/configs/properties.yaml -------------------------------------------------------------------------------- /deploy/helm/nifi-operator/crds/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/nifi-operator/crds/crds.yaml -------------------------------------------------------------------------------- /deploy/helm/nifi-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/nifi-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/helm/nifi-operator/templates/_maintenance.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/nifi-operator/templates/_maintenance.tpl -------------------------------------------------------------------------------- /deploy/helm/nifi-operator/templates/_telemetry.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/nifi-operator/templates/_telemetry.tpl -------------------------------------------------------------------------------- /deploy/helm/nifi-operator/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/nifi-operator/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/helm/nifi-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/nifi-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/helm/nifi-operator/templates/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/nifi-operator/templates/roles.yaml -------------------------------------------------------------------------------- /deploy/helm/nifi-operator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/nifi-operator/templates/service.yaml -------------------------------------------------------------------------------- /deploy/helm/nifi-operator/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/nifi-operator/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /deploy/helm/nifi-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/helm/nifi-operator/values.yaml -------------------------------------------------------------------------------- /deploy/stackable-operators-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/deploy/stackable-operators-ns.yaml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/antora.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: home 3 | version: "nightly" 4 | -------------------------------------------------------------------------------- /docs/modules/nifi/assets/images/listen-http-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/assets/images/listen-http-1.png -------------------------------------------------------------------------------- /docs/modules/nifi/assets/images/listen-http-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/assets/images/listen-http-2.png -------------------------------------------------------------------------------- /docs/modules/nifi/assets/images/listen-http-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/assets/images/listen-http-3.png -------------------------------------------------------------------------------- /docs/modules/nifi/assets/images/listen-http-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/assets/images/listen-http-4.png -------------------------------------------------------------------------------- /docs/modules/nifi/assets/images/nifi-web-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/assets/images/nifi-web-ui.png -------------------------------------------------------------------------------- /docs/modules/nifi/assets/images/put-iceberg-processor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/assets/images/put-iceberg-processor.png -------------------------------------------------------------------------------- /docs/modules/nifi/examples/getting_started/getting_started.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/examples/getting_started/getting_started.sh -------------------------------------------------------------------------------- /docs/modules/nifi/examples/getting_started/getting_started.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/examples/getting_started/getting_started.sh.j2 -------------------------------------------------------------------------------- /docs/modules/nifi/examples/getting_started/install_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/examples/getting_started/install_output.txt -------------------------------------------------------------------------------- /docs/modules/nifi/examples/getting_started/install_output.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/examples/getting_started/install_output.txt.j2 -------------------------------------------------------------------------------- /docs/modules/nifi/examples/getting_started/test-nifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/examples/getting_started/test-nifi.sh -------------------------------------------------------------------------------- /docs/modules/nifi/examples/getting_started/test_getting_started_helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/examples/getting_started/test_getting_started_helm.sh -------------------------------------------------------------------------------- /docs/modules/nifi/examples/getting_started/test_getting_started_stackablectl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/examples/getting_started/test_getting_started_stackablectl.sh -------------------------------------------------------------------------------- /docs/modules/nifi/images/listening-processor-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/images/listening-processor-example.png -------------------------------------------------------------------------------- /docs/modules/nifi/images/nifi_overview.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/images/nifi_overview.drawio.svg -------------------------------------------------------------------------------- /docs/modules/nifi/pages/getting_started/first_steps.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/getting_started/first_steps.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/getting_started/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/getting_started/index.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/getting_started/installation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/getting_started/installation.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/reference/commandline-parameters.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/reference/commandline-parameters.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/reference/crds.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/reference/crds.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/reference/environment-variables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/reference/environment-variables.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/reference/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/reference/index.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/troubleshooting/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/troubleshooting/index.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/clustering.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/clustering.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/custom-components.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/custom-components.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/exposing-processors/http.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/exposing-processors/http.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/exposing-processors/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/exposing-processors/index.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/exposing-processors/tcp.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/exposing-processors/tcp.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/extra-volumes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/extra-volumes.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/flow-versioning.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/flow-versioning.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/index.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/listenerclass.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/listenerclass.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/log-aggregation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/log-aggregation.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/monitoring.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/monitoring.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/operations/cluster-operations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/operations/cluster-operations.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/operations/graceful-shutdown.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/operations/graceful-shutdown.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/operations/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/operations/index.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/operations/pod-disruptions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/operations/pod-disruptions.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/operations/pod-placement.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/operations/pod-placement.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/overrides.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/overrides.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/resource-configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/resource-configuration.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/security.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/security.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/updating.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/updating.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/pages/usage_guide/writing-to-iceberg-tables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/pages/usage_guide/writing-to-iceberg-tables.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/partials/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/partials/nav.adoc -------------------------------------------------------------------------------- /docs/modules/nifi/partials/supported-versions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/modules/nifi/partials/supported-versions.adoc -------------------------------------------------------------------------------- /docs/templating_vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/docs/templating_vars.yaml -------------------------------------------------------------------------------- /examples/simple-nifi-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/examples/simple-nifi-cluster.yaml -------------------------------------------------------------------------------- /nix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/nix/README.md -------------------------------------------------------------------------------- /nix/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/nix/meta.json -------------------------------------------------------------------------------- /nix/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/nix/sources.json -------------------------------------------------------------------------------- /nix/sources.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/nix/sources.nix -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/renovate.json -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rust/operator-binary/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/Cargo.toml -------------------------------------------------------------------------------- /rust/operator-binary/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/build.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/jvm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/config/jvm.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/config/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/controller.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/affinity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/crd/affinity.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/authentication.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/crd/authentication.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/crd/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/sensitive_properties.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/crd/sensitive_properties.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/crd/tls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/crd/tls.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/listener.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/listener.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/main.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/graceful_shutdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/operations/graceful_shutdown.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/operations/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/pdb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/operations/pdb.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/operations/upgrade.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/operations/upgrade.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/product_logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/product_logging.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/reporting_task/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/reporting_task/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/security/authentication.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/security/authentication.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/security/authorization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/security/authorization.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/security/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/security/mod.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/security/oidc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/security/oidc.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/security/sensitive_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/security/sensitive_key.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/security/tls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/security/tls.rs -------------------------------------------------------------------------------- /rust/operator-binary/src/service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rust/operator-binary/src/service.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /scripts/auto-retry-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/scripts/auto-retry-tests.py -------------------------------------------------------------------------------- /scripts/docs_templating.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/scripts/docs_templating.sh -------------------------------------------------------------------------------- /scripts/ensure_one_trailing_newline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/scripts/ensure_one_trailing_newline.py -------------------------------------------------------------------------------- /scripts/generate-manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/scripts/generate-manifests.sh -------------------------------------------------------------------------------- /scripts/render_readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/scripts/render_readme.sh -------------------------------------------------------------------------------- /scripts/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-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/nifi-operator/HEAD/shell.nix -------------------------------------------------------------------------------- /tests/README-templating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/README-templating.md -------------------------------------------------------------------------------- /tests/interu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/interu.yaml -------------------------------------------------------------------------------- /tests/kuttl-test.yaml.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/kuttl-test.yaml.jinja2 -------------------------------------------------------------------------------- /tests/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/release.yaml -------------------------------------------------------------------------------- /tests/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster_operation/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-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/nifi-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/nifi-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/nifi-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/nifi-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/nifi-operator/HEAD/tests/templates/kuttl/cluster_operation/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster_operation/20-install-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/cluster_operation/20-install-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster_operation/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/cluster_operation/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster_operation/30-stop-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/cluster_operation/30-stop-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster_operation/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/cluster_operation/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster_operation/40-pause-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/cluster_operation/40-pause-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster_operation/50-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/cluster_operation/50-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/cluster_operation/50-restart-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/cluster_operation/50-restart-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-components-git-sync/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/custom-components-git-sync/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-components-git-sync/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/custom-components-git-sync/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-components-git-sync/10-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/custom-components-git-sync/10-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-components-git-sync/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/custom-components-git-sync/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-components-git-sync/20-install-zk.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/custom-components-git-sync/20-install-zk.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-components-git-sync/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/custom-components-git-sync/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-components-git-sync/30-install-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/custom-components-git-sync/30-install-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-components-git-sync/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/custom-components-git-sync/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-components-git-sync/40-test-nifi-greeting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/custom-components-git-sync/40-test-nifi-greeting.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-components-git-sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/custom-components-git-sync/README.md -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-components-git-sync/canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/custom-components-git-sync/canvas.png -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-components-git-sync/java-processors/nifi-sample-nar-1.0.0.nar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/custom-components-git-sync/java-processors/nifi-sample-nar-1.0.0.nar -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-components-git-sync/java-processors/sample-processor.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/custom-components-git-sync/java-processors/sample-processor.tar.gz -------------------------------------------------------------------------------- /tests/templates/kuttl/custom-components-git-sync/python-processors/greet_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/custom-components-git-sync/python-processors/greet_processor.py -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/external-access/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/00-range-limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/external-access/00-range-limit.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/external-access/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/external-access/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/10-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/external-access/10-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/15-create-listener-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/external-access/15-create-listener-class.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/15_listener-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/external-access/15_listener-class.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/external-access/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/20-install-zk.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/external-access/20-install-zk.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/external-access/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/30-install-nifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/external-access/30-install-nifi.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/external-access/30_nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/external-access/30_nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/00-rbac.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/00-rbac.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/01-create-s3-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/01-create-s3-connection.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/01_s3-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/01_s3-connection.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/02-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/02-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/02-install-krb5-kdc.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/02-install-krb5-kdc.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/03-create-kerberos-secretclass.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/03-create-kerberos-secretclass.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/03_kerberos-secretclass.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/03_kerberos-secretclass.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/10-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/10-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/20-install-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/20-install-minio.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/20_minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/20_minio.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/21-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/21-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/21-install-minio-jobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/21-install-minio-jobs.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/21_minio_jobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/21_minio_jobs.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/25-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/25-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/25-install-hive-postgres.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/25-install-hive-postgres.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/25_helm-bitnami-postgresql-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/25_helm-bitnami-postgresql-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/30-install-zookeeper.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/30-install-zookeeper.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/31-opa.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/31-opa.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/32-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/32-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/32-install-hdfs.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/32-install-hdfs.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/32_hdfs.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/32_hdfs.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/33-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/33-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/33-install-hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/33-install-hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/33_hive.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/33_hive.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/34-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/34-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/34-install-trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/34-install-trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/34_trino.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/34_trino.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/40-create-iceberg-tables.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/40-create-iceberg-tables.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/50-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/50-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/50-install-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/50-install-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/50_nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/50_nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/60-create-nifi-flow-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/60-create-nifi-flow-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/60_nifi-flow-with-kerberos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/60_nifi-flow-with-kerberos.json -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/60_nifi-flow-without-kerberos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/60_nifi-flow-without-kerberos.json -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/61-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/61-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/61-provision-nifi-flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/61-provision-nifi-flow.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/70-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/70-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/70-check-iceberg-tables.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/70-check-iceberg-tables.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/README.md -------------------------------------------------------------------------------- /tests/templates/kuttl/iceberg/interactive-nifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/iceberg/interactive-nifi.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/01-install-openldap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/01-install-openldap.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/02-create-ldap-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/02-create-ldap-user.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/03-install-test-nifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/03-install-test-nifi.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/10-install-zk.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/10-install-zk.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/11-create-authentication-classes.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/11-create-authentication-classes.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/12-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/12-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/12-install-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/12-install-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/20-test-nifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/20-test-nifi.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/create-authentication-classes.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/create-authentication-classes.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/create_ldap_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/create_ldap_user.sh -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/install-openldap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/install-openldap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/ldap/test_nifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/ldap/test_nifi.py -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-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/nifi-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/nifi-operator/HEAD/tests/templates/kuttl/logging/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/logging/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/01-install-nifi-vector-aggregator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/logging/01-install-nifi-vector-aggregator.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/logging/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/02-install-zookeeper.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/logging/02-install-zookeeper.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/03-create-configmap-with-prepared-logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/logging/03-create-configmap-with-prepared-logs.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/04-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/logging/04-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/04-install-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/logging/04-install-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/logging/05-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/05-install-nifi-test-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/logging/05-install-nifi-test-runner.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/06-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/logging/06-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/06-test-log-aggregation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/logging/06-test-log-aggregation.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/nifi-vector-aggregator-values.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/logging/nifi-vector-aggregator-values.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/prepared-logs.log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/logging/prepared-logs.log4j.xml -------------------------------------------------------------------------------- /tests/templates/kuttl/logging/test_log_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/logging/test_log_aggregation.py -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/10-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/10-install-zk.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/10-install-zk.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/15-install-authentication-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/15-install-authentication-class.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/15_authentication-class.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/15_authentication-class.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/19-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/19-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/19-install-keycloak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/19-install-keycloak.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/19-keycloak-realm-cm.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/19-keycloak-realm-cm.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/19_keycloak.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/19_keycloak.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/20-install-opa.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/20-install-opa.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/25-opa-rego.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/25-opa-rego.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/30-install-nifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/30-install-nifi.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/30-nifi-flow-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/30-nifi-flow-cm.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/30_nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/30_nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/40-create-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/40-create-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/41-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/41-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/41-install-test-container.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/41-install-test-container.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/45-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/45-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/oidc-opa/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/oidc-opa/test.py -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned_resources/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/orphaned_resources/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned_resources/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/orphaned_resources/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned_resources/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/orphaned_resources/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned_resources/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/orphaned_resources/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned_resources/01-install-zk.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/orphaned_resources/01-install-zk.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned_resources/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/orphaned_resources/02-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned_resources/02-install-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/orphaned_resources/02-install-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned_resources/03-assert.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: kuttl.dev/v1beta1 3 | kind: TestAssert 4 | timeout: 600 5 | -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned_resources/03-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/orphaned_resources/03-errors.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/orphaned_resources/03-remove-rolegroup.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/orphaned_resources/03-remove-rolegroup.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/resources/00-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/00-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/resources/00-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/resources/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/resources/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/01-install-zk.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/resources/01-install-zk.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/02-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/resources/02-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/02-install-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/resources/02-install-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/resources/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/resources/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/00-range-limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/00-range-limit.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/10-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/10-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/20-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/20-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/20-install-zookeeper.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/20-install-zookeeper.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/30-install-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/30-install-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/31-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/31-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/32-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/32-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/33-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/33-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/40-scale-up-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/40-scale-up-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/50-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/50-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/50-install-test-nifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/50-install-test-nifi.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/60-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/60-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/60-prepare-test-nifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/60-prepare-test-nifi.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/cacert.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/test_nifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/test_nifi.py -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v1/test_nifi_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v1/test_nifi_metrics.py -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/00-patch-ns.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/00-range-limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/00-range-limit.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/10-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/10-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/10-install-vector-aggregator-discovery-configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/10-install-vector-aggregator-discovery-configmap.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/20-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/20-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/20-install-zookeeper.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/20-install-zookeeper.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/30-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/30-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/30-install-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/30-install-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/31-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/31-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/32-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/32-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/33-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/33-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/40-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/40-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/40-scale-up-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/40-scale-up-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/50-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/50-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/50-install-test-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/50-install-test-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/60-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/60-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/60-prepare-test-nifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/60-prepare-test-nifi.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/cacert.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/test_nifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/test_nifi.py -------------------------------------------------------------------------------- /tests/templates/kuttl/smoke_v2/test_nifi_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/smoke_v2/test_nifi_metrics.py -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/00-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-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/nifi-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/nifi-operator/HEAD/tests/templates/kuttl/upgrade/00-patch-ns.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/01-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/01-install-zk.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/01-install-zk.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/02-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/02-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/02-install-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/02-install-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/03-assert.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/03-install-test-nifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/03-install-test-nifi.yaml -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/04-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/04-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/04-prepare-test-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/04-prepare-test-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/05-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/05-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/05-upgrade-nifi.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/05-upgrade-nifi.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/07-assert.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/07-assert.yaml.j2 -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/cacert.pem -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/flow.py -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/generate-and-log-flowfiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/generate-and-log-flowfiles.json -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/generate-and-log-flowfiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/generate-and-log-flowfiles.xml -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/test_nifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/test_nifi.py -------------------------------------------------------------------------------- /tests/templates/kuttl/upgrade/test_nifi_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/templates/kuttl/upgrade/test_nifi_metrics.py -------------------------------------------------------------------------------- /tests/test-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackabletech/nifi-operator/HEAD/tests/test-definition.yaml --------------------------------------------------------------------------------