Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,960 for config2 (0.21 sec)

  1. internal/kms/config.go

    		if opts != nil && opts.CADir != "" {
    			rootCAs, err = certs.GetRootCAs(opts.CADir)
    			if err != nil {
    				return nil, err
    			}
    		}
    
    		client, err := kms.NewClient(&kms.Config{
    			Endpoints: endpoints,
    			APIKey:    key,
    			TLS: &tls.Config{
    				MinVersion:         tls.VersionTLS12,
    				ClientSessionCache: tls.NewLRUClientSessionCache(tlsClientSessionCacheSize),
    				RootCAs:            rootCAs,
    			},
    		})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/admission/config.go

    package admission
    
    import (
    	"os"
    
    	"k8s.io/klog/v2"
    
    	"k8s.io/apiserver/pkg/admission"
    )
    
    // Config holds the configuration needed to for initialize the admission plugins
    type Config struct {
    	CloudConfigFile string
    }
    
    // New sets up the plugins and admission start hooks needed for admission
    func (c *Config) New() ([]admission.PluginInitializer, error) {
    	var cloudConfig []byte
    	if c.CloudConfigFile != "" {
    		var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. pkg/test/echo/server/forwarder/config.go

    					fwLog.Debugf("  AcceptableCA[%d]: %s", i, name)
    				}
    			}
    
    			return &cert, nil
    		}, nil
    	}
    
    	return nil, nil
    }
    
    func newTLSConfig(c *Config) (*tls.Config, error) {
    	r := c.Request
    	tlsConfig := &tls.Config{
    		GetClientCertificate: c.getClientCertificate,
    		NextProtos:           r.GetAlpn().GetValue(),
    		ServerName:           r.ServerName,
    		MinVersion:           tls.VersionTLS12,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/config/config.go

    // BugReportConfig controls what is captured and Include in the kube-capture tool
    // archive.
    type BugReportConfig struct {
    	// KubeConfigPath is the path to kube config file.
    	KubeConfigPath string `json:"kubeConfigPath,omitempty"`
    	// Context is the cluster Context in the kube config
    	Context string `json:"context,omitempty"`
    
    	// IstioNamespace is the namespace where the istio control plane is installed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/crd/config.go

    func (in *IstioKind) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    		return c
    	}
    
    	return nil
    }
    
    // IstioObject is a k8s wrapper interface for config objects
    type IstioObject interface {
    	runtime.Object
    	GetSpec() json.RawMessage
    	GetStatus() *json.RawMessage
    	GetObjectMeta() metav1.ObjectMeta
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. cni/pkg/config/config.go

    // limitations under the License.
    
    package config
    
    import (
    	"fmt"
    	"strings"
    )
    
    type Config struct {
    	InstallConfig InstallConfig
    	RepairConfig  RepairConfig
    }
    
    // InstallConfig struct defines the Istio CNI installation options
    type InstallConfig struct {
    	// Location of the CNI config files in the host's filesystem
    	CNINetDir string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. cmd/config-versions.go

    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/config/compress"
    	xldap "github.com/minio/minio/internal/config/identity/ldap"
    	"github.com/minio/minio/internal/config/identity/openid"
    	"github.com/minio/minio/internal/config/notify"
    	"github.com/minio/minio/internal/config/policy/opa"
    	"github.com/minio/minio/internal/config/storageclass"
    	"github.com/minio/minio/internal/logger"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. docs_src/settings/app03_an_py39/config.py

    from pydantic_settings import BaseSettings
    
    
    class Settings(BaseSettings):
        app_name: str = "Awesome API"
        admin_email: str
        items_per_user: int = 50
    
        class Config:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 204 bytes
    - Viewed (0)
  9. cmd/config-migrate.go

    	"path"
    	"strings"
    
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/config/compress"
    	xldap "github.com/minio/minio/internal/config/identity/ldap"
    	"github.com/minio/minio/internal/config/identity/openid"
    	"github.com/minio/minio/internal/config/notify"
    	"github.com/minio/minio/internal/config/policy/opa"
    	"github.com/minio/minio/internal/config/storageclass"
    	"github.com/minio/minio/internal/event/target"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. cmd/config-current_test.go

    		t.Errorf("Expecting region `us-east-1` found %s", globalSite.Region())
    	}
    
    	// Set new region and verify.
    	config.SetRegion(globalServerConfig, "us-west-1")
    	site, err := config.LookupSite(
    		globalServerConfig[config.SiteSubSys][config.Default],
    		globalServerConfig[config.RegionSubSys][config.Default],
    	)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if site.Region() != "us-west-1" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top