Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/kube/inject/template.go

    		pc.BinaryPath = ""
    	}
    	if pc.ControlPlaneAuthPolicy == defaults.ControlPlaneAuthPolicy {
    		pc.ControlPlaneAuthPolicy = 0
    	}
    	if x, ok := pc.GetClusterName().(*meshconfig.ProxyConfig_ServiceCluster); ok {
    		if x.ServiceCluster == defaults.GetClusterName().(*meshconfig.ProxyConfig_ServiceCluster).ServiceCluster {
    			pc.ClusterName = nil
    		}
    	}
    
    	if proto.Equal(pc.DrainDuration, defaults.DrainDuration) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

                final ClusterHealthResponse response =
                        esClient.admin().cluster().prepareHealth().execute().actionGet(fessConfig.getIndexHealthTimeout());
                engineObj.clusterName = response.getClusterName();
                engineObj.numberOfNodes = response.getNumberOfNodes();
                engineObj.numberOfDataNodes = response.getNumberOfDataNodes();
                engineObj.activePrimaryShards = response.getActivePrimaryShards();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
Back to top