Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for GW (0.15 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	}
    }
    
    func getGatewayAddrs(gw *v1beta1.Gateway) []netip.Addr {
    	// Currently, we only look at one address. Probably this should be made more robust
    	ip, err := netip.ParseAddr(gw.Status.Addresses[0].Value)
    	if err == nil {
    		return []netip.Addr{ip}
    	}
    	log.Errorf("Unable to parse IP address in status of %v/%v/%v", gvk.KubernetesGateway, gw.Namespace, gw.Name)
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. tests/integration/pilot/gateway_test.go

    	client := t.Clusters().Default().GatewayAPI().GatewayV1beta1().Gateways(apps.Namespace.Name())
    	check := func() error {
    		gw, _ := client.Get(context.Background(), "managed-owner", metav1.GetOptions{})
    		if gw == nil {
    			return fmt.Errorf("failed to find gateway")
    		}
    		cond := kstatus.GetCondition(gw.Status.Conditions, string(k8sv1.GatewayConditionProgrammed))
    		if cond.Status != metav1.ConditionTrue {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway_test.go

    }
    
    func makeConfig(name, namespace, host, portName, portProtocol string, portNumber uint32, gw string, bind string,
    	mode networking.ServerTLSSettings_TLSmode,
    ) config.Config {
    	c := config.Config{
    		Meta: config.Meta{
    			Name:      name,
    			Namespace: namespace,
    		},
    		Spec: &networking.Gateway{
    			Selector: map[string]string{"istio": gw},
    			Servers: []*networking.Server{
    				{
    					Hosts: []string{host},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. 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)
  5. tests/integration/security/filebased_tls_origination/main_test.go

    components:
      egressGateways:
      - enabled: true
        name: istio-egressgateway
    values:
       gateways:
          istio-egressgateway:
             secretVolumes:
             - name: client-custom-certs
               secretName: egress-gw-cacerts
               mountPath: /etc/certs/custom
    {{- end }}
    `, map[string]bool{"isExternalControlPlane": ctx.AllClusters().IsExternalControlPlane()})
    
    	cfg.GatewayValues = `
    components:
      egressGateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    		if err := localScheme.SetVersionPriority(groupVersions...); err != nil {
    			return nil, err
    		}
    		gw, err := webhook.NewGenericWebhook(localScheme, scheme.Codecs, config, groupVersions, retryBackoff)
    		if err != nil {
    			return nil, err
    		}
    		return &subjectAccessReviewV1ClientGW{gw.RestClient}, nil
    
    	case authorizationv1beta1.SchemeGroupVersion.Version:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/network_test.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    func TestGatewayHostnames(t *testing.T) {
    	test.SetForTest(t, &model.MinGatewayTTL, 30*time.Millisecond)
    	ttl := uint32(0) // second
    
    	gwHost := "test.gw.istio.io"
    	workingDNSServer := newFakeDNSServer(ttl, sets.New(gwHost))
    	failingDNSServer := newFakeDNSServer(ttl, sets.NewWithLength[string](0))
    	failingDNSServer.setFailure(true)
    	model.NetworkGatewayTestDNSServers = []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/describe_test.go

    					ObjectMeta: metav1.ObjectMeta{
    						Name:      "bookinfo",
    						Namespace: "default",
    					},
    					Spec: v1alpha32.VirtualService{
    						Hosts:    []string{"productpage"},
    						Gateways: []string{"fake-gw"},
    						Http: []*v1alpha32.HTTPRoute{
    							{
    								Match: []*v1alpha32.HTTPMatchRequest{
    									{
    										Uri: &v1alpha32.StringMatch{
    											MatchType: &v1alpha32.StringMatch_Prefix{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  9. pkg/config/mesh/mesh_test.go

    				{
    					Ne: &meshconfig.Network_NetworkEndpoints_FromCidr{
    						FromCidr: "192.168.0.1/24",
    					},
    				},
    			},
    			Gateways: []*meshconfig.Network_IstioNetworkGateway{
    				{
    					Gw: &meshconfig.Network_IstioNetworkGateway_Address{
    						Address: "1.1.1.1",
    					},
    					Port: 80,
    				},
    			},
    		},
    		"network2": {
    			Endpoints: []*meshconfig.Network_NetworkEndpoints{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/controller.go

    		for _, cfg := range impactedConfigs {
    			gw := config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.KubernetesGateway,
    					Namespace:        cfg.Namespace,
    					Name:             cfg.Name,
    				},
    			}
    			c.secretHandler(gw, gw, model.EventUpdate)
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top