Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 312 for clustername (0.17 sec)

  1. cmd/kubeadm/app/cmd/join.go

    	_, clusterinfo := kubeconfigutil.GetClusterFromKubeConfig(tlsBootstrapCfg)
    	tlsBootstrapCfg.Clusters = map[string]*clientcmdapi.Cluster{
    		initConfiguration.ClusterName: clusterinfo,
    	}
    	tlsBootstrapCfg.Contexts[tlsBootstrapCfg.CurrentContext].Cluster = initConfiguration.ClusterName
    
    	// injects into the kubeadm configuration the information about the joining node
    	initConfiguration.NodeRegistration = cfg.NodeRegistration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util.go

    func CloneClusterLoadAssignment(original *endpoint.ClusterLoadAssignment) *endpoint.ClusterLoadAssignment {
    	if original == nil {
    		return nil
    	}
    	out := &endpoint.ClusterLoadAssignment{}
    
    	out.ClusterName = original.ClusterName
    	out.Endpoints = cloneLocalityLbEndpoints(original.Endpoints)
    	out.Policy = original.Policy
    
    	return out
    }
    
    // return a shallow copy LocalityLbEndpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	certificatesDir: "/etc/kubernetes/pki"
    //	imageRepository: "registry.k8s.io"
    //	clusterName: "example-cluster"
    //	---
    //	apiVersion: kubelet.config.k8s.io/v1beta1
    //	kind: KubeletConfiguration
    //	# kubelet specific options here
    //	---
    //	apiVersion: kubeproxy.config.k8s.io/v1alpha1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util_test.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	xdsutil "istio.io/istio/pkg/wellknown"
    )
    
    var testCla = &endpoint.ClusterLoadAssignment{
    	ClusterName: "cluster",
    	Endpoints: []*endpoint.LocalityLbEndpoints{{
    		Locality: &core.Locality{Region: "foo", Zone: "bar"},
    		LbEndpoints: []*endpoint.LbEndpoint{
    			{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. pkg/config/validation/agent/validation.go

    	}
    
    	if config.BinaryPath == "" {
    		errs = multierror.Append(errs, errors.New("binary path must be set"))
    	}
    
    	clusterName := config.GetClusterName()
    	switch naming := clusterName.(type) {
    	case *meshconfig.ProxyConfig_ServiceCluster:
    		if naming.ServiceCluster == "" {
    			errs = multierror.Append(errs, errors.New("service cluster must be specified"))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    "enableAnalysis": false, "enabled": true }, "jwtPolicy": "third-party-jwt", "logAsJson": false, "logging": { "level": "default:info" }, "meshExpansion": { "enabled": false, "useILB": false }, "meshNetworks": {}, "mountMtlsCerts": false, "multiCluster": { "clusterName": "", "enabled": false }, "namespace": "istio-system", "network": "", "omitSidecarInjectorC": false, "oneNamespace": false, "operatorManageWebhoo": false, "pilotCertProvider": "istiod", "policyNamespace": "istio-system", "priorityClassName": "",...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-ingress/values.yaml

          enabled: false
          # Should be set to the name of the cluster this installation will run in. This is required for sidecar injection
          # to properly label proxies
          clusterName: ""
          # The suffix for global service names
          globalDomainSuffix: "global"
          # Enable envoy filter to translate `globalDomainSuffix` to cluster local suffix for cross cluster communication
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. pilot/pkg/features/pilot.go

    			" using Istio build in CA. Other values will not not generate TLS certs, but still "+
    			" distribute ./etc/certs/root-cert.pem. Only used if custom certificates are not mounted.").Get()
    
    	ClusterName = env.Register("CLUSTER_ID", constants.DefaultClusterName,
    		"Defines the cluster and service registry that this Istiod instance belongs to").Get()
    
    	ExternalIstiod = env.Register("EXTERNAL_ISTIOD", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	certificatesDir: "/etc/kubernetes/pki"
    //	imageRepository: "registry.k8s.io"
    //	clusterName: "example-cluster"
    //	---
    //	apiVersion: kubelet.config.k8s.io/v1beta1
    //	kind: KubeletConfiguration
    //	# kubelet specific options here
    //	---
    //	apiVersion: kubeproxy.config.k8s.io/v1alpha1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-egress/values.yaml

          enabled: false
          # Should be set to the name of the cluster this installation will run in. This is required for sidecar injection
          # to properly label proxies
          clusterName: ""
    
        # Network defines the network this cluster belong to. This name
        # corresponds to the networks in the map of mesh networks.
        network: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top