From 9d44127245990cc55dbdff5a4bd0a1524348f110 Mon Sep 17 00:00:00 2001 From: Max Audron Date: Sun, 6 Mar 2022 14:50:00 +0100 Subject: add support for kubernetes service discovery 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. --- src/util/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/util/Cargo.toml') diff --git a/src/util/Cargo.toml b/src/util/Cargo.toml index d5200f98..4e3c8c25 100644 --- a/src/util/Cargo.toml +++ b/src/util/Cargo.toml @@ -38,3 +38,6 @@ netapp = "0.3.0" http = "0.2" hyper = "0.14" + +kube = { version = "0.62", features = ["runtime", "derive"] } +k8s-openapi = { version = "0.13", features = ["v1_22"] } -- cgit v1.2.3