mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 12:21:03 +00:00
Merge pull request #1201 from kpacha/fix_marathon_upgrade
Fix Marathon deployments
This commit is contained in:
commit
f0296c7149
1 changed files with 5 additions and 3 deletions
|
@ -10,6 +10,7 @@ import (
|
|||
type Marathon struct {
|
||||
//Hostname for the Marathon Master
|
||||
Host string `yaml:"host,omitempty"`
|
||||
App string `yaml:"app,omitempty"`
|
||||
|
||||
// The app config for marathon
|
||||
//https://mesosphere.github.io/marathon/docs/rest-api.html#post-v2-apps
|
||||
|
@ -26,12 +27,13 @@ func (m *Marathon) Write(f *buildfile.Buildfile) {
|
|||
// debugging purposes so we can see if / where something is failing
|
||||
f.WriteCmdSilent("echo 'deploying to Marathon ...'")
|
||||
|
||||
post := fmt.Sprintf(
|
||||
"curl -X POST -d @%s http://%s/v2/apps --header \"Content-Type:application/json\"",
|
||||
put := fmt.Sprintf(
|
||||
"curl -X PUT -d @%s http://%s/v2/apps/%s --header \"Content-Type:application/json\"",
|
||||
m.ConfigFile,
|
||||
m.App,
|
||||
m.Host,
|
||||
)
|
||||
f.WriteCmdSilent(post)
|
||||
f.WriteCmdSilent(put)
|
||||
}
|
||||
|
||||
func (m *Marathon) GetCondition() *condition.Condition {
|
||||
|
|
Loading…
Reference in a new issue