Skip to content
Merged
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
15 changes: 15 additions & 0 deletions airflow/plugins/unity_sps_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,21 @@
"cpu": 64,
"memory": 128,
},
"c6id.xlarge": {
"desc": "Compute Optimized with SSD local storage",
"cpu": 4,
"memory": 8,
},
"c6id.2xlarge": {
"desc": "Compute Optimized with SSD local storage",
"cpu": 8,
"memory": 16,
},
"c6id.4xlarge": {
"desc": "Compute Optimized with SSD local storage",
"cpu": 16,
"memory": 32,
},
"m5ad.xlarge": {
"desc": "General Purpose with SSD local storage",
"cpu": 4,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ echo "Instance family: $instance_family"
#
# Exit if instance family does not support NVME SSD instance store
#
if [[ $instance_family != "m5ad" ]]; then
if [[ $instance_family != "m5ad" ]] && [[ $instance_family != "c6id" ]]; then
exit 0
fi

Expand Down
8 changes: 4 additions & 4 deletions terraform-unity/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ variable "karpenter_node_pools" {
{
key = "karpenter.k8s.aws/instance-family"
operator = "In"
values = ["m7i", "m6i", "m5", "m5ad", "t3", "c7i", "c6i", "c5", "r7i", "r6i", "r5"]
values = ["m7i", "m6i", "m5", "m5ad", "t3", "c7i", "c6i", "c6id", "c5", "r7i", "r6i", "r5"]
},
{
key = "karpenter.k8s.aws/instance-cpu"
Expand Down Expand Up @@ -200,7 +200,7 @@ variable "karpenter_node_pools" {
{
key = "karpenter.k8s.aws/instance-family"
operator = "In"
values = ["m7i", "m6i", "m5", "m5ad", "t3", "c7i", "c6i", "c5", "r7i", "r6i", "r5"]
values = ["m7i", "m6i", "m5", "m5ad", "t3", "c7i", "c6i", "c6id", "c5", "r7i", "r6i", "r5"]
},
{
key = "karpenter.k8s.aws/instance-cpu"
Expand Down Expand Up @@ -244,7 +244,7 @@ variable "karpenter_node_pools" {
{
key = "karpenter.k8s.aws/instance-family"
operator = "In"
values = ["m7i", "m6i", "m5", "t3", "c7i", "c6i", "c5", "r7i", "r6i", "r5", "m5ad"]
values = ["m7i", "m6i", "m5", "t3", "c7i", "c6i", "c6id", "c5", "r7i", "r6i", "r5", "m5ad"]
},
{
key = "karpenter.k8s.aws/instance-cpu"
Expand Down Expand Up @@ -287,7 +287,7 @@ variable "karpenter_node_pools" {
{
key = "karpenter.k8s.aws/instance-family"
operator = "In"
values = ["m7i", "m6i", "m5", "t3", "c7i", "c6i", "c5", "r7i", "r6i", "r5", "m5ad"]
values = ["m7i", "m6i", "m5", "t3", "c7i", "c6i", "c6id", "c5", "r7i", "r6i", "r5", "m5ad"]
},
{
key = "karpenter.k8s.aws/instance-cpu"
Expand Down