woodpecker/pkg/plugin/deploy/cloudfoundry.go

38 lines
881 B
Go
Raw Normal View History

2014-02-07 10:10:01 +00:00
package deploy
import (
2014-03-29 20:09:16 +00:00
"fmt"
"github.com/drone/drone/pkg/build/buildfile"
2014-02-07 10:10:01 +00:00
)
type CloudFoundry struct {
2014-03-29 20:09:16 +00:00
Target string `yaml:"target,omitempty"`
Username string `yaml:"username,omitempty"`
Password string `yaml:"password,omitempty"`
Org string `yaml:"org,omitempty"`
Space string `yaml:"space,omitempty"`
App string `yaml:"app,omitempty"`
2014-02-07 10:10:01 +00:00
}
2014-03-29 20:09:16 +00:00
func (cf *CloudFoundry) Write(f *buildfile.Buildfile) {
// login
2014-04-20 14:35:50 +00:00
loginCmd := "cf login -a %s -u %s -p %s"
2014-03-29 20:09:16 +00:00
organization := cf.Org
2014-04-20 14:35:50 +00:00
if organization != "" {
loginCmd += fmt.Sprintf(" -o %s", organization)
2014-03-29 20:09:16 +00:00
}
space := cf.Space
2014-04-20 14:35:50 +00:00
if space != "" {
loginCmd += fmt.Sprintf(" -s %s", space)
2014-03-29 20:09:16 +00:00
}
2014-04-20 14:35:50 +00:00
f.WriteCmdSilent(fmt.Sprintf(loginCmd, cf.Target, cf.Username, cf.Password))
2014-02-07 10:10:01 +00:00
2014-03-29 20:09:16 +00:00
// push app
pushCmd := "cf push %s"
f.WriteCmd(fmt.Sprintf(pushCmd, cf.App))
2014-02-07 10:10:01 +00:00
}