Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for pki (0.07 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/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: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/security/pkg/pki/ca"
    	"istio.io/istio/security/pkg/pki/ra"
    	caserver "istio.io/istio/security/pkg/server/ca"
    	"istio.io/istio/security/pkg/server/ca/authenticate"
    	"istio.io/istio/security/pkg/server/ca/authenticate/kubeauth"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    // More types might be supported in the future.
    //
    // This kind of key is commonly encoded in PEM blocks of type "PUBLIC KEY".
    func ParsePKIXPublicKey(derBytes []byte) (pub any, err error) {
    	var pki publicKeyInfo
    	if rest, err := asn1.Unmarshal(derBytes, &pki); err != nil {
    		if _, err := asn1.Unmarshal(derBytes, &pkcs1PublicKey{}); err == nil {
    			return nil, errors.New("x509: failed to parse public key (use ParsePKCS1PublicKey instead for this key format)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/cache/secretcache_test.go

    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/testcerts"
    	"istio.io/istio/security/pkg/nodeagent/caclient/providers/mock"
    	"istio.io/istio/security/pkg/nodeagent/cafile"
    	pkiutil "istio.io/istio/security/pkg/pki/util"
    )
    
    func TestWorkloadAgentGenerateSecret(t *testing.T) {
    	fakeCACli, err := mock.NewMockCAClient(time.Hour, true)
    	var got, want []byte
    	if err != nil {
    		t.Fatalf("Error creating Mock CA client: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. pkg/istio-agent/xds_proxy.go

    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/uds"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/wasm"
    	"istio.io/istio/security/pkg/nodeagent/caclient"
    	"istio.io/istio/security/pkg/pki/util"
    )
    
    const (
    	defaultClientMaxReceiveMessageSize = math.MaxInt32
    )
    
    type (
    	DiscoveryStream      = discovery.AggregatedDiscoveryService_StreamAggregatedResourcesServer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. cluster/gce/windows/k8s-node-setup.psm1

    }
    
    # Creates the node PKI files in $env:PKI_DIR.
    #
    # Required ${kube_env} keys:
    #   CA_CERT
    # ${kube_env} keys that can be omitted for nodes that do not use an
    # authentication plugin:
    #   KUBELET_CERT
    #   KUBELET_KEY
    function Create-NodePki {
      Log-Output 'Creating node pki files'
    
      if ($kube_env.ContainsKey('CA_CERT')) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top