67 lines
1.3 KiB
Go
67 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"errors"
|
|
"github.com/urfave/cli/v2"
|
|
"io"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
func restart(ctx *cli.Context) error {
|
|
cluster := ctx.Value("cluster").(string)
|
|
uri := strings.Trim(ctx.Value("kuboard_uri").(string), "/")
|
|
uri = uri + "/kuboard-api/cluster/" + cluster + "/kind/CICDApi/admin/resource/restartWorkload"
|
|
|
|
data, err := json.Marshal(payload{
|
|
Name: ctx.Value("name").(string),
|
|
Namespace: ctx.Value("namespace").(string),
|
|
Kind: ctx.Value("kind").(string),
|
|
})
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
request, err := http.NewRequest("PUT", uri, bytes.NewBuffer(data))
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
request.Header.Add("Content-Type", "application/json")
|
|
request.AddCookie(&http.Cookie{
|
|
Name: "KuboardUsername",
|
|
Value: ctx.Value("kuboard_username").(string),
|
|
})
|
|
request.AddCookie(&http.Cookie{
|
|
Name: "KuboardAccessKey",
|
|
Value: ctx.Value("kuboard_key").(string),
|
|
})
|
|
|
|
client := &http.Client{}
|
|
response, err := client.Do(request)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
defer response.Body.Close()
|
|
|
|
if response.StatusCode != 200 {
|
|
body, _ := io.ReadAll(response.Body)
|
|
errResp := &errorResponse{}
|
|
err := json.Unmarshal(body, errResp)
|
|
|
|
if err != nil {
|
|
return errors.New(response.Status)
|
|
} else {
|
|
return errors.New(errResp.Reason)
|
|
}
|
|
}
|
|
|
|
return err
|
|
}
|