Gpu workers support (#515)

* added posibility to use Amazon EKS-Optimized AMI with GPU Support for workers

* updated CHANGELOG.md

* added missing var prefix

* updated Changelog to ver 6.x.x
This commit is contained in:
Roman Voitenko
2019-09-23 17:50:01 +02:00
committed by Max Williams
parent 0cc058c52c
commit f79c790153
4 changed files with 10 additions and 3 deletions

View File

@@ -126,6 +126,12 @@ variable "worker_ami_name_filter" {
default = "v*"
}
variable "worker_ami_name_filter_prefix" {
description = "Name prefix filter for AWS EKS worker AMI. Default behaviour will get regular EKS-Optimized AMI but could be set to a EKS-Optimized AMI with GPU Support, e.g. \"amazon-eks-gpu-node\", or custom AMI"
type = string
default = "amazon-eks-node"
}
variable "worker_additional_security_group_ids" {
description = "A list of additional security group ids to attach to worker instances"
type = list(string)