Reading a Specified Cron Job
Function
This API is used to read a specified cron job.
URI
GET /apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}
Table 1 describes the parameters of this API.
|
Parameter |
Mandatory |
Description |
|---|---|---|
|
pretty |
No |
If 'true', then the output is pretty printed. |
|
namespace |
Yes |
Object name and auth scope, such as for teams and projects. |
|
name |
Yes |
Name of the CronJob. |
|
exact |
No |
Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. |
|
export |
No |
Should this value be exported. Export strips fields that a user cannot specify. |
Request
N/A
Response
Response parameters:
For the description about response parameters, see the parameter description in Table 2.
Example response:
{
"kind": "CronJob",
"apiVersion": "batch/v1beta1",
"metadata": {
"name": "cronjob-test",
"namespace": "default",
"selfLink": "/apis/batch/v1beta1/namespaces/default/cronjobs/cronjob-test",
"uid": "7cf2c54b-2201-11e8-96aa-fa163ecd089c",
"resourceVersion": "441600",
"creationTimestamp": "2018-03-07T12:17:22Z",
"enable": true
},
"spec": {
"schedule": "*/59 * * * *",
"concurrencyPolicy": "Allow",
"suspend": false,
"jobTemplate": {
"metadata": {
"creationTimestamp": null,
"enable": true
},
"spec": {
"template": {
"metadata": {
"creationTimestamp": null,
"labels": {
"sjname": "cronjob-test"
},
"enable": true
},
"spec": {
"containers": [
{
"name": "container-0",
"image": "nginx:stable-perl",
"resources": {
},
"lifecycle": {
},
"terminationMessagePath": "/dev/termination-log",
"terminationMessagePolicy": "File",
"imagePullPolicy": "IfNotPresent"
}
],
"restartPolicy": "OnFailure",
"terminationGracePeriodSeconds": 30,
"dnsPolicy": "ClusterFirst",
"securityContext": {
},
"imagePullSecrets": [
{
"name": "default-secret"
}
],
"schedulerName": "default-scheduler"
}
}
}
},
"successfulJobsHistoryLimit": 3,
"failedJobsHistoryLimit": 1
},
"status": {
}
}
Status Code
Table 2 describes the status code of this API.
|
Status Code |
Description |
|---|---|
|
200 |
This operation succeeds, and a CronJob resource object is returned. |
For the description about status codes, see Status Code.
Last Article: Deleting All Cron Jobs
Next Article: Reading a Specified Cron Job
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.