Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for serverConfig (0.2 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/options/options.go

    	}
    
    	serverConfig := genericapiserver.NewRecommendedConfig(apiserver.Codecs)
    	if err := o.ServerRunOptions.ApplyTo(&serverConfig.Config); err != nil {
    		return nil, err
    	}
    	if err := o.RecommendedOptions.ApplyTo(serverConfig); err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. internal/config/server.go

    }
    
    // ServerConfigV1 represents a MinIO configuration file v1
    type ServerConfigV1 struct {
    	ServerConfigVersion
    	ServerConfigCommon
    	Pools [][]string `yaml:"pools"`
    }
    
    // ServerConfig represents a MinIO configuration file
    type ServerConfig struct {
    	ServerConfigVersion
    	ServerConfigCommon
    	Pools []struct {
    		Args          []string `yaml:"args"`
    		SetDriveCount uint64   `yaml:"set-drive-count"`
    	} `yaml:"pools"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/config_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if restOptions.StorageConfig.StorageObjectCountTracker != genericConfig.StorageObjectCountTracker {
    		t.Errorf("There are different StorageObjectCountTracker in restOptions and serverConfig")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 12:14:06 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. tests/integration/security/ca_custom_root/main_test.go

    			},
    		},
    		TLSSettings: &common.TLSSettings{
    			RootCert:      rootCertAlt,
    			ClientCert:    clientCertAlt,
    			Key:           keyAlt,
    			AcceptAnyALPN: true,
    		},
    	}
    
    	serverConfig := echo.Config{
    		Subsets:        []echo.SubsetConfig{{}},
    		Namespace:      customNs.Get(),
    		Service:        "server",
    		ServiceAccount: true,
    		Ports: []echo.Port{
    			{
    				Name:         httpPlaintext,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top