From 50eec576c33531f568cdd31c54cdc8b6cfd05e10 Mon Sep 17 00:00:00 2001 From: Vibhu Prashar Date: Sun, 17 Aug 2025 18:33:31 +0530 Subject: [PATCH] fix: update config flag initialization for Kepler This commit fixes the issue where the config flag was not being initialized properly for Kepler Signed-off-by: Vibhu Prashar --- docs/kepler/developer/dev-docs.md | 2 +- docs/kepler/developer/dev-docs.zh.md | 2 +- docs/kepler/installation/guide.md | 4 ++-- docs/kepler/installation/guide.zh.md | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/kepler/developer/dev-docs.md b/docs/kepler/developer/dev-docs.md index df44a085..2059456b 100644 --- a/docs/kepler/developer/dev-docs.md +++ b/docs/kepler/developer/dev-docs.md @@ -41,7 +41,7 @@ docker compose up -d make test # Local development -sudo ./bin/kepler --config hack/config.yaml +sudo ./bin/kepler --config.file hack/config.yaml ``` ## 📚 Related Project Documentation diff --git a/docs/kepler/developer/dev-docs.zh.md b/docs/kepler/developer/dev-docs.zh.md index ccc00ce9..515fb3ef 100644 --- a/docs/kepler/developer/dev-docs.zh.md +++ b/docs/kepler/developer/dev-docs.zh.md @@ -42,7 +42,7 @@ docker compose up -d make test # 本地开发 -sudo ./bin/kepler --config hack/config.yaml +sudo ./bin/kepler --config.file hack/config.yaml ``` ## 📚 相关项目文档 diff --git a/docs/kepler/installation/guide.md b/docs/kepler/installation/guide.md index da8ec375..9a6e30f4 100644 --- a/docs/kepler/installation/guide.md +++ b/docs/kepler/installation/guide.md @@ -117,7 +117,7 @@ cd kepler make build # Run Kepler (requires sudo for hardware access) -sudo ./bin/kepler --config hack/config.yaml +sudo ./bin/kepler --config.file hack/config.yaml ``` #### Configuration @@ -126,7 +126,7 @@ Kepler can be configured using YAML files or CLI flags. The default configuratio ```bash # Run with custom configuration -sudo ./bin/kepler --config /path/to/your/config.yaml +sudo ./bin/kepler --config.file /path/to/your/config.yaml # Run with CLI flags sudo ./bin/kepler --log.level=debug --exporter.stdout diff --git a/docs/kepler/installation/guide.zh.md b/docs/kepler/installation/guide.zh.md index 9a309da2..9b107fc4 100644 --- a/docs/kepler/installation/guide.zh.md +++ b/docs/kepler/installation/guide.zh.md @@ -120,7 +120,7 @@ cd kepler make build # 运行 Kepler(需要 sudo 权限访问硬件) -sudo ./bin/kepler --config hack/config.yaml +sudo ./bin/kepler --config.file hack/config.yaml ``` #### 配置 @@ -129,7 +129,7 @@ Kepler 可以使用 YAML 文件或 CLI 标志进行配置。默认配置在 `hac ```bash # 使用自定义配置运行 -sudo ./bin/kepler --config /path/to/your/config.yaml +sudo ./bin/kepler --config.file /path/to/your/config.yaml # 使用 CLI 标志运行 sudo ./bin/kepler --log.level=debug --exporter.stdout