Skip to content

Commit 50eec57

Browse files
committed
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 <[email protected]>
1 parent 0d5f1e0 commit 50eec57

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/kepler/developer/dev-docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ docker compose up -d
4141
make test
4242

4343
# Local development
44-
sudo ./bin/kepler --config hack/config.yaml
44+
sudo ./bin/kepler --config.file hack/config.yaml
4545
```
4646

4747
## 📚 Related Project Documentation

docs/kepler/developer/dev-docs.zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ docker compose up -d
4242
make test
4343

4444
# 本地开发
45-
sudo ./bin/kepler --config hack/config.yaml
45+
sudo ./bin/kepler --config.file hack/config.yaml
4646
```
4747

4848
## 📚 相关项目文档

docs/kepler/installation/guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ cd kepler
117117
make build
118118

119119
# Run Kepler (requires sudo for hardware access)
120-
sudo ./bin/kepler --config hack/config.yaml
120+
sudo ./bin/kepler --config.file hack/config.yaml
121121
```
122122

123123
#### Configuration
@@ -126,7 +126,7 @@ Kepler can be configured using YAML files or CLI flags. The default configuratio
126126

127127
```bash
128128
# Run with custom configuration
129-
sudo ./bin/kepler --config /path/to/your/config.yaml
129+
sudo ./bin/kepler --config.file /path/to/your/config.yaml
130130

131131
# Run with CLI flags
132132
sudo ./bin/kepler --log.level=debug --exporter.stdout

docs/kepler/installation/guide.zh.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ cd kepler
120120
make build
121121

122122
# 运行 Kepler(需要 sudo 权限访问硬件)
123-
sudo ./bin/kepler --config hack/config.yaml
123+
sudo ./bin/kepler --config.file hack/config.yaml
124124
```
125125

126126
#### 配置
@@ -129,7 +129,7 @@ Kepler 可以使用 YAML 文件或 CLI 标志进行配置。默认配置在 `hac
129129

130130
```bash
131131
# 使用自定义配置运行
132-
sudo ./bin/kepler --config /path/to/your/config.yaml
132+
sudo ./bin/kepler --config.file /path/to/your/config.yaml
133133

134134
# 使用 CLI 标志运行
135135
sudo ./bin/kepler --log.level=debug --exporter.stdout

0 commit comments

Comments
 (0)