Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tickets/DM-48170: Put user lab workload into its own pool #4032

Merged
merged 6 commits into from
Dec 26, 2024
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
12 changes: 12 additions & 0 deletions applications/nublado/values-idfdev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ controller:
logLevel: "DEBUG"
fileserver:
enabled: true
nodeSelector:
node_pool: "user-lab-pool"
tolerations:
- key: "nublado.lsst.io/permitted"
operator: "Exists"
effect: "NoExecute"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I should've asked this on https://github.com/lsst/idf_deploy/pull/549/files, but do we want a NoSchedule taint on these user-lab-pool nodes too (and a matching toleration here?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's moot, but NoExecute is a superset of NoSchedule. So I don't think so.

volumeMounts:
- containerPath: "/home"
volumeName: "home"
Expand Down Expand Up @@ -33,6 +39,8 @@ controller:
volumeMounts:
- containerPath: "/home"
volumeName: "home"
nodeSelector:
node_pool: "user-lab-pool"
secrets:
- secretName: "nublado-lab-secret"
secretKey: "aws-credentials.ini"
Expand All @@ -42,6 +50,10 @@ controller:
secretKey: "butler-hmac-idf-creds.json"
- secretName: "nublado-lab-secret"
secretKey: "postgres-credentials.txt"
tolerations:
- key: "nublado.lsst.io/permitted"
operator: "Exists"
effect: "NoExecute"
volumes:
- name: "home"
source:
Expand Down
12 changes: 12 additions & 0 deletions applications/nublado/values-idfint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ controller:
config:
fileserver:
enabled: true
nodeSelector:
node_pool: "user-lab-pool"
tolerations:
- key: "nublado.lsst.io/permitted"
operator: "Exists"
effect: "NoExecute"
volumeMounts:
- containerPath: "/home"
volumeName: "home"
Expand Down Expand Up @@ -43,6 +49,8 @@ controller:
volumeMounts:
- containerPath: "/home"
volumeName: "home"
nodeSelector:
node_pool: "user-lab-pool"
secrets:
- secretName: "nublado-lab-secret"
secretKey: "aws-credentials.ini"
Expand All @@ -65,6 +73,10 @@ controller:
- size: huge
cpu: 8.0
memory: 32Gi
tolerations:
- key: "nublado.lsst.io/permitted"
operator: "Exists"
effect: "NoExecute"
volumes:
- name: "home"
source:
Expand Down
6 changes: 6 additions & 0 deletions applications/nublado/values-idfprod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ controller:
volumeMounts:
- containerPath: "/home"
volumeName: "home"
nodeSelector:
node_pool: "user-lab-pool"
secrets:
- secretName: "nublado-lab-secret"
secretKey: "aws-credentials.ini"
Expand All @@ -47,6 +49,10 @@ controller:
- size: large
cpu: 4.0
memory: 16Gi
tolerations:
- key: "nublado.lsst.io/permitted"
operator: "Exists"
effect: "NoExecute"
volumes:
- name: "home"
source:
Expand Down
Loading