Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion modules/kubernetes_cluster/aws_eks/0.1/facets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,31 @@ spec:
field: spec.nodepools.facets_dedicated.enable
values: [true]
x-ui-overrides-only: true
min_nodes:
title: Min Nodes
description: Minimum number of worker nodes in the node pool. Set to
2 or more for high availability of the platform components pinned to
this node pool.
type: integer
minimum: 1
maximum: 200
default: 1
x-ui-visible-if:
field: spec.nodepools.facets_dedicated.enable
values: [true]
x-ui-overrides-only: true
desired_nodes:
title: Desired Nodes
description: Desired number of worker nodes. Falls back to Min Nodes
when unset. Applied only at node pool creation (ignored on later
updates). Must be between Min Nodes and Max Nodes.
type: integer
minimum: 1
maximum: 200
x-ui-visible-if:
field: spec.nodepools.facets_dedicated.enable
values: [true]
x-ui-overrides-only: true
instance_type:
title: Instance Type
description: Instance Type of Facets Dedicated Node Pool
Expand Down Expand Up @@ -243,7 +268,7 @@ spec:
values: [true]
required: ["instance_type"]
x-ui-order: [enable, instance_type, node_lifecycle_type, root_disk_volume,
max_nodes, ami_id, ami_name_filter, ami_owner_id]
max_nodes, min_nodes, desired_nodes, ami_id, ami_name_filter, ami_owner_id]
ondemand_fallback:
title: Ondemand Fallback Nodepool Spec
description: Specifications of Ondemand Fallback Nodepool
Expand Down
27 changes: 26 additions & 1 deletion modules/kubernetes_cluster/aws_eks/0.2/facets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,31 @@ spec:
field: spec.nodepools.facets_dedicated.enable
values: [true]
x-ui-overrides-only: true
min_nodes:
title: Min Nodes
description: Minimum number of worker nodes in the node pool. Set to
2 or more for high availability of the platform components pinned to
this node pool.
type: integer
minimum: 1
maximum: 200
default: 1
x-ui-visible-if:
field: spec.nodepools.facets_dedicated.enable
values: [true]
x-ui-overrides-only: true
desired_nodes:
title: Desired Nodes
description: Desired number of worker nodes. Falls back to Min Nodes
when unset. Applied only at node pool creation (ignored on later
updates). Must be between Min Nodes and Max Nodes.
type: integer
minimum: 1
maximum: 200
x-ui-visible-if:
field: spec.nodepools.facets_dedicated.enable
values: [true]
x-ui-overrides-only: true
instance_type:
title: Instance Type
description: Instance type for Facets Dedicated Node Pool
Expand Down Expand Up @@ -243,7 +268,7 @@ spec:
values: [true]
required: ["instance_type"]
x-ui-order: [enable, instance_type, node_lifecycle_type, root_disk_volume,
max_nodes, ami_id, ami_name_filter, ami_owner_id]
max_nodes, min_nodes, desired_nodes, ami_id, ami_name_filter, ami_owner_id]
ondemand_fallback:
title: Ondemand Fallback Nodepool Spec
description: Specifications of Ondemand Fallback Nodepool
Expand Down
Loading