https://github.com/manticoresoftware/manticoresearch-auto-replication
Library for automation of replication of Manticore Search in Kubernetes. Used by Manticore Helm chart and other projects
https://github.com/manticoresoftware/manticoresearch-auto-replication
Last synced: about 1 year ago
JSON representation
Library for automation of replication of Manticore Search in Kubernetes. Used by Manticore Helm chart and other projects
- Host: GitHub
- URL: https://github.com/manticoresoftware/manticoresearch-auto-replication
- Owner: manticoresoftware
- License: apache-2.0
- Created: 2022-08-09T08:20:52.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-13T17:48:19.000Z (about 1 year ago)
- Last Synced: 2025-02-13T18:37:50.254Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 125 KB
- Stars: 0
- Watchers: 7
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
### Local development
Create `index.php` file for local debug
```php
require('vendor/autoload.php');
$labels = [
'app.kubernetes.io/component' => 'worker',
'app.kubernetes.io/instance' => 'helm',
];
$api = new ApiClient();
$api->setApiUrl('http://localhost:8080');
$api->setNamespace('helm');
$api->setMode(ApiClient::DEV_MODE);
```
Run k8s proxy
```
kubectl proxy --port=8080
```