-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
273 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,25 @@ | ||
FROM python:3.9 | ||
FROM golang:1.16 | ||
|
||
WORKDIR /rancher-redeploy-workload | ||
WORKDIR /usr/src/rancher-redeploy-workload | ||
|
||
COPY requirements.txt requirements.txt | ||
COPY go.mod go.sum ./ | ||
RUN go mod download | ||
|
||
RUN pip install -r requirements.txt | ||
COPY config.go . | ||
COPY main.go . | ||
COPY validator.go . | ||
|
||
COPY redeploy_rancher_workload.py redeploy_rancher_workload.py | ||
RUN mkdir bin | ||
|
||
RUN CGO_ENABLED=0 go build -a -o bin/rancher-redeploy-workload . | ||
|
||
FROM alpine:latest | ||
|
||
RUN apk update && apk add bash | ||
|
||
COPY --from=0 /usr/src/rancher-redeploy-workload/bin/rancher-redeploy-workload /usr/local/bin/rancher-redeploy-workload | ||
|
||
# docker-entrypoint.sh | ||
COPY docker-entrypoint.sh /usr/local/bin/ | ||
RUN chmod +x /usr/local/bin/docker-entrypoint.sh | ||
|
||
ENTRYPOINT ["docker-entrypoint.sh"] | ||
CMD ["/usr/local/bin/docker-entrypoint.sh"] |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
package main | ||
|
||
import ( | ||
"errors" | ||
"fmt" | ||
"os" | ||
"reflect" | ||
) | ||
|
||
type Config struct { | ||
Debug string `env:"DEBUG"` | ||
RancherBearerToken string `env:"RANCHER_BEARER_TOKEN" validate:"required"` | ||
RancherClusterId string `env:"RANCHER_CLUSTER_ID" validate:"required"` | ||
RancherNamespace string `env:"RANCHER_NAMESPACE" validate:"required"` | ||
RancherProjectId string `env:"RANCHER_PROJECT_ID" validate:"required"` | ||
RancherUrl string `env:"RANCHER_URL" validate:"required"` | ||
RancherWorkloads string `env:"RANCHER_WORKLOADS" validate:"required"` | ||
} | ||
|
||
func NewConfig(v *Validator) (*Config, error) { | ||
c := Config{} | ||
|
||
v, err := NewValidator() | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
t := reflect.TypeOf(c) | ||
vp := reflect.ValueOf(&c) | ||
|
||
for i := 0; i < t.NumField(); i++ { | ||
ti := t.Field(i) | ||
vpi := vp.Elem().Field(i) | ||
|
||
envVarKey := ti.Tag.Get("env") | ||
|
||
if envVarKey != "" { | ||
envVarValue := os.Getenv(envVarKey) | ||
|
||
vpi.SetString(envVarValue) | ||
} | ||
} | ||
|
||
err = v.Validate.Struct(c) | ||
if err != nil { | ||
output := "There are errors with some environment variables:\n" | ||
|
||
for fieldName, fieldMessage := range v.Map(err) { | ||
structField, _ := t.FieldByName(fieldName) | ||
|
||
output = output + fmt.Sprintf("* %s: %s\n", structField.Tag.Get("env"), fieldMessage) | ||
} | ||
|
||
return nil, errors.New(output) | ||
} | ||
|
||
return &c, nil | ||
} | ||
|
||
func (c *Config) generateWorkloadRedeployUrl(workload string) string { | ||
return fmt.Sprintf( | ||
"%s/v3/project/%s:%s/workloads/deployment:%s:%s?action=redeploy", | ||
c.RancherUrl, | ||
c.RancherClusterId, | ||
c.RancherProjectId, | ||
c.RancherNamespace, | ||
workload, | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env bash | ||
set -eo pipefail | ||
|
||
exec python /rancher-redeploy-workload/redeploy_rancher_workload.py | ||
exec /usr/local/bin/rancher-redeploy-workload |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module github.com/th0th/rancher-redeploy-workload | ||
|
||
go 1.16 | ||
|
||
require ( | ||
github.com/go-playground/locales v0.13.0 | ||
github.com/go-playground/universal-translator v0.17.0 | ||
github.com/go-playground/validator/v10 v10.6.1 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= | ||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= | ||
github.com/go-playground/assert/v2 v2.0.1 h1:MsBgLAaY856+nPRTKrp3/OZK38U/wa0CcBYNjji3q3A= | ||
github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= | ||
github.com/go-playground/locales v0.13.0 h1:HyWk6mgj5qFqCT5fjGBuRArbVDfE4hi8+e8ceBS/t7Q= | ||
github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8= | ||
github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no= | ||
github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA= | ||
github.com/go-playground/validator/v10 v10.6.1 h1:W6TRDXt4WcWp4c4nf/G+6BkGdhiIo0k417gfr+V6u4I= | ||
github.com/go-playground/validator/v10 v10.6.1/go.mod h1:xm76BBt941f7yWdGnI2DVPFFg1UK3YY04qifoXU3lOk= | ||
github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y= | ||
github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= | ||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= | ||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= | ||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= | ||
github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk= | ||
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= | ||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= | ||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 h1:psW17arqaxU48Z5kZ0CQnkZWQJsqcURM6tKiBApRjXI= | ||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= | ||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= | ||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= | ||
golang.org/x/sys v0.0.0-20190412213103-97732733099d h1:+R4KGOnez64A81RvjARKc4UT5/tI9ujCIVX+P5KiHuI= | ||
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | ||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= | ||
golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= | ||
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= | ||
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= | ||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= | ||
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
package main | ||
|
||
import ( | ||
"io/ioutil" | ||
"log" | ||
"net/http" | ||
"strings" | ||
) | ||
|
||
func main() { | ||
v, err := NewValidator() | ||
if err != nil { | ||
log.Panic(err) | ||
} | ||
|
||
c, err := NewConfig(v) | ||
if err != nil { | ||
log.Panicln(err) | ||
} | ||
|
||
workloads := strings.Split(c.RancherWorkloads, ",") | ||
|
||
log.Println("Workloads to redeploy:") | ||
|
||
for _, workload := range workloads { | ||
log.Println("* " + workload) | ||
} | ||
|
||
log.Println("Staring to redeploy...") | ||
|
||
hasErrors := false | ||
|
||
for _, workload := range workloads { | ||
req, err := http.NewRequest(http.MethodPost, c.generateWorkloadRedeployUrl(workload), strings.NewReader("{}")) | ||
if err != nil { | ||
log.Panic(err) | ||
} | ||
|
||
req.Header.Set("Authorization", "Bearer "+c.RancherBearerToken) | ||
|
||
rsp, err := http.DefaultClient.Do(req) | ||
if rsp != nil && rsp.StatusCode == 200 { | ||
log.Println("✅ " + workload) | ||
} else { | ||
hasErrors = true | ||
|
||
log.Println("❌ " + workload) | ||
|
||
if c.Debug == "true" { | ||
if err != nil { | ||
log.Print(err) | ||
} else { | ||
body, err := ioutil.ReadAll(rsp.Body) | ||
if err != nil { | ||
log.Panic(err) | ||
} | ||
|
||
log.Println("Status code: " + rsp.Status) | ||
log.Println("Body: " + string(body)) | ||
} | ||
} | ||
|
||
} | ||
} | ||
|
||
if hasErrors { | ||
if c.Debug != "true" { | ||
log.Println("In order to log the errors, please set DEBUG environment variable as 'true',") | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.