Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for reportListenerAttachedRoutes (0.19 sec)

  1. pilot/pkg/config/kube/gateway/conditions.go

    				LastTransitionTime: metav1.Now(),
    				Reason:             cond.reason,
    				Message:            cond.message,
    			})
    		}
    	}
    	return existingConditions
    }
    
    func reportListenerAttachedRoutes(index int, obj config.Config, i int32) {
    	obj.Status.(*kstatus.WrappedStatus).Mutate(func(s config.Status) config.Status {
    		gs := s.(*k8s.GatewayStatus)
    		for index >= len(gs.Listeners) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    				OriginalHostname: string(ptr.OrEmpty(l.Hostname)),
    				SectionName:      l.Name,
    				Port:             l.Port,
    				Protocol:         l.Protocol,
    			}
    			pri.ReportAttachedRoutes = func() {
    				reportListenerAttachedRoutes(i, obj, pri.AttachedRoutes)
    			}
    			gwMap[ref] = append(gwMap[ref], pri)
    
    			if programmed {
    				result = append(result, gatewayConfig)
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top