Skip to content

Commit

Permalink
Adding doc about spot instances (#362)
Browse files Browse the repository at this point in the history
* Adding doc about spot instances

* updating LT worker group details

* updating doc
  • Loading branch information
max-rocket-internet committed May 7, 2019
1 parent 3ece32f commit b27b582
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ project adheres to [Semantic Versioning](http://semver.org/).

### Added

- Added support for custom service linked role for Auto Scaling group (by @voanhduy1512)
- Added doc about spot instances (by @max-rocket-internet)
- Added support for custom service linked role for Auto Scaling group (by @voanhduy1512)
- Write your awesome addition here (by @you)

### Changed
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ module "my-cluster" {

- [Autoscaling](docs/autoscaling.md): How to enable worker node autoscaling.
- [Enable Docker Bridge Network](docs/enable-docker-bridge-network.md): How to enable the docker bridge network when using the EKS-optimized AMI, which disables it by default.
- [Spot instances](docs/spot-instances.md): How to use spot instances with this module.

## Release schedule

Expand Down
105 changes: 105 additions & 0 deletions docs/spot-instances.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
# Using spot instances

Spot instances usually cost around 30-70% less than an on-demand instance. So using them for your EKS workloads can save a lot of money but requires some special considerations as they will be terminated with only 2 minutes warning.

You need to install a daemonset to catch the 2 minute warning before termination. This will ensure the node is gracefully drained before termination. You can install the [k8s-spot-termination-handler](https://github.com/kube-aws/kube-spot-termination-notice-handler) for this. There's a [Helm chart](https://github.com/helm/charts/tree/master/stable/k8s-spot-termination-handler):

```
helm install stable/k8s-spot-termination-handler --namespace kube-system
```

In the following examples at least 1 worker group that uses on-demand instances is included. This worker group has an added node label that can be used in scheduling. This could be used to schedule any workload but is important for the [cluster-autoscaler](https://github.com/kubernetes/autoscaler/tree/master/cluster-autoscaler) as it might be end up unscheduled when spot instances are terminated. You can add this to the values of the [cluster-autoscaler helm chart](https://github.com/helm/charts/tree/master/stable/cluster-autoscaler):

```yaml
nodeSelector:
spot: "false"
```

Notes:

- The `spot_price` is set to the on-demand price so that the spot instances will run as long as they are the cheaper.
- It's best to have a broad range of instance types to ensure there's always some instances to run when prices fluctuate.
- Using an [AWS Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-fleet-requests.html) is the best option but is not supported by this module yet.
- There is an AWS blog article about this [here](https://aws.amazon.com/blogs/compute/run-your-kubernetes-workloads-on-amazon-ec2-spot-instances-with-amazon-eks/).
- Consider using [k8s-spot-rescheduler](https://github.com/pusher/k8s-spot-rescheduler) to move pods from on-demand to spot instances.

## Using Launch Configuration

Example Terraform worker group configuration that use an ASG with launch configuration:

```hcl
worker_group_count = 3
worker_groups = [
{
name = "on-demand-1"
instance_type = "m4.xlarge"
asg_max_size = 1
autoscaling_enabled = true
kubelet_extra_args = "--node-labels=spot=false"
suspended_processes = "AZRebalance"
},
{
name = "spot-1"
spot_price = "0.39"
instance_type = "c4.2xlarge"
asg_max_size = 20
autoscaling_enabled = true
kubelet_extra_args = "--node-labels=spot=true"
suspended_processes = "AZRebalance"
},
{
name = "spot-2"
spot_price = "0.40"
instance_type = "m4.2xlarge"
asg_max_size = 20
autoscaling_enabled = true
kubelet_extra_args = "--node-labels=spot=true"
suspended_processes = "AZRebalance"
}
]
```

## Using Launch Templates

Launch Template support is a recent addition to both AWS and this module. It might not be as tried and tested.

Example Terraform worker group configuration that use an ASG with a launch template:

```hcl
worker_group_count = 1
worker_groups = [
{
name = "on-demand-1"
instance_type = "m4.xlarge"
asg_max_size = 10
autoscaling_enabled = true
kubelet_extra_args = "--node-labels=spot=false"
suspended_processes = "AZRebalance"
}
]
worker_group_launch_template_count = 1
worker_groups_launch_template = [
{
name = "spot-1"
instance_type = "m5.xlarge"
override_instance_type = "m4.xlarge"
spot_instance_pools = 2
on_demand_percentage_above_base_capacity = 0
spot_max_price = "0.384"
asg_max_size = 10
autoscaling_enabled = true
kubelet_extra_args = "--node-labels=spot=true"
}
]
```

## Important issues

- https://github.com/terraform-aws-modules/terraform-aws-eks/issues/360
- https://github.com/terraform-providers/terraform-provider-aws/issues/8475
- https://github.com/kubernetes/autoscaler/issues/1133

0 comments on commit b27b582

Please sign in to comment.