diff options
author | Eric Multanen <eric.w.multanen@intel.com> | 2020-02-20 22:41:34 -0800 |
---|---|---|
committer | Eric Multanen <eric.w.multanen@intel.com> | 2020-02-28 09:50:10 -0800 |
commit | 0fd6ec7e4956b03858d3d4351dcda37662b63d1d (patch) | |
tree | 9eb7923790d1667e7b1d83b7e8a26a31be9e01e6 /src/orchestrator/cmd | |
parent | 9ee11aa7d0bf1cef6d741efcb3a99981ef47208b (diff) |
Add v2 cluster registration api to k8s orchestrator
Adds orchestrator API support for creating
cluster-providers, registering clusters and their
kubeconfig, adding labels to cluster and key value
paisr to clusters.
See: https://wiki.onap.org/display/DW/V2+API+Specification#V2APISpecification-ClusterRegistrationAPI
Issue-ID: MULTICLOUD-922
Signed-off-by: Eric Multanen <eric.w.multanen@intel.com>
Change-Id: I775a308e9ffb19acf65cb0e5752705998bc5b659
Diffstat (limited to 'src/orchestrator/cmd')
-rw-r--r-- | src/orchestrator/cmd/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/orchestrator/cmd/main.go b/src/orchestrator/cmd/main.go index a6c72ae3..179cf975 100644 --- a/src/orchestrator/cmd/main.go +++ b/src/orchestrator/cmd/main.go @@ -47,7 +47,7 @@ func main() { log.Fatalln("Exiting...") } - httpRouter := api.NewRouter(nil, nil, nil) + httpRouter := api.NewRouter(nil, nil, nil, nil) loggedRouter := handlers.LoggingHandler(os.Stdout, httpRouter) log.Println("Starting Kubernetes Multicloud API") |