Minor Adjustments
This commit is contained in:
parent
ba8e6ded26
commit
a90c28dd76
60 changed files with 8240 additions and 8 deletions
34
libold/server/k8s/k8s-job.json
Normal file
34
libold/server/k8s/k8s-job.json
Normal file
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"apiVersion": "batch/v1",
|
||||
"kind": "Job",
|
||||
"metadata": {
|
||||
"name": "qltr-job-test-suite-1"
|
||||
},
|
||||
"spec": {
|
||||
"ttlSecondsAfterFinished": 2,
|
||||
"template": {
|
||||
"spec": {
|
||||
"containers": [
|
||||
{
|
||||
"name": "qltr-job-test-suite-1",
|
||||
"image": "node:latest",
|
||||
"imagePullPolicy": "Always",
|
||||
"command": ["node", "--version"],
|
||||
"envFrom": [
|
||||
{
|
||||
"configMapRef": {
|
||||
"name": "qualiteer-job-environment"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"imagePullSecrets": [
|
||||
{ "name": "usw-registry-secret", "namespace": "default" }
|
||||
],
|
||||
"restartPolicy": "Never"
|
||||
}
|
||||
},
|
||||
"backoffLimit": 4
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue