aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/kubernetes.rs
Commit message (Collapse)AuthorAgeFilesLines
* Remove/change println! in server code (fix #358)Alex Auvolat2022-09-131-1/+1
|
* Add feature flag for Kubernetes discoveryAlex Auvolat2022-03-241-5/+3
|
* Fix some new clippy lintsfix-resyncAlex Auvolat2022-03-141-4/+2
|
* add support for kubernetes service discoveryMax Audron2022-03-121-0/+118
This commit adds support to discover garage instances running in kubernetes. Once enabled by setting `kubernetes_namespace` and `kubernetes_service_name` garage will create a Custom Resources `garagenodes.deuxfleurs.fr` with nodes public key as the resource name. and IP and Port information as spec in the namespace configured by `kubernetes_namespace`. For discovering nodes the resources are filtered with the optionally set `kubernetes_service_name` which sets a label `garage.deuxfleurs.fr/service` on the resources. This allows to separate multiple garage deployments in a single namespace. the `kubernetes_skip_crd` variable allows to disable the creation of the CRD by garage itself. The user must deploy this manually.