fix
parent
e58ee34cc2
commit
f8c15dfabf
27
keptn.tf
27
keptn.tf
|
|
@ -32,6 +32,33 @@ resource "helm_release" "keptn" {
|
||||||
value = "group2"
|
value = "group2"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
##mongodb toleration
|
||||||
|
set {
|
||||||
|
name = "mongodbDatastore.tolerations[0].key"
|
||||||
|
value = "dedicated"
|
||||||
|
}
|
||||||
|
|
||||||
|
set {
|
||||||
|
name = "mongodbDatastore.tolerations[0].value"
|
||||||
|
value = "group2"
|
||||||
|
}
|
||||||
|
|
||||||
|
set {
|
||||||
|
name = "mongodbDatastore.tolerations[0].operator"
|
||||||
|
value = "Equal"
|
||||||
|
}
|
||||||
|
|
||||||
|
set {
|
||||||
|
name = "mongodbDatastore.tolerations[0].effect"
|
||||||
|
value = "NoSchedule"
|
||||||
|
}
|
||||||
|
|
||||||
|
set {
|
||||||
|
name = "mongodbDatastore.nodeSelector.role"
|
||||||
|
value = "group2"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue