Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for Authorities (0.76 sec)

  1. cmd/kubeadm/app/cmd/phases/init/showjoincommand.go

    		"kubeadm init phase upload-certs --upload-certs" to reload certs afterward.
    
    		{{else -}}
    		You can now join any number of control-plane nodes by copying certificate authorities
    		and service account keys on each node and then running the following as root:
    
    		  {{.joinControlPlaneCommand}}
    
    		{{end}}{{end}}Then you can join any number of worker nodes by running the following on each as root:
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SID.java

            return toByteArray(this);
        }
    
    
        /**
         * 
         * @return whether the SID is empty (no sub-authorities)
         */
        public boolean isEmpty () {
            return this.sub_authority_count == 0;
        }
    
    
        /**
         * 
         * @return whether the SID is blank (all sub-authorities zero)
         */
        public boolean isBlank () {
            boolean blank = true;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    		"List of client certificate common names to allow to provide usernames in headers "+
    		"specified by --requestheader-username-headers. If empty, any client certificate validated "+
    		"by the authorities in --requestheader-client-ca-file is allowed.")
    }
    
    // ToAuthenticationRequestHeaderConfig returns a RequestHeaderConfig config object for these options
    // if necessary, nil otherwise.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    				normal args related to this stage:
    					--client-ca-file string   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.
    
    					(retrievable from "kube-apiserver --help" command)
    					(suggested by @deads2k)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. 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)
  6. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

     * chain. The chain terminates in a self-signed "root" certificate. Signing certificates in the
     * middle of the chain are called "intermediates". Organizations that offer certificate signing are
     * called certificate authorities (CAs).
     *
     * Browsers and other HTTP clients need a set of trusted root certificates to authenticate their
     * peers. Sets of root certificates are managed by either the HTTP client (like Firefox), or the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                builder.put(Constants.FESEN_PASSWORD, password);
            }
            final String authorities = fessConfig.getFesenHttpSslCertificateAuthorities();
            if (StringUtil.isNotBlank(authorities)) {
                builder.put("http.ssl.certificate_authorities", authorities);
            }
            return new HttpClient(builder.build(), null);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/kubeapiserver/options/authentication.go

    		fs.StringVar(&o.OIDC.CAFile, oidcCAFileFlag, o.OIDC.CAFile, ""+
    			"If set, the OpenID server's certificate will be verified by one of the authorities "+
    			"in the oidc-ca-file, otherwise the host's root CA set will be used.")
    
    		fs.StringVar(&o.OIDC.UsernameClaim, oidcUsernameClaimFlag, "sub", ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top