Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ServiceTypeLoadBalancer (0.4 sec)

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

    					svc.Attributes.ClusterExternalAddresses.ForEach(func(c cluster.ID, externalIPs []string) {
    						foundExternal.InsertAll(externalIPs...)
    					})
    				} else if corev1.ServiceType(svc.Attributes.Type) == corev1.ServiceTypeLoadBalancer {
    					if !foundPending.Contains(g) {
    						warnings = append(warnings, fmt.Sprintf("address pending for hostname %q", g))
    						foundPending.Insert(g)
    					}
    				}
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/conversion.go

    			portMap[uint32(p.Port)] = uint32(p.NodePort)
    		}
    		istioService.Attributes.ClusterExternalPorts = map[cluster.ID]map[uint32]uint32{clusterID: portMap}
    		// address mappings will be done elsewhere
    	case corev1.ServiceTypeLoadBalancer:
    		if len(svc.Status.LoadBalancer.Ingress) > 0 {
    			var lbAddrs []string
    			for _, ingress := range svc.Status.LoadBalancer.Ingress {
    				if len(ingress.IP) > 0 {
    					lbAddrs = append(lbAddrs, ingress.IP)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top