Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for turn (0.04 sec)

  1. tests/integration/security/file_mounted_certs/main_test.go

        controlPlaneAuthPolicy: "MUTUAL_TLS"
        proxyMetadata: ` + strings.Replace(ProxyMetadataJSON, "\n", "", -1) +
    		`
    values:
      global:
        pilotCertProvider: "mycopki"
      pilot:
        env:
          # We need to turn off the XDS Auth because test certificates only have a fixed/hardcoded identity, but the identity of the actual
          # deployed test services changes on each run due to a randomly generated namespace suffixes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/typed_xds_cache.go

    		}
    	}
    	size(l.store.Len())
    }
    
    func (l *lruCache[K]) ClearAll() {
    	l.mu.Lock()
    	defer l.mu.Unlock()
    	l.token = CacheToken(time.Now().UnixNano())
    	// Purge with an evict function would turn up to be pretty slow since
    	// it runs the function for every key in the store, might be better to just
    	// create a new store.
    	l.store = newLru(l.onEvict)
    	l.configIndex = map[ConfigHash]sets.Set[K]{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. istioctl/pkg/multixds/gather.go

    		responses, err = queryDebugSynczViaAgents(all, dr, istioNamespace, kubeClient, centralOpts, options)
    	} else {
    		// Self-administered case.  Find all Istiods in revision using K8s, port-forward and call each in turn
    		responses, err = queryEachShard(all, dr, istioNamespace, kubeClient, centralOpts)
    	}
    	if err != nil {
    		if _, ok := err.(ControlPlaneNotFoundError); ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. pkg/log/config.go

    			for _, scope := range allScopes {
    				scope.SetLogCallers(true)
    			}
    		}
    
    		if scope, ok := allScopes[s]; ok {
    			scope.SetLogCallers(true)
    		}
    	}
    
    	// If gRPC logging is enabled, turn on gRPC logging automatically
    	if grpcScope.GetOutputLevel() != NoneLevel {
    		options.logGRPC = true
    	}
    
    	return nil
    }
    
    // processLevels breaks down an argument string into a set of scope & levels and then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. pilot/pkg/xds/endpoints/endpoint_builder.go

    	// EDS to STRICT_DNS or LOGICAL_DNS. When pushEds is called before Envoy sends the updated cluster list via Endpoint request which in turn
    	// will update "Connection.Clusters", we might accidentally send EDS updates for STRICT_DNS cluster. This check guards
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    		// as it opens the risk of lock contention with other node actors (such as kube-proxy), and isn't actually needed at all.
    		// Older iptables cannot turn off the lock explicitly, so we hack around it...
    		// Overwrite the lock file with the network namespace file (which is assumed to be unique).
    		// We are setting the lockfile to `r.NetworkNamespace`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. pilot/pkg/model/context.go

    	// this would return true only if there was a policy allowing `ingress-ns` to access Secrets in the `ns-name` namespace.
    	SecretAllowed(resourceName string, namespace string) bool
    }
    
    // OutboundListenerClass is a helper to turn a NodeType for outbound to a ListenerClass.
    func OutboundListenerClass(t NodeType) istionetworking.ListenerClass {
    	if t == Router {
    		return istionetworking.ListenerClassGateway
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  8. pkg/kube/kclient/client.go

    				// filter passthrough the entire namespace object, so we can pass the last known state to OnDelete.
    				// Fortunately, missing a namespace delete event usually doesn't matter since everything in the namespace gets torn down.
    			} else {
    				for ns := range added {
    					for _, item := range ic.ListUnfiltered(ns, klabels.Everything()) {
    						for _, c := range ic.registeredHandlers {
    							c.handler.OnAdd(item, false)
    						}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. pkg/config/validation/agent/validation.go

    }
    
    func (v Validation) Unwrap() (Warning, error) {
    	return v.Warning, v.Err
    }
    
    func (v Validation) Error() string {
    	if v.Err == nil {
    		return ""
    	}
    	return v.Err.Error()
    }
    
    // WrapWarning turns an error into a Validation as a warning
    func WrapWarning(e error) Validation {
    	return Validation{Warning: e}
    }
    
    // wrapper around multierror.Append that enforces the invariant that if all input errors are nil, the output
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  10. pkg/istio-agent/xds_proxy_test.go

    		sendDownstreamWithNode(t, downstream, model.NodeMetadata{
    			Namespace:   "default",
    			InstanceIPs: []string{"1.1.1.1"},
    		})
    
    		// Stop server, setup a new one. This simulates an Istiod pod being torn down
    		grpcServer.Stop()
    		listener, err = net.Listen("tcp", listener.Addr().String())
    		if err != nil {
    			t.Fatal(err)
    		}
    		waitDisconnect(proxy)
    
    		grpcServer = grpc.NewServer()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top