Skip to content

Commit

Permalink
fix: scale up cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
Björn Urban committed Oct 11, 2024
1 parent 52aaa11 commit d797d37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l0/create/Hetzner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function createHetznerK3S(config: pulumi.Config, clusterName: string, mai
length: 30
})
const k3sCluster = new K3sCluster(hetznerOrchestrator, provider, hcloudToken, k3sToken);
const result = k3sCluster.createCluster(clusterName, true, 1, 1)
const result = k3sCluster.createCluster(clusterName, true, 1, 2)
// Write to a file
result.kubeconfig.apply(value => {
fs.writeFileSync(filename, value, 'utf8');
Expand Down

0 comments on commit d797d37

Please sign in to comment.