-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding an option to get only envs and nodes. #10
base: master
Are you sure you want to change the base?
Conversation
Added chef environment to tag list (https://github.com/opscode/chef-runde
Please include osFamily identification fix for chef-rundeck in master
Fix for "text/html" incompatibility error
using the Chef RESTful API. This is faster than getting all node objects and querying them. Allows hundreds of Chef nodes to be available in Rundeck quickly. Usage example: sudo ./chef-rundeck -c /home/chef/.chef/knife.rb -u username -w http://servername:4040 -e
I think this would be best served by using something like partial_search instead |
@sriramgd @josephholsten @leftathome Do we still need this PR? |
Hi, I dont work with Chef /Rundeck in my current job and am not up to date On Mon, Aug 19, 2013 at 1:16 PM, Brian Scott [email protected]:
|
This PR will have to wait till 0.2.2 release. |
@sriramgd Can you rebase? |
Anecdotal evidence suggests that supporting partial search has solved this issue for others, and doesn't introduce a significantly different collection / rendering code path in the process. My preference is to stick with that approach. Objections? |
@sriramgd Can you rebase this? |
@sriramgd ^^ |
Adding a env_node_only (i.e. -e) option. Uses the Chef RESTful API to first get envs, and their nodes. This is faster than getting all node objects and querying them. Allows hundreds of Chef nodes to be available in Rundeck quickly.
Cost:
Usage example:
sudo ./chef-rundeck -c /home/chef/.chef/knife.rb -u username -w
http://servername:4040 -e
PS: I am new to git/ruby