Peter Peter
12/04/2023, 6:05 PMKevin Grismore
12/05/2023, 5:55 PMimage_pull_secrets
doesn't exist by default on the job template in the kubernetes work pool. You'll need to add it to that template by going to the Advanced tab on the Edit page of your work pool. If you need additional guidance about editing the template, reply here and I can come up with an example for you.Peter Peter
12/07/2023, 7:47 PMClément Frison
12/13/2023, 3:20 PMspec
section of the job manifest within the template
.
{
"variables": {
...
},
"job_configuration": {
...
"job_manifest": {
"kind": "Job",
"spec": {
"template": {
"spec": {
"containers": [
{
...
}
],
"imagePullSecrets": [ // Add this section
{
"name": "yourValue"
}
],
"completions": 1,
...
}
},
...
},
...
},
...
}
}
Kevin Grismore
12/13/2023, 3:29 PMDevin Flake
12/14/2023, 6:33 PM