# File lib/openshift-origin-msg-broker-mcollective/lib/openshift/mcollective_application_container_proxy.rb, line 504
      def get_remove_authorized_ssh_key_job(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
        job = RemoteJob.new('openshift-origin-node', 'authorized-ssh-key-remove', args)
        job
      end