Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for GW (0.1 sec)

  1. pilot/pkg/model/push_context.go

    				for _, gw := range gwNames {
    					n := types.NamespacedName{Namespace: ns, Name: gw}
    					private[n] = append(private[n], virtualService)
    				}
    			} else if ps.exportToDefaults.virtualService.Contains(visibility.Public) {
    				for _, gw := range gwNames {
    					ps.virtualServiceIndex.publicByGateway[gw] = append(ps.virtualServiceIndex.publicByGateway[gw], virtualService)
    				}
    			}
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    			for _, gw := range gateways[gk] {
    				if gw == pr {
    					continue // do not ban ourself
    				}
    				if gw.Port != pr.Port {
    					// We only care about listeners on the same port
    					continue
    				}
    				if gw.Protocol != pr.Protocol {
    					// We only care about listeners on the same protocol
    					continue
    				}
    				bannedHostnames.Insert(gw.OriginalHostname)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    	service *corev1.Service
    	pods    []*corev1.Pod
    }
    
    func (ingress *ingressInfo) match(gw *clientnetworking.Gateway) bool {
    	if ingress == nil || gw == nil {
    		return false
    	}
    	if gw.Spec.Selector == nil {
    		return true
    	}
    	for _, p := range ingress.pods {
    		if maps.Contains(p.GetLabels(), gw.Spec.Selector) {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    }
    
    // assertWaypointAddressForPod takes a pod name for key and the expected waypoint IP Address
    // if the IP is empty we assume you're asserting that the pod's waypoint address is nil
    // will assert that the GW address for the pod's waypoint is the expected address
    // nolint: unparam
    func (s *ambientTestServer) assertWaypointAddressForPod(t *testing.T, key, expectedIP string) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

      "type":  "sdnbridge",
      "master": "Ethernet",
      "capabilities":  {
        "portMappings":  true,
        "dns": true
      },
      "ipam":  {
        "subnet": "POD_CIDR",
        "routes": [
          {
            "GW": "POD_GATEWAY"
          }
        ]
      },
      "dns":  {
        "Nameservers":  [
          "DNS_SERVER_IP"
        ],
        "Search": [
          "DNS_DOMAIN"
        ]
      },
      "AdditionalArgs": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top