Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getClusterName (0.45 sec)

  1. pilot/cmd/pilot-agent/config/config.go

    				"This is not recommended and may lead to performance issues. "+
    				"CPU count: %d, CPU Limit: %d.", runtime.NumCPU(), CPULimit)
    		}
    	}
    
    	if x, ok := proxyConfig.GetClusterName().(*meshconfig.ProxyConfig_ServiceCluster); ok {
    		if x.ServiceCluster == "" {
    			proxyConfig.ClusterName = &meshconfig.ProxyConfig_ServiceCluster{ServiceCluster: serviceCluster}
    		}
    	}
    	// resolve statsd address
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. pkg/kube/inject/inject.go

    	return tag + "-" + imageType
    }
    
    func extractClusterAndNetwork(params InjectionParameters) (string, string) {
    	metadata := &params.pod.ObjectMeta
    	cluster := params.valuesConfig.asStruct.GetGlobal().GetMultiCluster().GetClusterName()
    	// TODO allow overriding the values.global network in injection with the system namespace label
    	network := params.valuesConfig.asStruct.GetGlobal().GetNetwork()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. pkg/config/validation/agent/validation.go

    		errs = multierror.Append(errs, errors.New("config path must be set"))
    	}
    
    	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)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    }
    
    func (x *MultiClusterConfig) GetEnabled() *wrapperspb.BoolValue {
    	if x != nil {
    		return x.Enabled
    	}
    	return nil
    }
    
    func (x *MultiClusterConfig) GetClusterName() string {
    	if x != nil {
    		return x.ClusterName
    	}
    	return ""
    }
    
    func (x *MultiClusterConfig) GetGlobalDomainSuffix() string {
    	if x != nil {
    		return x.GlobalDomainSuffix
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top