From 8eb59643cf7c55353c9a52e72c69a0af4c39843c Mon Sep 17 00:00:00 2001 From: kasun Date: Mon, 1 Jun 2026 03:15:15 +0200 Subject: [PATCH] format --- k8s-bootstrap/index.ts | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/k8s-bootstrap/index.ts b/k8s-bootstrap/index.ts index 0eb11d7..d4ae119 100644 --- a/k8s-bootstrap/index.ts +++ b/k8s-bootstrap/index.ts @@ -48,7 +48,8 @@ const worker2VmId = vmIdsOutput.apply((ids) => String(ids.worker2)); // SSH connection helper function conn( - ip: pulumi.Input): command.types.input.remote.ConnectionArgs { + ip: pulumi.Input, +): command.types.input.remote.ConnectionArgs { return { host: ip, user: "ubuntu", privateKey: ciRunnerPrivateKey }; } @@ -227,8 +228,8 @@ const getKubeconfig = new command.remote.Command( { dependsOn: [joinWorker1, joinWorker2] }, ); - export const kubeconfig = pulumi.secret( - pulumi - .all([getKubeconfig.stdout, master1Ip]) - .apply(([kc, ip]) => kc.replaceAll("127.0.0.1", ip as string).trim()), - ); +export const kubeconfig = pulumi.secret( + pulumi + .all([getKubeconfig.stdout, master1Ip]) + .apply(([kc, ip]) => kc.replaceAll("127.0.0.1", ip as string).trim()), +);