如何通过带有选项值的单行卷曲命令 运行 制作 运行 套牌作业?
How to Run a Rundeck Job via One-liner Curl Command with an Option Value?
我正计划 运行 像这样的单行 curl 命令:
https://rundeck.url.com/api/1/job/${job_id_here}/run?authtoken=${token_here}&Message=hello
其中 Message
是一个选项,或者是 Rundeck 作业中的变量。
您可以使用:
curl --data-urlencode "argString=-optionname value" http://yourhost:4440/api/29/job/${your-job-id}/run?authtoken=${your-auth-token}
curl -D - \
-X "POST" -H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "X-Rundeck-Auth-Token: j97rbzw19u9pT1a0JvQTcmFuzaFYW71W" \
-d "{\"argString\":\" -servername $servername -foldername $foldername \"}" \
http://192.168.43.50:4440/api/16/job/c0649a32-1264-47fd-a345-e061794b2326/executions
我正计划 运行 像这样的单行 curl 命令:
https://rundeck.url.com/api/1/job/${job_id_here}/run?authtoken=${token_here}&Message=hello
其中 Message
是一个选项,或者是 Rundeck 作业中的变量。
您可以使用:
curl --data-urlencode "argString=-optionname value" http://yourhost:4440/api/29/job/${your-job-id}/run?authtoken=${your-auth-token}
curl -D - \
-X "POST" -H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "X-Rundeck-Auth-Token: j97rbzw19u9pT1a0JvQTcmFuzaFYW71W" \
-d "{\"argString\":\" -servername $servername -foldername $foldername \"}" \
http://192.168.43.50:4440/api/16/job/c0649a32-1264-47fd-a345-e061794b2326/executions