You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@deltacloud.apache.org by "Dies Koper (JIRA)" <ji...@apache.org> on 2012/05/09 16:37:47 UTC

[jira] [Created] (DTACLOUD-211) no Run action button in instance GUI, and run_on_instance operation (probably) doesn't work on GoGrid, Rackspace and EC2 due to coding bug

Dies Koper created DTACLOUD-211:
-----------------------------------

             Summary: no Run action button in instance GUI, and run_on_instance operation (probably) doesn't work on GoGrid, Rackspace and EC2 due to coding bug
                 Key: DTACLOUD-211
                 URL: https://issues.apache.org/jira/browse/DTACLOUD-211
             Project: DeltaCloud
          Issue Type: Bug
          Components: Server
            Reporter: Dies Koper
            Assignee: David Lutterkort


GoGrid, Rackspace and EC2 have:
 
   param[:ip] = target.public_addresses
   param[:ip] = target.public_addresses.first

FGCP driver uses:

      param[:ip] = target.public_addresses.first.address

It works on the FGCP driver so I suspect it doesn't work on the other three.

Also, there is no button on the instance GUI to bring you to the run_on_instance page.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Re: [jira] [Created] (DTACLOUD-211) no Run action button in instance GUI, and run_on_instance operation (probably) doesn't work on GoGrid, Rackspace and EC2 due to coding bug

Posted by "marios@redhat.com" <ma...@redhat.com>.
bump

On 09/05/12 17:37, Dies Koper (JIRA) wrote:
> Dies Koper created DTACLOUD-211:
> -----------------------------------
> 
>              Summary: no Run action button in instance GUI, and run_on_instance operation (probably) doesn't work on GoGrid, Rackspace and EC2 due to coding bug
>                  Key: DTACLOUD-211
>                  URL: https://issues.apache.org/jira/browse/DTACLOUD-211
>              Project: DeltaCloud
>           Issue Type: Bug
>           Components: Server
>             Reporter: Dies Koper
>             Assignee: David Lutterkort
> 
> 
> GoGrid, Rackspace and EC2 have:
>  
>    param[:ip] = target.public_addresses
>    param[:ip] = target.public_addresses.first
> 
> FGCP driver uses:
> 
>       param[:ip] = target.public_addresses.first.address
> 
> It works on the FGCP driver so I suspect it doesn't work on the other three.
> 
> Also, there is no button on the instance GUI to bring you to the run_on_instance page.
> 
> --
> This message is automatically generated by JIRA.
> If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
> For more information on JIRA, see: http://www.atlassian.com/software/jira
> 
>         


[jira] [Commented] (DTACLOUD-211) no Run action button in instance GUI, and run_on_instance operation (probably) doesn't work on GoGrid, Rackspace and EC2 due to coding bug

Posted by "Dies Koper (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/DTACLOUD-211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13272075#comment-13272075 ] 

Dies Koper commented on DTACLOUD-211:
-------------------------------------

'run command' would probably be a more appropriate name.
                
> no Run action button in instance GUI, and run_on_instance operation (probably) doesn't work on GoGrid, Rackspace and EC2 due to coding bug
> ------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: DTACLOUD-211
>                 URL: https://issues.apache.org/jira/browse/DTACLOUD-211
>             Project: DeltaCloud
>          Issue Type: Bug
>          Components: Server
>            Reporter: Dies Koper
>            Assignee: David Lutterkort
>         Attachments: 0001-DTACLOUD-211-add-run-script-button-to-instance-view-.patch
>
>
> GoGrid, Rackspace and EC2 have:
>  
>    param[:ip] = target.public_addresses
>    param[:ip] = target.public_addresses.first
> FGCP driver uses:
>       param[:ip] = target.public_addresses.first.address
> It works on the FGCP driver so I suspect it doesn't work on the other three.
> Also, there is no button on the instance GUI to bring you to the run_on_instance page.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Resolved] (DTACLOUD-211) no Run action button in instance GUI, and run_on_instance operation (probably) doesn't work on GoGrid, Rackspace and EC2 due to coding bug

