Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 312 for It (0.04 sec)

  1. tools/istio-iptables/pkg/capture/run.go

    				// If an inbound packet belongs to an established socket, route it to the
    				// loopback interface.
    				cfg.ruleBuilder.AppendRule(iptableslog.UndefinedCommand, constants.ISTIOINBOUND, constants.MANGLE, "-p", constants.TCP,
    					"-m", "conntrack", "--ctstate", "RELATED,ESTABLISHED", "-j", constants.ISTIODIVERT)
    				// Otherwise, it's a new connection. Redirect it using TPROXY.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. pkg/kube/krt/collection.go

    	defer h.recomputeMu.Unlock()
    	// A secondary dependency changed...
    	// Got an event. Now we need to find out who depends on it..
    	changedInputKeys := sets.Set[Key[I]]{}
    	// Check old and new
    	for _, ev := range events {
    		// We have a possibly dependant object changed. For each input object, see if it depends on the object.
    		// This can be by name or the entire type.
    		// objectRelations stores each input key to dependency specification.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. pilot/pkg/xds/eds_test.go

    			adscConn := s.Connect(nil, nil, watchAll)
    
    			// Validate that endpoints are pushed correctly.
    			testEndpoints("10.0.0.53", "outbound|8080||flipflop.com", adscConn, t)
    
    			// Clear the endpoint and validate it does not trigger a full push.
    			s.MemRegistry.SetEndpoints("flipflop.com", "", []*model.IstioEndpoint{})
    
    			upd, _ := adscConn.Wait(5*time.Second, v3.EndpointType)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_tls.go

    		if cb.isHttp2Cluster(c) {
    			// This is HTTP/2 in-mesh cluster, advertise it with ALPN.
    			if features.MetadataExchange && !features.DisableMxALPN {
    				tlsContext.CommonTlsContext.AlpnProtocols = util.ALPNInMeshH2WithMxc
    			} else {
    				tlsContext.CommonTlsContext.AlpnProtocols = util.ALPNInMeshH2
    			}
    		} else {
    			// This is in-mesh cluster, advertise it with ALPN.
    			if features.MetadataExchange && !features.DisableMxALPN {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/istio_ca.go

    			return err
    		}
    	}
    	return nil
    }
    
    // handleEvent handles the events on cacerts related files.
    // If create/write(modified) event occurs, then it verifies that
    // newly introduced cacerts are intermediate CA which is generated
    // from cuurent root-cert.pem. Then it updates and keycertbundle
    // and generates new dns certs.
    func handleEvent(s *Server) {
    	log.Info("Update Istiod cacerts")
    
    	var newCABundle []byte
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. pkg/test/framework/suite_test.go

    		var ref *resource.FakeResource
    		tracked := &resource.FakeResource{IDValue: "1"}
    		// notice that we pass **fakeCluster:
    		// GetResource requires *T where T implements resource.Resource.
    		// *fakeCluster implements it but fakeCluster does not.
    		err := act(&ref, tracked)
    		g.Expect(err).To(BeNil())
    		g.Expect(tracked).To(Equal(ref))
    	})
    	t.Run("interface reference", func(t *testing.T) {
    		g := NewWithT(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster.go

    		// WatchedResources.ResourceNames will contain the names of the clusters it is subscribed to. We can
    		// check with the name of our service (cluster names are in the format outbound|<port>|<subset>|<hostname>).
    		dir, subset, svcHost, port := model.ParseSubsetKey(cluster)
    		// Inbound clusters don't have svchost in its format. So don't add it to serviceClusters.
    		if dir == model.TrafficDirectionInbound {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    	// so we can exit early and have the WorkloadRbac xDS server push its static strict policy.
    	// Note that this doesn't actually attach the policy to any workload; it just makes it available
    	// to ztunnel in case a workload needs it.
    	foundNonStrictPortmTLS := false
    	for port, mtls := range pa.PortLevelMtls {
    		switch portMtlsMode := mtls.GetMode(); {
    		case portMtlsMode == v1beta1.PeerAuthentication_MutualTLS_STRICT:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. tests/integration/telemetry/api/wasmplugin_test.go

    		})
    }
    
    // TestBadWasmWithFailOpen is basically the same with TestBadWasmRemoteLoad except
    // it tests with "fail_open = true". To test the fail_open, the target pod is restarted
    // after applying the Wasm filter.
    // At this moment, there is no "fail_open" option in WasmPlugin API. So, we test it using
    // EnvoyFilter. When WasmPlugin has a "fail_open" option in the API plane, we need to change
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ads_test.go

    					t.Fatalf("expected update %s not in updates %v", expect, upd)
    				}
    			}
    			for _, unexpect := range c.unexpectedUpdates {
    				if slices.Contains(upd, unexpect) {
    					t.Fatalf("expected to not get update %s, but it is in updates %v", unexpect, upd)
    				}
    			}
    		})
    	}
    }
    
    func TestAdsUpdate(t *testing.T) {
    	s := xdsfake.NewFakeDiscoveryServer(t, xdsfake.FakeOptions{})
    	ads := s.ConnectADS()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top