mirror of
https://github.com/fluxcd/flagger.git
synced 2026-02-24 14:53:53 +00:00
86 lines
2.2 KiB
Go
86 lines
2.2 KiB
Go
package loadtester
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
flaggerv1 "github.com/stefanprodan/flagger/pkg/apis/flagger/v1alpha3"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// ListenAndServe starts a web server and waits for SIGTERM
|
|
func ListenAndServe(port string, timeout time.Duration, logger *zap.SugaredLogger, taskRunner *TaskRunner, stopCh <-chan struct{}) {
|
|
mux := http.DefaultServeMux
|
|
mux.Handle("/metrics", promhttp.Handler())
|
|
mux.HandleFunc("/healthz", func(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(http.StatusOK)
|
|
w.Write([]byte("OK"))
|
|
})
|
|
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
body, err := ioutil.ReadAll(r.Body)
|
|
if err != nil {
|
|
logger.Error("reading the request body failed", zap.Error(err))
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
return
|
|
}
|
|
defer r.Body.Close()
|
|
|
|
payload := &flaggerv1.CanaryWebhookPayload{}
|
|
err = json.Unmarshal(body, payload)
|
|
if err != nil {
|
|
logger.Error("decoding the request body failed", zap.Error(err))
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
if len(payload.Metadata) > 0 {
|
|
if cmd, ok := payload.Metadata["cmd"]; ok {
|
|
taskRunner.Add(Task{
|
|
Canary: fmt.Sprintf("%s.%s", payload.Name, payload.Namespace),
|
|
Command: cmd,
|
|
})
|
|
} else {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
w.Write([]byte("cmd not found in metadata"))
|
|
return
|
|
}
|
|
} else {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
w.Write([]byte("metadata not found in payload"))
|
|
return
|
|
}
|
|
|
|
w.WriteHeader(http.StatusAccepted)
|
|
})
|
|
srv := &http.Server{
|
|
Addr: ":" + port,
|
|
Handler: mux,
|
|
ReadTimeout: 5 * time.Second,
|
|
WriteTimeout: 1 * time.Minute,
|
|
IdleTimeout: 15 * time.Second,
|
|
}
|
|
|
|
// run server in background
|
|
go func() {
|
|
if err := srv.ListenAndServe(); err != http.ErrServerClosed {
|
|
logger.Fatalf("HTTP server crashed %v", err)
|
|
}
|
|
}()
|
|
|
|
// wait for SIGTERM or SIGINT
|
|
<-stopCh
|
|
ctx, cancel := context.WithTimeout(context.Background(), timeout)
|
|
defer cancel()
|
|
|
|
if err := srv.Shutdown(ctx); err != nil {
|
|
logger.Errorf("HTTP server graceful shutdown failed %v", err)
|
|
} else {
|
|
logger.Info("HTTP server stopped")
|
|
}
|
|
}
|