Posted by "Marios Andreou (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/DTACLOUD-211?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Marios Andreou resolved DTACLOUD-211.
-------------------------------------

    Resolution: Fixed
      Assignee: Marios Andreou  (was: David Lutterkort)

ACK - good catch! Seems this was forgotten when the Address model was updated.

Pushed to master:

"Adds Run action button in HTML UI for run_on_instance"  commit hash: 1bb1e32b6e660b62e330a9dba9c2887636aaf5c8

"Fix run_on_instance code to grab IP address correctly" commit hash:
140765e6d5e5e2a13533c14ebba9f194aaa4576f
                
> no Run action button in instance GUI, and run_on_instance operation (probably) doesn't work on GoGrid, Rackspace and EC2 due to coding bug
> ------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: DTACLOUD-211
>                 URL: https://issues.apache.org/jira/browse/DTACLOUD-211
>             Project: DeltaCloud
>          Issue Type: Bug
>          Components: Server
>            Reporter: Dies Koper
>            Assignee: Marios Andreou
>         Attachments: 0001-DTACLOUD-211-add-run-script-button-to-instance-view-.patch
>
>
> GoGrid, Rackspace and EC2 have:
>  
>    param[:ip] = target.public_addresses
>    param[:ip] = target.public_addresses.first
> FGCP driver uses:
>       param[:ip] = target.public_addresses.first.address
> It works on the FGCP driver so I suspect it doesn't work on the other three.
> Also, there is no button on the instance GUI to bring you to the run_on_instance page.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Closed] (DTACLOUD-211) no Run action button in instance GUI, and run_on_instance operation (probably) doesn't work on GoGrid, Rackspace and EC2 due to coding bug

Posted by "Marios Andreou (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/DTACLOUD-211?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Marios Andreou closed DTACLOUD-211.
-----------------------------------

    
> no Run action button in instance GUI, and run_on_instance operation (probably) doesn't work on GoGrid, Rackspace and EC2 due to coding bug
> ------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: DTACLOUD-211
>                 URL: https://issues.apache.org/jira/browse/DTACLOUD-211
>             Project: DeltaCloud
>          Issue Type: Bug
>          Components: Server
>            Reporter: Dies Koper
>            Assignee: Marios Andreou
>         Attachments: 0001-DTACLOUD-211-add-run-script-button-to-instance-view-.patch
>
>
> GoGrid, Rackspace and EC2 have:
>  
>    param[:ip] = target.public_addresses
>    param[:ip] = target.public_addresses.first
> FGCP driver uses:
>       param[:ip] = target.public_addresses.first.address
> It works on the FGCP driver so I suspect it doesn't work on the other three.
> Also, there is no button on the instance GUI to bring you to the run_on_instance page.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (DTACLOUD-211) no Run action button in instance GUI, and run_on_instance operation (probably) doesn't work on GoGrid, Rackspace and EC2 due to coding bug

Posted by "Dies Koper (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/DTACLOUD-211?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dies Koper updated DTACLOUD-211:
--------------------------------

    Attachment: 0001-DTACLOUD-211-add-run-script-button-to-instance-view-.patch

Fixes the issues in the drivers and adds a 'run script' button to the view of running instances.
                
> no Run action button in instance GUI, and run_on_instance operation (probably) doesn't work on GoGrid, Rackspace and EC2 due to coding bug
> ------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: DTACLOUD-211
>                 URL: https://issues.apache.org/jira/browse/DTACLOUD-211
>             Project: DeltaCloud
>          Issue Type: Bug
>          Components: Server
>            Reporter: Dies Koper
>            Assignee: David Lutterkort
>         Attachments: 0001-DTACLOUD-211-add-run-script-button-to-instance-view-.patch
>
>
> GoGrid, Rackspace and EC2 have:
>  
>    param[:ip] = target.public_addresses
>    param[:ip] = target.public_addresses.first
> FGCP driver uses:
>       param[:ip] = target.public_addresses.first.address
> It works on the FGCP driver so I suspect it doesn't work on the other three.
> Also, there is no button on the instance GUI to bring you to the run_on_instance page.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira