stop logging job creation results
parent
46afe94364
commit
85cfaadc14
|
|
@ -1005,8 +1005,7 @@ class Kubernetes {
|
|||
},
|
||||
};
|
||||
job.spec.backoffLimit = 1;
|
||||
const jobResults = yield this.kubeClientBatch.createNamespacedJob(this.namespace, job);
|
||||
core.info(JSON.stringify(jobResults.body, undefined, 4));
|
||||
yield this.kubeClientBatch.createNamespacedJob(this.namespace, job);
|
||||
core.info('Job created');
|
||||
});
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -291,8 +291,7 @@ class Kubernetes {
|
|||
},
|
||||
};
|
||||
job.spec.backoffLimit = 1;
|
||||
const jobResults = await this.kubeClientBatch.createNamespacedJob(this.namespace, job);
|
||||
core.info(JSON.stringify(jobResults.body, undefined, 4));
|
||||
await this.kubeClientBatch.createNamespacedJob(this.namespace, job);
|
||||
core.info('Job created');
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue