Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for pki (0.05 sec)

  1. security/pkg/nodeagent/cache/secretcache.go

    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/security/pkg/monitoring"
    	nodeagentutil "istio.io/istio/security/pkg/nodeagent/util"
    	pkiutil "istio.io/istio/security/pkg/pki/util"
    )
    
    var (
    	cacheLog = istiolog.RegisterScope("cache", "cache debugging")
    	// The total timeout for any credential retrieval process, default value of 10s is used.
    	totalTimeout = time.Second * 10
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/constants/constants.go

    	CACertificateValidityPeriod = time.Hour * 24 * 365 * 10
    
    	// DefaultCertificateDir defines default certificate directory
    	DefaultCertificateDir = "pki"
    
    	// CACertAndKeyBaseName defines certificate authority base name
    	CACertAndKeyBaseName = "ca"
    	// CACertName defines certificate name
    	CACertName = "ca.crt"
    	// CAKeyName defines certificate name
    	CAKeyName = "ca.key"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// CACertPath is the path to the SSL certificate authority used to
    	// secure comunications between node and control-plane.
    	// Defaults to "/etc/kubernetes/pki/ca.crt".
    	// +optional
    	CACertPath string `json:"caCertPath,omitempty"`
    
    	// Discovery specifies the options for the kubelet to use during the TLS Bootstrap process
    	Discovery Discovery `json:"discovery"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    	NodeRegistration NodeRegistrationOptions
    
    	// CACertPath is the path to the SSL certificate authority used to
    	// secure comunications between node and control-plane.
    	// Defaults to "/etc/kubernetes/pki/ca.crt".
    	CACertPath string
    
    	// Discovery specifies the options for the kubelet to use during the TLS Bootstrap process
    	Discovery Discovery
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. pkg/istio-agent/agent_test.go

    	"istio.io/istio/security/pkg/nodeagent/cache"
    	"istio.io/istio/security/pkg/nodeagent/cafile"
    	"istio.io/istio/security/pkg/nodeagent/sds"
    	"istio.io/istio/security/pkg/nodeagent/test/mock"
    	pkiutil "istio.io/istio/security/pkg/pki/util"
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestServiceNode(t *testing.T) {
    	cases := []struct {
    		in  *Proxy
    		out string
    	}{
    		{
    			in: &Proxy{
    				Type:        model.SidecarProxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    			tmpdir := testutil.SetupTempDir(t)
    			defer os.RemoveAll(tmpdir)
    			test.cfg.CertificatesDir = tmpdir
    
    			if err := certs.CreatePKIAssets(test.cfg); err != nil {
    				t.Errorf("failed creating pki assets: %v", err)
    			}
    
    			// delete ca.key and front-proxy-ca.key if test.caKeyPresent is false
    			if !test.caKeyPresent {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  7. cmd/kubelet/app/options/options.go

    func NewKubeletFlags() *KubeletFlags {
    	return &KubeletFlags{
    		ContainerRuntimeOptions: *NewContainerRuntimeOptions(),
    		CertDirectory:           "/var/lib/kubelet/pki",
    		RootDirectory:           filepath.Clean(defaultRootDir),
    		MaxContainerCount:       -1,
    		MaxPerPodContainerCount: 1,
    		MinimumGCAge:            metav1.Duration{Duration: 0},
    		RegisterSchedulable:     true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top