Skip to content

Commit

Permalink
Values: add node selectors (#625)
Browse files Browse the repository at this point in the history
* add node selectors
  • Loading branch information
ypoplavs authored Sep 8, 2023
1 parent 95a5301 commit 84e4444
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 2 deletions.
18 changes: 18 additions & 0 deletions charts/testkube/values-demo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,21 @@ mongodb:
requests:
memory: "1500Mi"
cpu: "200m"
nodeSelector:
nodepool: main-mongo

nats:
# NATS container settings
nats:
limits:
# -- Max payload
maxPayload: 8MB
nodeSelector:
nodepool: main
natsbox:
nodeSelector:
nodepool: main


testkube-api:
rbac:
Expand Down Expand Up @@ -332,6 +340,9 @@ testkube-api:
testConnection:
enabled: true

nodeSelector:
nodepool: main

testkube-dashboard:
enabled: true
nameOverride: "dashboard"
Expand Down Expand Up @@ -400,6 +411,9 @@ testkube-dashboard:
memory: "100Mi"
cpu: "100m"

nodeSelector:
nodepool: main

testkube-operator:
# should roles and roles bindings be created
rbac:
Expand Down Expand Up @@ -431,3 +445,7 @@ testkube-operator:
##Test Connection pod
testConnection:
enabled: true

nodeSelector:
nodepool: main

20 changes: 19 additions & 1 deletion charts/testkube/values-develop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,21 @@ mongodb:
requests:
memory: "1500Mi"
cpu: "200m"
nodeSelector:
nodepool: main-mongo

nats:
# NATS container settings
nats:
limits:
# -- Max payload
maxPayload: 8MB
nodeSelector:
nodepool: main
natsbox:
nodeSelector:
nodepool: main


testkube-api:
prometheus:
Expand All @@ -124,7 +132,8 @@ testkube-api:
port: 8088
minio:
enabled: true
nodeSelector: {}
nodeSelector:
nodepool: main
tolerations: []
affinity: {}
image:
Expand Down Expand Up @@ -276,6 +285,9 @@ testkube-api:
testConnection:
enabled: true

nodeSelector:
nodepool: main

testkube-dashboard:
enabled: true
nameOverride: "dashboard"
Expand Down Expand Up @@ -345,6 +357,9 @@ testkube-dashboard:
memory: "100Mi"
cpu: "100m"

nodeSelector:
nodepool: main

testkube-operator:
##Proxy Image parameters
## image.registry Proxy image registry
Expand All @@ -368,3 +383,6 @@ testkube-operator:
testConnection:
enabled: true

nodeSelector:
nodepool: main

18 changes: 17 additions & 1 deletion charts/testkube/values-stage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,20 @@ mongodb:
requests:
memory: "1500Mi"
cpu: "200m"
nodeSelector:
nodepool: main-mongo

nats:
# NATS container settings
nats:
limits:
# -- Max payload
maxPayload: 8MB
nodeSelector:
nodepool: main
natsbox:
nodeSelector:
nodepool: main

testkube-api:
prometheus:
Expand All @@ -124,7 +131,6 @@ testkube-api:
port: 8088
minio:
enabled: true
nodeSelector: {}
tolerations: []
affinity: {}
image:
Expand All @@ -135,6 +141,8 @@ testkube-api:
requests:
memory: "1000Mi"
cpu: "200m"
nodeSelector:
nodepool: main

uiIngress:
enabled: true
Expand Down Expand Up @@ -279,6 +287,9 @@ testkube-api:
testConnection:
enabled: true

nodeSelector:
nodepool: main

testkube-dashboard:
enabled: true
nameOverride: "dashboard"
Expand Down Expand Up @@ -345,6 +356,8 @@ testkube-dashboard:
requests:
memory: "100Mi"
cpu: "100m"
nodeSelector:
nodepool: main

testkube-operator:
##Proxy Image parameters
Expand All @@ -368,3 +381,6 @@ testkube-operator:
##Test Connection pod
testConnection:
enabled: true

nodeSelector:
nodepool: main

0 comments on commit 84e4444

Please sign in to comment.