├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml └── workflows │ ├── checklist_validator.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── Index.md ├── LICENSE ├── README.MD ├── charts └── manticoresearch │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── balancer-config-map.yaml │ ├── manticore-balancer.yaml │ ├── manticore-worker.yaml │ ├── metrics-service.yaml │ ├── rolebinding.yaml │ ├── service-balancer.yaml │ ├── service-monitor.yaml │ ├── service-worker-replication.yaml │ ├── service-worker.yaml │ └── worker-config-map.yaml │ └── values.yaml ├── clt_tests ├── .gitignore ├── Dockerfile ├── clt-init.sh └── tests │ ├── 1-deploy.rec │ ├── 2-wait-until-deploy.rec │ ├── 3-show-status-master.rec │ ├── 4-show-status-slave.rec │ ├── 5-create-tables.rec │ ├── 6-query.rec │ ├── 7-check-image.rec │ ├── 8-uninstall.rec │ ├── 9-install-no-balancer.rec │ ├── 91-wait-until-deploy-no-balancer.rec │ ├── 92-uninstall.rec │ ├── 93-install-with-stopwords.rec │ ├── 94-wait-and-check-stopwords.rec │ └── init │ ├── init.recb │ └── uninstall.recb ├── cr.yaml ├── m2m_quorum.jpg ├── m2s_quorum.jpg ├── replication.jpg └── sources ├── manticore-balancer ├── .dockerignore ├── Dockerfile ├── composer.json ├── deploy.sh ├── observer.php ├── observer_runner.sh ├── optimize.php ├── optimize_runner.sh ├── starter.sh └── supervisord.conf └── manticore-worker ├── Dockerfile ├── composer.json ├── de.pak ├── deploy.sh ├── en.pak ├── env_reader.php ├── manticore.conf ├── replica.php ├── ru.pak ├── shutdown.sh ├── starter.sh └── supervisord.conf /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/checklist_validator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/.github/workflows/checklist_validator.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/.gitignore -------------------------------------------------------------------------------- /Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/Index.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/README.MD -------------------------------------------------------------------------------- /charts/manticoresearch/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/.helmignore -------------------------------------------------------------------------------- /charts/manticoresearch/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/CHANGELOG.md -------------------------------------------------------------------------------- /charts/manticoresearch/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/Chart.yaml -------------------------------------------------------------------------------- /charts/manticoresearch/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/manticoresearch/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/manticoresearch/templates/balancer-config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/templates/balancer-config-map.yaml -------------------------------------------------------------------------------- /charts/manticoresearch/templates/manticore-balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/templates/manticore-balancer.yaml -------------------------------------------------------------------------------- /charts/manticoresearch/templates/manticore-worker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/templates/manticore-worker.yaml -------------------------------------------------------------------------------- /charts/manticoresearch/templates/metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/templates/metrics-service.yaml -------------------------------------------------------------------------------- /charts/manticoresearch/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/templates/rolebinding.yaml -------------------------------------------------------------------------------- /charts/manticoresearch/templates/service-balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/templates/service-balancer.yaml -------------------------------------------------------------------------------- /charts/manticoresearch/templates/service-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/templates/service-monitor.yaml -------------------------------------------------------------------------------- /charts/manticoresearch/templates/service-worker-replication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/templates/service-worker-replication.yaml -------------------------------------------------------------------------------- /charts/manticoresearch/templates/service-worker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/templates/service-worker.yaml -------------------------------------------------------------------------------- /charts/manticoresearch/templates/worker-config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/templates/worker-config-map.yaml -------------------------------------------------------------------------------- /charts/manticoresearch/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/charts/manticoresearch/values.yaml -------------------------------------------------------------------------------- /clt_tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/.gitignore -------------------------------------------------------------------------------- /clt_tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/Dockerfile -------------------------------------------------------------------------------- /clt_tests/clt-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/clt-init.sh -------------------------------------------------------------------------------- /clt_tests/tests/1-deploy.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/1-deploy.rec -------------------------------------------------------------------------------- /clt_tests/tests/2-wait-until-deploy.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/2-wait-until-deploy.rec -------------------------------------------------------------------------------- /clt_tests/tests/3-show-status-master.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/3-show-status-master.rec -------------------------------------------------------------------------------- /clt_tests/tests/4-show-status-slave.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/4-show-status-slave.rec -------------------------------------------------------------------------------- /clt_tests/tests/5-create-tables.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/5-create-tables.rec -------------------------------------------------------------------------------- /clt_tests/tests/6-query.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/6-query.rec -------------------------------------------------------------------------------- /clt_tests/tests/7-check-image.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/7-check-image.rec -------------------------------------------------------------------------------- /clt_tests/tests/8-uninstall.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/8-uninstall.rec -------------------------------------------------------------------------------- /clt_tests/tests/9-install-no-balancer.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/9-install-no-balancer.rec -------------------------------------------------------------------------------- /clt_tests/tests/91-wait-until-deploy-no-balancer.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/91-wait-until-deploy-no-balancer.rec -------------------------------------------------------------------------------- /clt_tests/tests/92-uninstall.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/92-uninstall.rec -------------------------------------------------------------------------------- /clt_tests/tests/93-install-with-stopwords.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/93-install-with-stopwords.rec -------------------------------------------------------------------------------- /clt_tests/tests/94-wait-and-check-stopwords.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/94-wait-and-check-stopwords.rec -------------------------------------------------------------------------------- /clt_tests/tests/init/init.recb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/init/init.recb -------------------------------------------------------------------------------- /clt_tests/tests/init/uninstall.recb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/clt_tests/tests/init/uninstall.recb -------------------------------------------------------------------------------- /cr.yaml: -------------------------------------------------------------------------------- 1 | release-notes-file: CHANGELOG.md 2 | skip-existing: true 3 | -------------------------------------------------------------------------------- /m2m_quorum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/m2m_quorum.jpg -------------------------------------------------------------------------------- /m2s_quorum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/m2s_quorum.jpg -------------------------------------------------------------------------------- /replication.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/replication.jpg -------------------------------------------------------------------------------- /sources/manticore-balancer/.dockerignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /sources/manticore-balancer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-balancer/Dockerfile -------------------------------------------------------------------------------- /sources/manticore-balancer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-balancer/composer.json -------------------------------------------------------------------------------- /sources/manticore-balancer/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-balancer/deploy.sh -------------------------------------------------------------------------------- /sources/manticore-balancer/observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-balancer/observer.php -------------------------------------------------------------------------------- /sources/manticore-balancer/observer_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-balancer/observer_runner.sh -------------------------------------------------------------------------------- /sources/manticore-balancer/optimize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-balancer/optimize.php -------------------------------------------------------------------------------- /sources/manticore-balancer/optimize_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-balancer/optimize_runner.sh -------------------------------------------------------------------------------- /sources/manticore-balancer/starter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-balancer/starter.sh -------------------------------------------------------------------------------- /sources/manticore-balancer/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-balancer/supervisord.conf -------------------------------------------------------------------------------- /sources/manticore-worker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-worker/Dockerfile -------------------------------------------------------------------------------- /sources/manticore-worker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-worker/composer.json -------------------------------------------------------------------------------- /sources/manticore-worker/de.pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-worker/de.pak -------------------------------------------------------------------------------- /sources/manticore-worker/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-worker/deploy.sh -------------------------------------------------------------------------------- /sources/manticore-worker/en.pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-worker/en.pak -------------------------------------------------------------------------------- /sources/manticore-worker/env_reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-worker/env_reader.php -------------------------------------------------------------------------------- /sources/manticore-worker/manticore.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-worker/manticore.conf -------------------------------------------------------------------------------- /sources/manticore-worker/replica.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-worker/replica.php -------------------------------------------------------------------------------- /sources/manticore-worker/ru.pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-worker/ru.pak -------------------------------------------------------------------------------- /sources/manticore-worker/shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-worker/shutdown.sh -------------------------------------------------------------------------------- /sources/manticore-worker/starter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-worker/starter.sh -------------------------------------------------------------------------------- /sources/manticore-worker/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch-helm/HEAD/sources/manticore-worker/supervisord.conf --------------------------------------------------------------------------------