Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Authorities (0.34 sec)

  1. cmd/kubeadm/app/apis/output/types.go

    	metav1.TypeMeta
    
    	// Certificates holds a list of certificates to show expiration information for.
    	Certificates []Certificate
    
    	// CertificateAuthorities holds a list of certificate authorities to show expiration information for.
    	CertificateAuthorities []Certificate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/renewal/manager.go

    		cas = append(cas, h)
    	}
    
    	sort.Slice(cas, func(i, j int) bool { return cas[i].Name < cas[j].Name })
    
    	return cas
    }
    
    // RenewUsingLocalCA executes certificate renewal using local certificate authorities for generating new certs.
    // For PKI certificates, use the name defined in the certsphase package, while for certificates
    // embedded in the kubeConfig files, use the kubeConfig file name defined in the kubeadm constants package.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. helm/minio/values.yaml

      certSecret: ""
      publicCrt: public.crt
      privateKey: private.key
    
    ## Trusted Certificates Settings for MinIO. Ref: https://min.io/docs/minio/linux/operations/network-encryption.html#third-party-certificate-authorities
    ## Bundle multiple trusted certificates into one secret and pass that here. Ref: https://github.com/minio/minio/tree/master/docs/tls/kubernetes#2-create-kubernetes-secret
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/certs.go

    	if err != nil {
    		return err
    	}
    
    	if ok, _ := rm.CertificateExists(handler.Name); !ok {
    		fmt.Printf("MISSING! %s\n", handler.LongName)
    		return nil
    	}
    
    	// renew using local certificate authorities.
    	// this operation can't complete in case the certificate key is not provided (external CA)
    	renewed, err := rm.RenewUsingLocalCA(handler.Name)
    	if err != nil {
    		return err
    	}
    	if !renewed {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	// including resumptions, regardless of InsecureSkipVerify or ClientAuth
    	// settings.
    	VerifyConnection func(ConnectionState) error
    
    	// RootCAs defines the set of root certificate authorities
    	// that clients use when verifying server certificates.
    	// If RootCAs is nil, TLS uses the host's root CA set.
    	RootCAs *x509.CertPool
    
    	// NextProtos is a list of supported application level protocols, in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // IdentifierAuthority returns the identifier authority of the SID.
    func (sid *SID) IdentifierAuthority() SidIdentifierAuthority {
    	return *getSidIdentifierAuthority(sid)
    }
    
    // SubAuthorityCount returns the number of sub-authorities in the SID.
    func (sid *SID) SubAuthorityCount() uint8 {
    	return *getSidSubAuthorityCount(sid)
    }
    
    // SubAuthority returns the sub-authority of the SID as specified by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.Authentication.X509.ClientCAFile, "client-ca-file", c.Authentication.X509.ClientCAFile, ""+
    		"If set, any request presenting a client certificate signed by one of the authorities in the client-ca-file "+
    		"is authenticated with an identity corresponding to the CommonName of the client certificate.")
    
    	// Authorization
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. helm-releases/minio-5.2.0.tgz

    /tls/kubernetes#2-create-kubernetes-secret certSecret: "" publicCrt: public.crt privateKey: private.key ## Trusted Certificates Settings for MinIO. Ref: https://min.io/docs/minio/linux/operations/network-encryption.html#third-party-certificate-authorities ## Bundle multiple trusted certificates into one secret and pass that here. Ref: https://github.com/minio/minio/tree/master/docs/tls/kubernetes#2-create-kubernetes-secret ## When using self-signed certificates, remember to include MinIO's own certificate...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                    CACertificateRefs contains one or more references to
                                    Kubernetes objects that contain TLS certificates of
                                    the Certificate Authorities that can be used
                                    as a trust anchor to validate the certificates presented by the client.
    
    
                                    A single CA certificate reference to a Kubernetes ConfigMap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    					"clientCAFile": {
    						SchemaProps: spec.SchemaProps{
    							Description: "clientCAFile is the path to a PEM-encoded certificate bundle. If set, any request presenting a client certificate signed by one of the authorities in the bundle is authenticated with a username corresponding to the CommonName, and groups corresponding to the Organization in the client certificate.",
    							Type:        []string{"string"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top