Skip to content

Commit

Permalink
address pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig O'Donnell committed Sep 22, 2023
1 parent d7366f0 commit 3661e46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions create-cluster/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ inputs:
ttl:
description: 'Cluster TTL (duration, max 48h)'
required: false
disk-gib:
disk:
description: 'Disk size in GiB'
required: false
node-count:
nodes:
description: 'Number of nodes to provision'
required: false
instance-type:
Expand Down
4 changes: 2 additions & 2 deletions create-cluster/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ async function run() {
const k8sDistribution = core.getInput('kubernetes-distribution');
const k8sVersion = core.getInput('kubernetes-version');
const k8sTTL = core.getInput('ttl');
const diskGib: number = +(core.getInput('disk-gib') || 50);
const nodeCount: number = +(core.getInput('node-count') || 1);
const diskGib: number = +(core.getInput('disk'));
const nodeCount: number = +(core.getInput('nodes'));
const instanceType = core.getInput('instance-type');
const timeoutMinutes: number = +(core.getInput('timeout-minutes') || 20);
const apiEndpoint = core.getInput('replicated-api-endpoint')
Expand Down

0 comments on commit 3661e46

Please sign in to comment.