Field | Type | Create | Update | Default | Notes |
---|---|---|---|---|---|
description | string | Optional | Yes | - | |
image | string | Yes | - | - | |
labels | map[string] | Optional | - | - | A map of key value pairs to be used as labels for the pullTask |
mode | enum | Yes | - | all | The options are all , cached . |
name | string | Optional | - | - |
Field | Type | Notes |
---|---|---|
id | int | The unique identifier for the pullTask |
status | map[string] |
Please read more about the common resource fields. These fields are read only and applicable to almost every resource. We have segregated them from the list above.
CreatePOST: /v2-beta/projects/${PROJECT_ID}/pullTasks
curl -u "${RANCHER_ACCESS_KEY}:${RANCHER_SECRET_KEY}" \
-X POST \
-H 'Content-Type: application/json' \
-d '{
"description": "string",
"image": "string",
"labels": {
"key": "value-pairs"
},
"mode": "all",
"name": "string"
}' 'http://${RANCHER_URL}:8080/v2-beta/projects/${PROJECT_ID}/pullTasks'