本文整理汇总了Golang中github.com/openshift/origin/pkg/route/api.IngressConditionStatus函数的典型用法代码示例。如果您正苦于以下问题:Golang IngressConditionStatus函数的具体用法?Golang IngressConditionStatus怎么用?Golang IngressConditionStatus使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了IngressConditionStatus函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: extractRouteInfo
func extractRouteInfo(route *routeapi.Route) (requested bool, other []string, errors []string) {
reasons := sets.NewString()
for _, ingress := range route.Status.Ingress {
exact := route.Spec.Host == ingress.Host
switch status, condition := routeapi.IngressConditionStatus(&ingress, routeapi.RouteAdmitted); status {
case kapi.ConditionFalse:
reasons.Insert(condition.Reason)
default:
if exact {
requested = true
} else {
other = append(other, ingress.Host)
}
}
}
return requested, other, reasons.List()
}
开发者ID:iconoeugen,项目名称:origin,代码行数:17,代码来源:projectstatus.go
示例2: FindRouteAdmissionFailures
// FindRouteAdmissionFailures creates markers for any routes that were rejected by their routers
func FindRouteAdmissionFailures(g osgraph.Graph, f osgraph.Namer) []osgraph.Marker {
markers := []osgraph.Marker{}
for _, uncastRouteNode := range g.NodesByKind(routegraph.RouteNodeKind) {
routeNode := uncastRouteNode.(*routegraph.RouteNode)
Route:
for _, ingress := range routeNode.Status.Ingress {
switch status, condition := routeapi.IngressConditionStatus(&ingress, routeapi.RouteAdmitted); status {
case kapi.ConditionFalse:
markers = append(markers, osgraph.Marker{
Node: routeNode,
Severity: osgraph.ErrorSeverity,
Key: RouteNotAdmittedTypeErr,
Message: fmt.Sprintf("%s was not accepted by router %q: %s (%s)", f.ResourceName(routeNode), ingress.RouterName, condition.Message, condition.Reason),
})
break Route
}
}
}
return markers
}
开发者ID:richm,项目名称:origin,代码行数:24,代码来源:analysis.go
示例3: printRoute
func printRoute(route *routeapi.Route, w io.Writer, opts kctl.PrintOptions) error {
tlsTerm := ""
insecurePolicy := ""
if route.Spec.TLS != nil {
tlsTerm = string(route.Spec.TLS.Termination)
insecurePolicy = string(route.Spec.TLS.InsecureEdgeTerminationPolicy)
}
if opts.WithNamespace {
if _, err := fmt.Fprintf(w, "%s\t", route.Namespace); err != nil {
return err
}
}
var (
matchedHost bool
reason string
host = route.Spec.Host
admitted, errors = 0, 0
)
for _, ingress := range route.Status.Ingress {
switch status, condition := routeapi.IngressConditionStatus(&ingress, routeapi.RouteAdmitted); status {
case kapi.ConditionTrue:
admitted++
if !matchedHost {
matchedHost = ingress.Host == route.Spec.Host
host = ingress.Host
}
case kapi.ConditionFalse:
reason = condition.Reason
errors++
}
}
switch {
case route.Status.Ingress == nil:
// this is the legacy case, we should continue to show the host when talking to servers
// that have not set status ingress, since we can't distinguish this condition from there
// being no routers.
case admitted == 0 && errors > 0:
host = reason
case errors > 0:
host = fmt.Sprintf("%s ... %d rejected", host, errors)
case admitted == 0:
host = "Pending"
case admitted > 1:
host = fmt.Sprintf("%s ... %d more", host, admitted-1)
}
var policy string
switch {
case len(tlsTerm) != 0 && len(insecurePolicy) != 0:
policy = fmt.Sprintf("%s/%s", tlsTerm, insecurePolicy)
case len(tlsTerm) != 0:
policy = tlsTerm
case len(insecurePolicy) != 0:
policy = fmt.Sprintf("default/%s", insecurePolicy)
default:
policy = ""
}
svc := route.Spec.To.Name
if route.Spec.Port != nil {
svc = fmt.Sprintf("%s:%s", svc, route.Spec.Port.TargetPort.String())
}
if _, err := fmt.Fprintf(w, "%s\t%s\t%s\t%s\t%s\t%s\n", route.Name, host, route.Spec.Path, svc, policy, labels.Set(route.Labels)); err != nil {
return err
}
return nil
}
开发者ID:sgallagher,项目名称:origin,代码行数:66,代码来源:printer.go
示例4: Describe
// Describe returns the description of a route
func (d *RouteDescriber) Describe(namespace, name string, settings kctl.DescriberSettings) (string, error) {
c := d.Routes(namespace)
route, err := c.Get(name)
if err != nil {
return "", err
}
endpoints, endsErr := d.kubeClient.Endpoints(namespace).Get(route.Spec.To.Name)
return tabbedString(func(out *tabwriter.Writer) error {
formatMeta(out, route.ObjectMeta)
if len(route.Spec.Host) > 0 {
formatString(out, "Requested Host", route.Spec.Host)
for _, ingress := range route.Status.Ingress {
if route.Spec.Host != ingress.Host {
continue
}
switch status, condition := routeapi.IngressConditionStatus(&ingress, routeapi.RouteAdmitted); status {
case kapi.ConditionTrue:
fmt.Fprintf(out, "\t exposed on router %s %s ago\n", ingress.RouterName, strings.ToLower(formatRelativeTime(condition.LastTransitionTime.Time)))
case kapi.ConditionFalse:
fmt.Fprintf(out, "\t rejected by router %s: %s (%s ago)\n", ingress.RouterName, condition.Reason, strings.ToLower(formatRelativeTime(condition.LastTransitionTime.Time)))
if len(condition.Message) > 0 {
fmt.Fprintf(out, "\t %s\n", condition.Message)
}
}
}
} else {
formatString(out, "Requested Host", "<auto>")
}
for _, ingress := range route.Status.Ingress {
if route.Spec.Host == ingress.Host {
continue
}
switch status, condition := routeapi.IngressConditionStatus(&ingress, routeapi.RouteAdmitted); status {
case kapi.ConditionTrue:
fmt.Fprintf(out, "\t%s exposed on router %s %s ago\n", ingress.Host, ingress.RouterName, strings.ToLower(formatRelativeTime(condition.LastTransitionTime.Time)))
case kapi.ConditionFalse:
fmt.Fprintf(out, "\trejected by router %s: %s (%s ago)\n", ingress.RouterName, condition.Reason, strings.ToLower(formatRelativeTime(condition.LastTransitionTime.Time)))
if len(condition.Message) > 0 {
fmt.Fprintf(out, "\t %s\n", condition.Message)
}
}
}
formatString(out, "Path", route.Spec.Path)
tlsTerm := ""
insecurePolicy := ""
if route.Spec.TLS != nil {
tlsTerm = string(route.Spec.TLS.Termination)
insecurePolicy = string(route.Spec.TLS.InsecureEdgeTerminationPolicy)
}
formatString(out, "TLS Termination", tlsTerm)
formatString(out, "Insecure Policy", insecurePolicy)
formatString(out, "Service", route.Spec.To.Name)
if route.Spec.Port != nil {
formatString(out, "Endpoint Port", route.Spec.Port.TargetPort.String())
} else {
formatString(out, "Endpoint Port", "<all endpoint ports>")
}
ends := "<none>"
if endsErr != nil {
ends = fmt.Sprintf("Unable to get endpoints: %v", endsErr)
} else if len(endpoints.Subsets) > 0 {
list := []string{}
max := 3
count := 0
for i := range endpoints.Subsets {
ss := &endpoints.Subsets[i]
for p := range ss.Ports {
for a := range ss.Addresses {
if len(list) < max {
list = append(list, fmt.Sprintf("%s:%d", ss.Addresses[a].IP, ss.Ports[p].Port))
}
count++
}
}
}
ends = strings.Join(list, ", ")
if count > max {
ends += fmt.Sprintf(" + %d more...", count-max)
}
}
formatString(out, "Endpoints", ends)
return nil
})
}
开发者ID:rhamilto,项目名称:origin,代码行数:92,代码来源:describer.go
示例5: printRoute
func printRoute(route *routeapi.Route, w io.Writer, opts kctl.PrintOptions) error {
tlsTerm := ""
insecurePolicy := ""
if route.Spec.TLS != nil {
tlsTerm = string(route.Spec.TLS.Termination)
insecurePolicy = string(route.Spec.TLS.InsecureEdgeTerminationPolicy)
}
name := formatResourceName(opts.Kind, route.Name, opts.WithKind)
if opts.WithNamespace {
if _, err := fmt.Fprintf(w, "%s\t", route.Namespace); err != nil {
return err
}
}
var (
matchedHost bool
reason string
host = route.Spec.Host
admitted, errors = 0, 0
)
for _, ingress := range route.Status.Ingress {
switch status, condition := routeapi.IngressConditionStatus(&ingress, routeapi.RouteAdmitted); status {
case kapi.ConditionTrue:
admitted++
if !matchedHost {
matchedHost = ingress.Host == route.Spec.Host
host = ingress.Host
}
case kapi.ConditionFalse:
reason = condition.Reason
errors++
}
}
switch {
case route.Status.Ingress == nil:
// this is the legacy case, we should continue to show the host when talking to servers
// that have not set status ingress, since we can't distinguish this condition from there
// being no routers.
case admitted == 0 && errors > 0:
host = reason
case errors > 0:
host = fmt.Sprintf("%s ... %d rejected", host, errors)
case admitted == 0:
host = "Pending"
case admitted > 1:
host = fmt.Sprintf("%s ... %d more", host, admitted-1)
}
var policy string
switch {
case len(tlsTerm) != 0 && len(insecurePolicy) != 0:
policy = fmt.Sprintf("%s/%s", tlsTerm, insecurePolicy)
case len(tlsTerm) != 0:
policy = tlsTerm
case len(insecurePolicy) != 0:
policy = fmt.Sprintf("default/%s", insecurePolicy)
default:
policy = ""
}
backends := append([]routeapi.RouteTargetReference{route.Spec.To}, route.Spec.AlternateBackends...)
totalWeight := int32(0)
for _, backend := range backends {
if backend.Weight != nil {
totalWeight += *backend.Weight
}
}
var backendInfo []string
for _, backend := range backends {
switch {
case backend.Weight == nil, len(backends) == 1 && totalWeight != 0:
backendInfo = append(backendInfo, backend.Name)
case totalWeight == 0:
backendInfo = append(backendInfo, fmt.Sprintf("%s(0%%)", backend.Name))
default:
backendInfo = append(backendInfo, fmt.Sprintf("%s(%d%%)", backend.Name, *backend.Weight*100/totalWeight))
}
}
var port string
if route.Spec.Port != nil {
port = route.Spec.Port.TargetPort.String()
} else {
port = "<all>"
}
_, err := fmt.Fprintf(w, "%s\t%s\t%s\t%s\t%s\t%s\n", name, host, route.Spec.Path, strings.Join(backendInfo, ","), port, policy)
return err
}
开发者ID:ncdc,项目名称:origin,代码行数:90,代码来源:printer.go
注:本文中的github.com/openshift/origin/pkg/route/api.IngressConditionStatus函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论