Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for turn (0.1 sec)

  1. operator/README.md

    defines install time parameters like component and enablement and namespace, and K8s settings like resources, HPA spec etc. in a structured way.
    The simplest customization is to turn components on and off. For example, to turn on cni ([samples/cni-on.yaml](samples/cni-on.yaml):
    
    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        cni:
          enabled: true
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. 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)
  6. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // risky unless you take great care to run this webhook on all hosts
      // which run an apiserver which might need to make calls to this
      // webhook. Such installs are likely to be non-portable, i.e., not easy
      // to turn up in a new cluster.
      //
      // The scheme must be "https"; the URL must begin with "https://".
      //
      // A path is optional, and if present may be any string permissible in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // risky unless you take great care to run this webhook on all hosts
      // which run an apiserver which might need to make calls to this
      // webhook. Such installs are likely to be non-portable, i.e., not easy
      // to turn up in a new cluster.
      //
      // The scheme must be "https"; the URL must begin with "https://".
      //
      // A path is optional, and if present may be any string permissible in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  10. 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)
Back to top