本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/actors.RouteActor.BindRoute方法的典型用法代码示例。如果您正苦于以下问题:Golang RouteActor.BindRoute方法的具体用法?Golang RouteActor.BindRoute怎么用?Golang RouteActor.BindRoute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/actors.RouteActor
的用法示例。
在下文中一共展示了RouteActor.BindRoute方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: createAndBindRoute
func (cmd *Push) createAndBindRoute(
host *string,
UseRandomRoute bool,
UseRandomPort bool,
routeActor actors.RouteActor,
app models.Application,
noHostName bool,
domain models.DomainFields,
routePath *string,
) {
var hostname string
if !noHostName {
switch {
case host != nil:
hostname = *host
case UseRandomPort:
//do nothing
case UseRandomRoute:
hostname = hostNameForString(app.Name) + "-" + cmd.wordGenerator.Babble()
default:
hostname = hostNameForString(app.Name)
}
}
var route models.Route
if routePath != nil {
route = routeActor.FindOrCreateRoute(hostname, domain, *routePath, UseRandomPort)
} else {
route = routeActor.FindOrCreateRoute(hostname, domain, "", UseRandomPort)
}
routeActor.BindRoute(app, route)
}
示例2: createAndBindRoute
func (cmd *Push) createAndBindRoute(host *string, UseRandomHostname bool, routeActor actors.RouteActor, app models.Application, noHostName bool, domain models.DomainFields, routePath *string) {
hostname := cmd.hostnameForApp(host, UseRandomHostname, app.Name, noHostName)
var route models.Route
if routePath != nil {
route = routeActor.FindOrCreateRoute(hostname, domain, *routePath)
} else {
route = routeActor.FindOrCreateRoute(hostname, domain, "")
}
routeActor.BindRoute(app, route)
}
示例3: updateRoutes
func (cmd *Push) updateRoutes(routeActor actors.RouteActor, app models.Application, appParams models.AppParams, noHostName bool) {
defaultRouteAcceptable := len(app.Routes) == 0
routeDefined := appParams.Domain != nil || appParams.Host != nil || noHostName
domain := cmd.findDomain(appParams.Domain)
hostname := cmd.hostnameForApp(appParams.Host, appParams.UseRandomHostname, app.Name, noHostName)
if appParams.NoRoute {
cmd.removeRoutes(app, routeActor)
} else if routeDefined || defaultRouteAcceptable {
route := routeActor.FindOrCreateRoute(hostname, domain)
routeActor.BindRoute(app, route)
}
}
示例4: createAndBindRoute
func (cmd *Push) createAndBindRoute(host *string, UseRandomHostname bool, routeActor actors.RouteActor, app models.Application, noHostName bool, domain models.DomainFields) {
hostname := cmd.hostnameForApp(host, UseRandomHostname, app.Name, noHostName)
route := routeActor.FindOrCreateRoute(hostname, domain)
routeActor.BindRoute(app, route)
}
示例5: createAndBindRoute
func (cmd *Push) createAndBindRoute(host *string, UseRandomHostname bool, routeActor actors.RouteActor, app models.Application, noHostName bool, domain models.DomainFields) {
hostname := cmd.hostnameForApp(host, UseRandomHostname, app.Name, noHostName)
path := "" // not currently configurable in the manifest
route := routeActor.FindOrCreateRoute(hostname, domain, path)
routeActor.BindRoute(app, route)
}