https://github.com/kubeflow/katib
Raw File
Tip revision: fc82e20b9933b73431b5fa2d50fc1ab2de144481 authored by IWAMOTO Toshihiro on 26 February 2019, 08:01:53 UTC
studyjobcontroller: requeue Reconcile on error
Tip revision: fc82e20
developer-guide.md
# Developer Guide

## Requirements

- [Go](https://golang.org/)
- [Dep](https://golang.github.io/dep/)
- [Docker](https://docs.docker.com/) (17.05 or later.)

## Build from source code

Pull in the dependencies

```
dep ensure --vendor-only
```

You can build all images from source.

```bash
./scripts/build.sh
```

## Implement new suggestion algorithm

Suggestion API is defined as GRPC service at `API/api.proto`.
You can attach new algorithm easily.

- implement suggestion API
- make k8s service named vizier-suggestion-{ algorithm-name } and expose port 6789

And to add new suggestion service, you don't need to stop components ( vizier-core, modeldb, and anything) that are already running.
back to top