Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for approval (0.21 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    			Rules: []rbacv1.PolicyRule{
    				rbacv1helpers.NewRule("approve").Groups(certificatesGroup).Resources("signers").Names(capi.LegacyUnknownSignerName).RuleOrDie(),
    			},
    		},
    		{
    			ObjectMeta: metav1.ObjectMeta{Name: "system:certificates.k8s.io:kubelet-serving-approver"},
    			Rules: []rbacv1.PolicyRule{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  2. pkg/controller/certificates/signer/signer_test.go

    		name string
    		// parameters to be set on the generated CSR
    		commonName string
    		dnsNames   []string
    		org        []string
    		usages     []capi.KeyUsage
    		// whether the generated CSR should be marked as approved
    		approved bool
    		// whether the generated CSR should be marked as failed
    		failed bool
    		// the signerName to be set on the generated CSR
    		signerName string
    		// if true, expect an error to be returned
    		err bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 15K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    -   If all looks good, the reviewer will approve the PR.
    -   If a change is needed, the contributor is requested to make the suggested
        change.
    -   You make the change and submit it for the review again.
    -   This cycle repeats itself until the PR gets approved.
    -   Note: As a friendly reminder, we may reach out to you if the PR is awaiting
        your response for more than 2 weeks.
    
    **4. Approved**
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pkg/apis/certificates/validation/validation.go

    	if oldCSR == nil {
    		return false
    	}
    	approved := false
    	denied := false
    	for _, c := range oldCSR.Status.Conditions {
    		if c.Type == certificates.CertificateApproved {
    			approved = true
    		} else if c.Type == certificates.CertificateDenied {
    			denied = true
    		}
    	}
    	// compatibility with existing data
    	return approved && denied
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/certificates.go

    	approver := approver.NewCSRApprovingController(
    		ctx,
    		controllerContext.ClientBuilder.ClientOrDie("certificate-controller"),
    		controllerContext.InformerFactory.Certificates().V1().CertificateSigningRequests(),
    	)
    	go approver.Run(ctx, 5)
    
    	return nil, true, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. security/pkg/k8s/chiron/utils_test.go

    					log.Debugf("test signer sign %v: %v", csr.Name, err)
    				} else {
    					log.Debugf("test signer skip, not approved: %v", csr.Name)
    				}
    			}
    		}
    	}()
    	return client
    }
    
    func approved(csr *cert.CertificateSigningRequest) bool {
    	return GetCondition(csr.Status.Conditions, cert.CertificateApproved).Status == corev1.ConditionTrue
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/constants/constants.go

    	// Starting from v1.8, CSRAutoApprovalClusterRoleName is automatically created by the API server on startup
    	CSRAutoApprovalClusterRoleName = "system:certificates.k8s.io:certificatesigningrequests:nodeclient"
    	// NodeSelfCSRAutoApprovalClusterRoleName is a role defined in default 1.8 RBAC policies for automatic CSR approvals for automatically rotated node certificates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. docs/en/docs/help-fastapi.md

    * Then **comment** saying that you did that, that's how I will know you really checked it.
    
    !!! info
        Unfortunately, I can't simply trust PRs that just have several approvals.
    
        Several times it has happened that there are PRs with 3, 5 or more approvals, probably because the description is appealing, but when I check the PRs, they are actually broken, have a bug, or don't solve the problem they claim to solve. 😅
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/types.go

    	// new certificate from the certificates.k8s.io API. This requires an approver to approve the
    	// certificate signing requests.
    	RotateCertificates bool
    	// serverTLSBootstrap enables server certificate bootstrap. Instead of self
    	// signing a serving certificate, the Kubelet will request a certificate from
    	// the certificates.k8s.io API. This requires an approver to approve the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    	}
    
    	// Create/update RBAC rules that makes the bootstrap tokens able to get their CSRs approved automatically
    	if err := nodebootstraptoken.AutoApproveNodeBootstrapTokens(client); err != nil {
    		errs = append(errs, err)
    	}
    
    	// Create/update RBAC rules that makes the nodes to rotate certificates and get their CSRs approved automatically
    	if err := nodebootstraptoken.AutoApproveNodeCertificateRotation(client); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top