diff --git a/create-cluster/README.md b/create-cluster/README.md index 3ae95e0..128c433 100644 --- a/create-cluster/README.md +++ b/create-cluster/README.md @@ -58,7 +58,7 @@ create_cluster ---> cluster_kubeconfig | nodes | | False | Number of nodes to provision | | min-nodes | | False | Minimum number of nodes to provision | | max-nodes | | False | Maximum number of nodes to provision | -| instance-type | | False | Instance type to provision | +| instance-type | | False | Instance type to provision (ignored if you specify node-groups) | | timeout-minutes | 20 | False | Time to wait for the cluster to have a status of `running` | | node-groups | | False | Node groups to provision.
Example:
node-groups: \|
- name: "worker"
instance-type: "t3.medium"
disk: 100
nodes: 3

| | tags | | False | Tags to assign to the cluster.
Example:
tags: \|
- key: "department"
value: "engineering"

| diff --git a/create-cluster/action.yml b/create-cluster/action.yml index c6ecdbb..85395e5 100644 --- a/create-cluster/action.yml +++ b/create-cluster/action.yml @@ -32,7 +32,7 @@ inputs: description: "Maximum number of nodes to provision" required: false instance-type: - description: "Instance type to provision" + description: "Instance type to provision (ignored if you specify node-groups)" required: false timeout-minutes: description: "Time to wait for the cluster to have a status of `running`"