Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for high (0.6 sec)

  1. architecture/security/istio-agent.md

    # Istio Agent
    
    This document describes the internal architecture of Istio agent.
    
    ## High Level overview
    
    ![High Level overview](docs/overview.svg)
    
    At a high level, the Istio agent acts as an intermediate proxy between Istiod and Envoy. This is done
    at two levels. For distributing workload certificates, Envoy will send [SDS](https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret)
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Aug 22 16:45:50 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/values.yaml

          # Note this gives the DaemonSet a relatively high privilege, as modifying pod metadata/status can have wider impacts.
          labelPods: false
          # deletePods will delete any broken pod. These will then be rescheduled, hopefully onto a node that is fully ready.
          # Note this gives the DaemonSet a relatively high privilege, as it can delete any Pod.
          deletePods: false
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 5.1K bytes
    - Viewed (1)
  3. common-protos/k8s.io/api/authentication/v1/generated.proto

      // audiences of the token, and otherwise should reject the token. A
      // token issued for multiple audiences may be used to authenticate
      // against any of the audiences listed but implies a high degree of
      // trust between the target audiences.
      repeated string audiences = 1;
    
      // ExpirationSeconds is the requested duration of validity of the request. The
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  4. architecture/networking/pilot.md

    # Architecture of Istiod
    
    This document describes the high level architecture of the Istio control plane, Istiod.
    Istiod is structured as a modular monolith, housing a wide range of functionality from certificate signing, proxy configuration (XDS), traditional Kubernetes controllers, and more.
    
    ## Proxy Configuration
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 19.1K bytes
    - Viewed (0)
  5. architecture/networking/controllers.md

    Unfortunately, writing controllers is very error prone, even for seemingly simple cases.
    To work around this, Istio has a variety of abstractions meant to make writing controllers easier.
    
    ## Clients
    
    Istio offers a variety of increasingly high level abstractions on top of the common Kubernetes [`client-go`](https://github.com/kubernetes/client-go).
    
    ```mermaid
    flowchart TD
        kcg["Kubernetes client-go"]
        ic["Istio kube.Client"]
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 09 17:41:25 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  6. istioctl/pkg/config/config.go

    		fmt.Fprintf(w, "%s\t%s\t%v\n", flag, viper.GetString(flag), configSource(flag, v))
    	}
    	return w.Flush()
    }
    
    func configSource(flag string, v env.VariableInfo) string {
    	// Environment variables have high precedence in Viper
    	if v.IsSet() {
    		return "$" + v.GetName()
    	}
    
    	if viper.InConfig(flag) {
    		return root.IstioConfig
    	}
    
    	return "default"
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sun Jul 30 12:16:07 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

    // state of a system, especially if the node that hosts the pod cannot contact the control
    // plane.
    message PodStatus {
      // The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle.
      // The conditions array, the reason and message fields, and the individual container status
      // arrays contain more detail about the pod's status.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
Back to top