Skip to content

Commit 44edc94

Browse files
committed
fix
1 parent ee01061 commit 44edc94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/setup/configs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ export default class SetupConfigs extends Command {
525525
const balanceCheckerConfigFilePath = path.join(targetDir, "balance-checker-config.yaml");
526526
const addedAlertRules = this.generateAlertRules(balanceCheckerConfigFilePath);
527527
const existingContent = fs.readFileSync(scrollMonitorProductionFilePath, 'utf8');
528-
const existingYaml = yaml.load(existingContent) as any;
528+
const existingYaml = yaml.load(existingContent) as any;
529529
existingYaml["kube-prometheus-stack"].additionalPrometheusRules = addedAlertRules;
530530
fs.writeFileSync(scrollMonitorProductionFilePath, yaml.dump(existingYaml, { indent: 2 }));
531531
}

0 commit comments

Comments
 (0)