diff --git a/cmd/manager/chartrepos.go b/cmd/manager/chartrepos.go new file mode 100644 index 000000000..07b3bfda7 --- /dev/null +++ b/cmd/manager/chartrepos.go @@ -0,0 +1,31 @@ +package main + +import ( + "github.com/kubernetes/helm/cmd/manager/router" + "github.com/kubernetes/helm/pkg/util" + "net/http" +) + +func registerChartRepoRoutes(c *router.Context, h *router.Handler) { + h.Add("GET /chart_repositories", listChartRepositoriesHandlerFunc) + h.Add("POST /chart_repositories", addChartRepoHandlerFunc) + h.Add("DELETE /chart_repositories", removeChartRepoHandlerFunc) +} + +func listChartRepositoriesHandlerFunc(w http.ResponseWriter, r *http.Request, c *router.Context) error { + handler := "manager: list chart repositories" + util.LogHandlerExitWithJSON(handler, w, "a repo here", http.StatusOK) + return nil +} + +func addChartRepoHandlerFunc(w http.ResponseWriter, r *http.Request, c *router.Context) error { + handler := "manager: add chart repository" + util.LogHandlerExitWithJSON(handler, w, "add a repo", http.StatusOK) + return nil +} + +func removeChartRepoHandlerFunc(w http.ResponseWriter, r *http.Request, c *router.Context) error { + handler := "manager: remove chart repository" + util.LogHandlerExitWithJSON(handler, w, "remove a repo", http.StatusOK) + return nil +} diff --git a/cmd/manager/deployments.go b/cmd/manager/deployments.go index 9cc403420..9076a7d89 100644 --- a/cmd/manager/deployments.go +++ b/cmd/manager/deployments.go @@ -78,7 +78,7 @@ type Route struct { Type string } -func registerRoutes(c *router.Context, h *router.Handler) { +func registerDeploymentRoutes(c *router.Context, h *router.Handler) { re := regexp.MustCompile("{[a-z]+}") h.Add("GET /healthz", healthz) diff --git a/cmd/manager/main.go b/cmd/manager/main.go index ce570a8dd..126e9ed77 100644 --- a/cmd/manager/main.go +++ b/cmd/manager/main.go @@ -54,7 +54,8 @@ func main() { // Set up routes handler := router.NewHandler(c) - registerRoutes(c, handler) + registerDeploymentRoutes(c, handler) + registerChartRepoRoutes(c, handler) // Now create a server. log.Printf("Starting Manager %s on %s", version.Version, c.Config.Address)