Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 255 for csr1 (1.52 sec)

  1. pkg/printers/internalversion/printers_test.go

    		},
    		// Basic CSR with Spec and Status=Denied.
    		{
    			csr: certificates.CertificateSigningRequest{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "csr3",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Spec: certificates.CertificateSigningRequestSpec{
    					Username: "CSR Requestor",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. hack/testdata/auth/testuser.csr

    # this is a test-only certificate request that is used in integration
    # tests to test certificate based auth.
    # generated with 'openssl req -out testuser.csr -key testuser.key -new -sha256'
    # then skipping all the options except for setting CN to testuser
    -----BEGIN CERTIFICATE REQUEST-----
    MIICWDCCAUACAQAwEzERMA8GA1UEAwwIdGVzdHVzZXIwggEiMA0GCSqGSIb3DQEB
    AQUAA4IBDwAwggEKAoIBAQC0MWVzF3QC92dQSzA/tBla3okdNkSNyd+SbnzFNxIG
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 21:54:32 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  3. releasenotes/notes/ecc-csr.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
    - 23226
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 162 bytes
    - Viewed (0)
  4. pkg/controller/certificates/certificate_controller.go

    	defer func() {
    		logger.V(4).Info("Finished syncing certificate request", "csr", key, "elapsedTime", time.Since(startTime))
    	}()
    	csr, err := cc.csrLister.Get(key)
    	if errors.IsNotFound(err) {
    		logger.V(3).Info("csr has been deleted", "csr", key)
    		return nil
    	}
    	if err != nil {
    		return err
    	}
    
    	if len(csr.Status.Certificate) > 0 {
    		// no need to do anything because it already has a cert
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. pkg/registry/certificates/certificates/strategy.go

    	csr.Spec.Extra = nil
    	// Inject user.Info from request context
    	if user, ok := genericapirequest.UserFrom(ctx); ok {
    		csr.Spec.Username = user.GetName()
    		csr.Spec.UID = user.GetUID()
    		csr.Spec.Groups = user.GetGroups()
    		if extra := user.GetExtra(); len(extra) > 0 {
    			csr.Spec.Extra = map[string]certificates.ExtraValue{}
    			for k, v := range extra {
    				csr.Spec.Extra[k] = v
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 21:41:43 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  6. releasenotes/notes/limit-csr-clusterrole.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Added** check to limit the clusterrole for k8s CSR permissions for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 19:34:22 UTC 2023
    - 272 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

              [(ValueEquals<"0.0"> $cst),
               (ValueEquals<"0.0"> $cst1),
               (ValueEquals<"0.0"> $cst2),
               (SameValue $rem, $rem1),
               (SameValue $rem, $rem2),
               (SameValue $rem, $rem3),
               (SameTypeOrDefaultCompare $compare_type, $cst),
               (SameTypeOrDefaultCompare $compare_type1, $cst1)]>;
    
    // Converts a dag of HLOs representing floor_mod with a constant to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. pkg/controller/certificates/approver/sarapprove_test.go

    				if got, expected := a.Subresource, "approval"; got != expected {
    					t.Errorf("got: %v, expected: %v", got, expected)
    				}
    				csr := a.Object.(*capi.CertificateSigningRequest)
    				if len(csr.Status.Conditions) != 1 {
    					t.Errorf("expected CSR to have approved condition: %#v", csr)
    				}
    				c := csr.Status.Conditions[0]
    				if got, expected := c.Type, capi.CertificateApproved; got != expected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  9. security/pkg/server/ca/monitoring.go

    		"citadel_server_csr_count",
    		"The number of CSRs received by Citadel server.",
    	)
    
    	authnErrorCounts = monitoring.NewSum(
    		"citadel_server_authentication_failure_count",
    		"The number of authentication failures.",
    	)
    
    	csrParsingErrorCounts = monitoring.NewSum(
    		"citadel_server_csr_parsing_err_count",
    		"The number of errors occurred when parsing the CSR.",
    	)
    
    	idExtractionErrorCounts = monitoring.NewSum(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:09 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/bootstraptoken/node/tlsbootstrap.go

    )
    
    // AllowBootstrapTokensToPostCSRs creates RBAC rules in a way the makes Node Bootstrap Tokens able to post CSRs
    func AllowBootstrapTokensToPostCSRs(client clientset.Interface) error {
    	fmt.Println("[bootstrap-token] Configured RBAC rules to allow Node Bootstrap tokens to post CSRs in order for nodes to get long term certificate credentials")
    
    	return apiclient.CreateOrUpdateClusterRoleBinding(client, &rbac.ClusterRoleBinding{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 10:49:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top