fix: resolved sonarqube warning

This commit is contained in:
2026-06-01 02:20:06 +02:00
parent 4a96cb9d07
commit c8e688b9ff
+1 -1
View File
@@ -228,6 +228,6 @@ const getKubeconfig = new command.remote.Command(
export const kubeconfig = pulumi.secret(
getKubeconfig.stdout.apply((kc) =>
kc.replace(/127\.0\.0\.1/g, master1Ip).trim(),
kc.replaceAll("127.0.0.1", master1Ip).trim(),
),
);