# File lib/openshift-origin-msg-broker-mcollective/lib/openshift/mcollective_application_container_proxy.rb, line 227 def remove_authorized_ssh_key(app, gear, ssh_key, comment=nil) args = Hash.new args['--with-app-uuid'] = app.uuid args['--with-container-uuid'] = gear.uuid args['--with-ssh-key'] = ssh_key args['--with-ssh-comment'] = comment if comment result = execute_direct(@@C_CONTROLLER, 'authorized-ssh-key-remove', args) parse_result(result) end