Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for clustername (0.17 sec)

  1. pkg/test/framework/components/cluster/topology.go

    	return c.ConfigMetadata.String(key)
    }
    
    // NetworkName the cluster is on
    func (c Topology) NetworkName() string {
    	return c.Network
    }
    
    // Name provides the ClusterName this cluster used by Istio.
    func (c Topology) Name() string {
    	return c.ClusterName
    }
    
    // HTTPProxy to connect to the cluster
    func (c Topology) HTTPProxy() string {
    	return c.ClusterHTTPProxy
    }
    
    func (c Topology) ProxyKubectlOnly() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    	}
    
    	cases := []struct {
    		name            string
    		clusterName     string
    		discovery       cluster.Cluster_DiscoveryType
    		endpoints       []*endpoint.LocalityLbEndpoints
    		direction       model.TrafficDirection
    		external        bool
    		expectedCluster *cluster.Cluster
    	}{
    		{
    			name:        "default EDS cluster",
    			clusterName: "foo",
    			discovery:   cluster.Cluster_EDS,
    			endpoints:   nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	}
    
    	return writeKubeConfigFromSpec(out, spec, cfg.ClusterName)
    }
    
    // writeKubeConfigFromSpec creates a kubeconfig object from a kubeConfigSpec and writes it to the given writer.
    func writeKubeConfigFromSpec(out io.Writer, spec *kubeConfigSpec, clustername string) error {
    
    	// builds the KubeConfig object
    	config, err := buildKubeConfigFromSpec(spec, clustername)
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. pkg/test/framework/components/cluster/config.go

    // limitations under the License.
    
    package cluster
    
    import (
    	"istio.io/istio/pkg/test/framework/config"
    )
    
    type Config struct {
    	Name               string     `yaml:"clusterName,omitempty"`
    	Network            string     `yaml:"network,omitempty"`
    	HTTPProxy          string     `yaml:"httpProxy,omitempty"`
    	ProxyKubectlOnly   bool       `yaml:"proxyKubectlOnly,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/kube.go

    			args.AppendSet("values.pilot.env.EXTERNAL_ISTIOD", "true")
    		}
    
    		// Set the clusterName for the local cluster.
    		// This MUST match the clusterName in the remote secret for this cluster.
    		clusterName := c.Name()
    		if !c.IsConfig() {
    			clusterName = c.ConfigName()
    		}
    		args.AppendSet("values.global.multiCluster.clusterName", clusterName)
    	}
    
    	if err := i.installer.Install(c, args); err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_inbound.go

    // as a result of a Service, and Sidecar CR, or for the built-in passthrough filter chains.
    type inboundChainConfig struct {
    	// clusterName defines the destination cluster for this chain
    	clusterName string
    	// port defines the port configuration for this chain. Note that there is a Port and TargetPort;
    	// most usages should just use TargetPort. Port is mostly used for legacy compatibility and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging_test.go

    	for _, tc := range []struct {
    		name        string
    		logName     string
    		clusterName string
    		hostname    string
    		body        string
    		labels      *structpb.Struct
    		expected    *otelaccesslog.OpenTelemetryAccessLogConfig
    	}{
    		{
    			name:        "default",
    			logName:     OtelEnvoyAccessLogFriendlyName,
    			clusterName: fakeCluster,
    			hostname:    fakeAuthority,
    			body:        EnvoyTextLogFormat,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_logging.go

    				TargetSpecifier: &core.GrpcService_EnvoyGrpc_{
    					EnvoyGrpc: &core.GrpcService_EnvoyGrpc{
    						ClusterName: clusterName,
    						Authority:   hostname,
    					},
    				},
    			},
    			TransportApiVersion:     core.ApiVersion_V3,
    			FilterStateObjectsToLog: envoyWasmStateToLog,
    		},
    		DisableBuiltinLabels: true,
    	}
    
    	if format != "" {
    		cfg.Body = &otlpcommon.AnyValue{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder.go

    ) *clusterWrapper {
    	clusterName := model.BuildInboundSubsetKey(clusterPort)
    	localityLbEndpoints := buildInboundLocalityLbEndpoints(bind, instance.Port.TargetPort)
    	clusterType := cluster.Cluster_ORIGINAL_DST
    	if len(localityLbEndpoints) > 0 {
    		clusterType = cluster.Cluster_STATIC
    	}
    	localCluster := cb.buildCluster(clusterName, clusterType, localityLbEndpoints,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  10. manifests/charts/ztunnel/templates/daemonset.yaml

            - name: RUST_LOG
              value: {{ .Values.logLevel | quote }}
            - name: RUST_BACKTRACE
              value: "1"
            - name: ISTIO_META_CLUSTER_ID
              value: {{ .Values.multiCluster.clusterName | default "Kubernetes" }}
            - name: INPOD_ENABLED
              value: "true"
            - name: ISTIO_META_DNS_PROXY_ADDR
              value: "127.0.0.1:15053"
            - name: POD_NAME
              valueFrom:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top