An open API service indexing awesome lists of open source software.

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

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
```