aboutsummaryrefslogtreecommitdiff
path: root/src/util/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/config.rs')
-rw-r--r--src/util/config.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/config.rs b/src/util/config.rs
index f1f4b06a..19c75478 100644
--- a/src/util/config.rs
+++ b/src/util/config.rs
@@ -52,6 +52,13 @@ pub struct Config {
pub consul_host: Option<String>,
/// Consul service name to use
pub consul_service_name: Option<String>,
+ /// Kubernetes namespace the service discovery resources are be created in
+ pub kubernetes_namespace: Option<String>,
+ /// Service name to filter for in k8s custom resources
+ pub kubernetes_service_name: Option<String>,
+ /// Skip creation of the garagenodes CRD
+ #[serde(default)]
+ pub kubernetes_skip_crd: bool,
/// Sled cache size, in bytes
#[serde(default = "default_sled_cache_capacity")]