Skip to content

Commit

Permalink
Template to run the algorithm on dsri
Browse files Browse the repository at this point in the history
  • Loading branch information
pedro-cmat committed Oct 14, 2024
1 parent 7d41f2f commit 4361506
Showing 1 changed file with 50 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"apiVersion": "v1",
"kind": "Pod",
"metadata": {
"name": "pod-name",
"labels": {
"app": "app-name"
},
"namespace": "project"
},
"spec": {
"volumes": [
{
"name": "data",
"persistentVolumeClaim": {
"claimName": "persistent-volume-name"
}
}
],
"containers": [
{
"name": "container-name",
"image": "domain/brain-age-gpu:x.y.z",
"command": [],
"volumeMounts": [
{
"name": "data",
"mountPath": "/mnt/data"
}
],
"resources": {
"requests": {
"nvidia.com/gpu": 1
},
"limits": {
"nvidia.com/gpu": 1
}
},
"envFrom": [
{
"configMapRef": {
"name": "config-map-name"
}
}
]
}
],
"restartPolicy": "Never"
}
}

0 comments on commit 4361506

Please sign in to comment.