-
Notifications
You must be signed in to change notification settings - Fork 2
/
flavors.yaml
44 lines (40 loc) · 1.44 KB
/
flavors.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# This file controls the workers found within a cluster
# The worker node groups for the cluster
nodeGroups:
- # This group uses details found in nodeGroupDefault below
# and is enabled by default
name: default-md-0
# The number of machines in the node group if autoscale is false
machineCount: 2
# The following node groups are optional and can be enabled by uncommenting them
# - name: md-l3-small
# machineFlavor: l3.small
# machineCount: 1
# - name: md-rtx4000
# machineFlavor: g-rtx4000.x1
# machineCount: 1
# Defaults for node groups
nodeGroupDefaults:
# Indicates if the node group should be autoscaled
autoscale: false
# The flavor to use for machines in the node group
machineFlavor: l3.micro
healthCheck:
# Indicates if the machine health check should be enabled
enabled: true
# The spec for the health check
spec:
# By default, 20% unhealthy worker nodes remediated at a time
# https://cluster-api.sigs.k8s.io/tasks/automated-machine-management/healthchecking#max-unhealthy
maxUnhealthy: 20%
# If a node takes longer than 10 mins to startup, remediate it
nodeStartupTimeout: 10m0s
# By default, consider a worker node that has not been Ready for
# more than 5 mins unhealthy
unhealthyConditions:
- type: Ready
status: Unknown
timeout: 10m0s
- type: Ready
status: "False"
timeout: 10m0s