mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.7 KiB
83 lines
2.7 KiB
/*
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/kubernetes/helm/cmd/manager/router"
|
|
"github.com/kubernetes/helm/pkg/version"
|
|
|
|
"flag"
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
)
|
|
|
|
var (
|
|
port = flag.Int("port", 8080, "The port to listen on")
|
|
maxLength = flag.Int64("maxLength", 1024, "The maximum length (KB) of a template.")
|
|
expanderName = flag.String("expander", "expandybird-service", "The DNS name of the expander service.")
|
|
expanderURL = flag.String("expanderURL", "", "The URL for the expander service.")
|
|
deployerName = flag.String("deployer", "resourcifier-service", "The DNS name of the deployer service.")
|
|
deployerURL = flag.String("deployerURL", "", "The URL for the deployer service.")
|
|
credentialFile = flag.String("credentialFile", "", "Local file to use for credentials.")
|
|
credentialSecrets = flag.Bool("credentialSecrets", true, "Use secrets for credentials.")
|
|
mongoName = flag.String("mongoName", "mongodb", "The DNS name of the mongodb service.")
|
|
mongoPort = flag.String("mongoPort", "27017", "The port of the mongodb service.")
|
|
mongoAddress = flag.String("mongoAddress", "mongodb:27017", "The address of the mongodb service.")
|
|
)
|
|
|
|
func main() {
|
|
// Set up dependencies
|
|
c := &router.Context{
|
|
Config: parseFlags(),
|
|
}
|
|
|
|
if err := setupDependencies(c); err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
// Set up routes
|
|
handler := router.NewHandler(c)
|
|
registerRoutes(c, handler)
|
|
|
|
// Now create a server.
|
|
log.Printf("Starting Manager %s on %s", version.Version, c.Config.Address)
|
|
if err := http.ListenAndServe(c.Config.Address, handler); err != nil {
|
|
log.Printf("Server exited with error %s", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
func parseFlags() *router.Config {
|
|
flag.Parse()
|
|
return &router.Config{
|
|
Address: fmt.Sprintf(":%d", *port),
|
|
MaxTemplateLength: *maxLength,
|
|
ExpanderName: *expanderName,
|
|
ExpanderURL: *expanderURL,
|
|
DeployerName: *deployerName,
|
|
DeployerURL: *deployerURL,
|
|
CredentialFile: *credentialFile,
|
|
CredentialSecrets: *credentialSecrets,
|
|
MongoName: *mongoName,
|
|
MongoPort: *mongoPort,
|
|
MongoAddress: *mongoAddress,
|
|
}
|
|
}
|