问题描述
我对与Docker一起安装的Rundeck完全陌生。我的目标是使用其API控制Proxmox集群。我怎样才能做到这一点?也许和Ansible在一起? 你有指针给我吗?
预先感谢
致谢
解决方法
Ansible并非必需。您可以使用workflow插件创建一个HTTP Workflow step,以将API请求发送到您的Proxmox主机(download来自此处和put it on the libext directory的jar文件,或使用该插件管理器进行安装[齿轮图标>插件>查找插件>搜索“ HTTP工作流程步骤”,然后单击“安装”按钮],则无需重新启动实例。
或者,您可以使用script-step创建工作流,Proxmox API可以直接使用cURL来调用该工作流。另外,您可以使用@option.myoption@
语法将options动态传递到脚本步骤(例如,从选项列表传递动作)。
我留下了两种定义方式的工作定义示例(使用httpbin.org服务并将两个选项都传递给这两个步骤)。
<joblist>
<job>
<context>
<options preserveOrder='true'>
<option name='action' value='anything' />
<option name='host' value='httpbin.org' />
</options>
</context>
<defaultTab>nodes</defaultTab>
<description></description>
<executionEnabled>true</executionEnabled>
<id>da60f0f8-d3d1-4f6d-b01e-704e00fa2ae8</id>
<loglevel>INFO</loglevel>
<name>APICallExample</name>
<nodeFilterEditable>false</nodeFilterEditable>
<plugins />
<scheduleEnabled>true</scheduleEnabled>
<sequence keepgoing='false' strategy='node-first'>
<command>
<description>Example using http workflow step plugin</description>
<step-plugin type='edu.ohio.ais.rundeck.HttpWorkflowStepPlugin'>
<configuration>
<entry key='authentication' value='None' />
<entry key='checkResponseCode' value='true' />
<entry key='headers' value='{"Accept": "application/json"}' />
<entry key='method' value='POST' />
<entry key='printResponse' value='true' />
<entry key='printResponseToFile' value='false' />
<entry key='proxySettings' value='false' />
<entry key='remoteUrl' value='https://${option.host}/${option.action}' />
<entry key='responseCode' value='200' />
<entry key='sslVerify' value='false' />
<entry key='timeout' value='30000' />
</configuration>
</step-plugin>
</command>
<command>
<description>Example using script-step</description>
<fileExtension>.sh</fileExtension>
<script><![CDATA[curl -X POST "https://@option.host@/@option.action@" -H "accept: application/json"]]></script>
<scriptargs />
<scriptinterpreter>/bin/bash</scriptinterpreter>
</command>
</sequence>
<uuid>da60f0f8-d3d1-4f6d-b01e-704e00fa2ae8</uuid>
</job>
</joblist>