Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit ad4d76c

Browse files
authoredNov 20, 2022
Merge pull request #91 from convox/taint-variables
Don't apply match all toleration if specifying custom ones
2 parents 87543de + 48f5650 commit ad4d76c

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed
 

‎controller.tf

+1-5
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,8 @@ resource "kubernetes_deployment" "ebs_csi_controller" {
3333
automount_service_account_token = true
3434
priority_class_name = "system-cluster-critical"
3535

36-
toleration {
37-
operator = "Exists"
38-
}
39-
4036
dynamic "toleration" {
41-
for_each = var.csi_controller_tolerations
37+
for_each = length(var.csi_controller_tolerations) > 0 ? var.csi_controller_tolerations : [{ operator = "Exists" }]
4238
content {
4339
key = lookup(toleration.value, "key", null)
4440
operator = lookup(toleration.value, "operator", null)

‎node.tf

+1-5
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,8 @@ resource "kubernetes_daemonset" "node" {
5353
automount_service_account_token = true
5454
priority_class_name = "system-node-critical"
5555

56-
toleration {
57-
operator = "Exists"
58-
}
59-
6056
dynamic "toleration" {
61-
for_each = var.node_tolerations
57+
for_each = length(var.node_tolerations) > 0 ? var.csi_controller_tolerations : [{ operator = "Exists" }]
6258
content {
6359
key = lookup(toleration.value, "key", null)
6460
operator = lookup(toleration.value, "operator", null)

0 commit comments

Comments
 (0)
This repository has been archived.