Support for RallyDev
New in version 2015.8.0.
Requires a username
and a password
in /etc/salt/minion
:
rallydev:
username: myuser@example.com
password: 123pass
List items of a particular type
CLI Examples:
salt myminion rallydev.list_<item name>s
salt myminion rallydev.list_users
salt myminion rallydev.list_artifacts
List the users
CLI Example:
salt myminion rallydev.list_users
Query a type of record for one or more items. Requires a valid query string. See https://rally1.rallydev.com/slm/doc/webservice/introduction.jsp for information on query syntax.
CLI Example:
salt myminion rallydev.query_<item name> <query string> [<order>]
salt myminion rallydev.query_task '(Name contains github)'
salt myminion rallydev.query_task '(Name contains reactor)' Rank
Update a user
CLI Example:
salt myminion rallydev.query_user '(Name contains Jo)'
Show an artifact
CLI Example:
salt myminion rallydev.show_artifact <artifact id>
Show an item
CLI Example:
salt myminion rallydev.show_<item name> <item id>
Show a user
CLI Example:
salt myminion rallydev.show_user <user id>
Update an item. Either a field and a value, or a chunk of POST data, may be used, but not both.
CLI Example:
salt myminion rallydev.update_<item name> <item id> field=<field> value=<value>
salt myminion rallydev.update_<item name> <item id> postdata=<post data>
Update a user
CLI Example:
salt myminion rallydev.update_user <user id> <field> <new value>