Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Kromer (0.2 sec)

  1. istioctl/pkg/util/configdump/listener.go

    	dal := make([]*admin.ListenersConfigDump_DynamicListener, 0)
    	for _, l := range listenerDump.DynamicListeners {
    		// If a listener was reloaded, it would contain both the active and draining state
    		// delete the draining state for proper comparison
    		l.DrainingState = nil
    		if l.ActiveState != nil {
    			dal = append(dal, l)
    		}
    	}
    
    	// Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info.
    	for i := range dal {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Nov 03 08:41:32 GMT 2022
    - 2.5K bytes
    - Viewed (1)
  2. cni/README.md

    ### Overview
    
    - [istio-cni Helm chart](../manifests/charts/istio-cni/templates)
        - `install-cni` daemonset - main function is to install and help the node CNI, but it is also a proper server and interacts with K8S, watching Pods for recovery.
        - `istio-cni-config` configmap with CNI plugin config to add to CNI plugin chained config
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

        # ID post-install.
        #
        # If the mesh admin does not specify a value, Istio will use the value of the
        # mesh's Trust Domain. The best practice is to select a proper Trust Domain
        # value.
        meshID: ""
    
        # Configure the mesh networks to be used by the Split Horizon EDS.
        #
        # The following example defines two networks with different endpoints association methods.
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  4. manifests/charts/README.md

    fork of the Istio helm templates, refactored to increase modularity and isolation.
    
    Goals:
    - Improve upgrade experience: users should be able to gradually roll upgrades, with proper
    canary deployments for Istio components. It should be possible to deploy a new version while keeping the
    stable version in place and gradually migrate apps to the new version.
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    installer is a modular, 'a-la-carte' installer for Istio. It is based on a fork of the Istio helm templates, refactored to increase modularity and isolation. Goals: - Improve upgrade experience: users should be able to gradually roll upgrades, with proper canary deployments for Istio components. It should be possible to deploy a new version while keeping the stable version in place and gradually migrate apps to the new version. - More flexibility: the new installer allows multiple 'environments', allowing...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // If specified, indicates the pod's priority. "system-node-critical" and
      // "system-cluster-critical" are two special keywords which indicate the
      // highest priorities with the former being the highest priority. Any other
      // name must be defined by creating a PriorityClass object with that name.
      // If not specified, the pod priority will be default or zero if there is no
      // default.
    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)
  7. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

      //
      // TODO: Determine how to detect ContentType and ContentEncoding of 'Raw' data.
      optional bytes raw = 1;
    }
    
    // TypeMeta is shared by all top level objects. The proper way to use it is to inline it in your type,
    // like this:
    //
    // 	type MyAwesomeAPIObject struct {
    // 	     runtime.TypeMeta    `json:",inline"`
    // 	     ... // other fields
    // 	}
    //
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  8. architecture/security/istio-agent.md

    1. The `caClient` will be configured to use either JWT or mTLS authentication. For JWT authentication, gRPC's `PerRPCCredentials`
       is configured with a `TokenProvider` which handles the logic of adding the proper JWT to each request. mTLS is configured
       by a tls.Config that points to files on disk.
    
    It should be noted there is a circular dependency with mTLS authentication; in order to fetch a certificate we need
    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)
  9. cni/pkg/plugin/plugin.go

    	}
    	return loggingOptions
    }
    
    // CmdAdd is called for ADD requests
    func CmdAdd(args *skel.CmdArgs) (err error) {
    	// Defer a panic recover, so that in case if panic we can still return
    	// a proper error to the runtime.
    	defer func() {
    		if e := recover(); e != nil {
    			msg := fmt.Sprintf("istio-cni panicked during cmdAdd: %v\n%v", e, string(debug.Stack()))
    			if err != nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/values.yaml

        # ID post-install.
        #
        # If the mesh admin does not specify a value, Istio will use the value of the
        # mesh's Trust Domain. The best practice is to select a proper Trust Domain
        # value.
        meshID: ""
        # Configure the mesh networks to be used by the Split Horizon EDS.
        #
        # The following example defines two networks with different endpoints association methods.
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
Back to top