Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Talk (0.16 sec)

  1. manifests/charts/istio-control/istio-discovery/values.yaml

        mountMtlsCerts: false
    
        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
          # ingressgateway services when pods in each cluster cannot directly
          # talk to one another. All clusters should be using Istio mTLS and must
          # have a shared root CA for this model to work.
          enabled: false
    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)
  2. manifests/charts/istiod-remote/values.yaml

        mountMtlsCerts: false
        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
          # ingressgateway services when pods in each cluster cannot directly
          # talk to one another. All clusters should be using Istio mTLS and must
          # have a shared root CA for this model to work.
          enabled: false
    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)
  3. manifests/charts/README.md

    The install is organized in 'environments' - each environment consists of a set of components
    in different namespaces that are configured to work together. Regardless of 'environment',
    workloads can talk with each other and obey the Istio configuration resources, but each environment
    can use different Istio versions and different configuration defaults.
    
    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)
  4. manifests/charts/gateways/istio-egress/values.yaml

        # rules should be exported to. Currently only one value can be provided in this list. This value
        # should be one of the following two options:
        # * implies these objects are visible to all namespaces, enabling any sidecar to talk to any other sidecar.
        # . implies these objects are visible to only to sidecars in the same namespace, or if imported as a Sidecar.egress.host
        defaultConfigVisibilitySettings: []
    
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/values.yaml

        # rules should be exported to. Currently only one value can be provided in this list. This value
        # should be one of the following two options:
        # * implies these objects are visible to all namespaces, enabling any sidecar to talk to any other sidecar.
        # . implies these objects are visible to only to sidecars in the same namespace, or if imported as a Sidecar.egress.host
        defaultConfigVisibilitySettings: []
    
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 13K bytes
    - Viewed (0)
  6. README.md

       policy enforcement and telemetry recording/reporting
       functions.
    
      > Note: The service mesh is not an overlay network. It
      > simplifies and enhances how microservices in an application talk to each
      > other over the network provided by the underlying platform.
    
    - **Istiod** - The Istio control plane. It provides service discovery, configuration and certificate management. It consists of the following sub-components:
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 15:28:59 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      optional string loadBalancerClass = 21;
    
      // InternalTrafficPolicy describes how nodes distribute service traffic they
      // receive on the ClusterIP. If set to "Local", the proxy will assume that pods
      // only want to talk to endpoints of the service on the same node as the pod,
      // dropping the traffic if there are no local endpoints. The default value,
      // "Cluster", uses the standard behavior of routing to all endpoints evenly
    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)
  8. common/scripts/kind_provisioner.sh

    # KinD cluster like its name, pod and service subnets and network_id. If two cluster
    # have the same network_id then they belong to the same network and their pods can
    # talk to each other directly.
    #
    # [{ "cluster_name": "cluster1","pod_subnet": "10.10.0.0/16","svc_subnet": "10.255.10.0/24","network_id": "0" },
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  9. istioctl/pkg/analyze/analyze.go

    		}
    	})
    	return local.ReaderSource{Name: f, Reader: r}, nil
    }
    
    func gatherFilesInDirectory(cmd *cobra.Command, dir string) ([]local.ReaderSource, error) {
    	var readers []local.ReaderSource
    
    	err := filepath.Walk(dir, func(path string, info os.FileInfo, err error) error {
    		if err != nil {
    			return err
    		}
    		// If we encounter a directory, recurse only if the --recursive option
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 17K bytes
    - Viewed (0)
  10. operator/cmd/mesh/profile-dump.go

    			decoded = v
    		}
    	}
    	setflags, err := walk("", "", decoded)
    	if err != nil {
    		return []string{}, err
    	}
    	sort.Strings(setflags)
    	return setflags, nil
    }
    
    func walk(path, separator string, obj any) ([]string, error) {
    	switch v := obj.(type) {
    	case map[string]any:
    		accum := make([]string, 0)
    		for key, vv := range v {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 7.1K bytes
    - Viewed (0)
Back to top