Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 79 for unapproved (0.28 sec)

  1. pkg/registry/certificates/certificates/strategy_test.go

    					Username: "alice",
    					UID:      "234",
    					Groups:   nil,
    				},
    				Status: certapi.CertificateSigningRequestStatus{Conditions: []certapi.CertificateSigningRequestCondition{}},
    			},
    		},
    		"pre-approved status": {
    			ctx: genericapirequest.NewContext(),
    			obj: &certapi.CertificateSigningRequest{
    				Status: certapi.CertificateSigningRequestStatus{
    					Conditions: []certapi.CertificateSigningRequestCondition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/fipstls/tls.go

    // Package fipstls allows control over whether crypto/tls requires FIPS-approved settings.
    // This package only exists with GOEXPERIMENT=boringcrypto, but the effects are independent
    // of the use of BoringCrypto.
    package fipstls
    
    import (
    	"internal/stringslite"
    	"sync/atomic"
    )
    
    var required atomic.Bool
    
    // Force forces crypto/tls to restrict TLS configurations to FIPS-approved settings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. pkg/test/csrctrl/controllers/csr_controller.go

    // "Approved" condition and no "Denied" conditions; false otherwise.
    func isCertificateRequestApproved(csr *certv1.CertificateSigningRequest) bool {
    	approved, denied := getCertApprovalCondition(&csr.Status)
    	return approved && !denied
    }
    
    func getCertApprovalCondition(status *certv1.CertificateSigningRequestStatus) (approved bool, denied bool) {
    	for _, c := range status.Conditions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1beta1/types.go

    const (
    	// Signs certificates that will be honored as client-certs by the
    	// kube-apiserver. Never auto-approved by kube-controller-manager.
    	KubeAPIServerClientSignerName = "kubernetes.io/kube-apiserver-client"
    
    	// Signs client certificates that will be honored as client-certs by the
    	// kube-apiserver for a kubelet.
    	// May be auto-approved by kube-controller-manager.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  5. 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)
  6. CHANGELOG/CHANGELOG-1.16.md

    - Add a `Patch` method to `ScaleInterface` ([#80699](https://github.com/kubernetes/kubernetes/pull/80699), [@knight42](https://github.com/knight42))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/bootstraptoken/node/tlsbootstrap.go

    			{
    				Kind: rbac.GroupKind,
    				Name: constants.NodeBootstrapTokenAuthGroup,
    			},
    		},
    	})
    }
    
    // AutoApproveNodeBootstrapTokens creates RBAC rules in a way that makes Node Bootstrap Tokens' CSR auto-approved by the csrapprover controller
    func AutoApproveNodeBootstrapTokens(client clientset.Interface) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 10:49:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1beta1/types_swagger_doc_generated.go

    }
    
    var map_CertificateSigningRequestCondition = map[string]string{
    	"type":               "type of the condition. Known conditions include \"Approved\", \"Denied\", and \"Failed\".",
    	"status":             "Status of the condition, one of True, False, Unknown. Approved, Denied, and Failed conditions may not be \"False\" or \"Unknown\". Defaults to \"True\". If unset, should be treated as \"True\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      optional CertificateSigningRequestStatus status = 3;
    }
    
    message CertificateSigningRequestCondition {
      // type of the condition. Known conditions include "Approved", "Denied", and "Failed".
      optional string type = 1;
    
      // Status of the condition, one of True, False, Unknown.
      // Approved, Denied, and Failed conditions may not be "False" or "Unknown".
      // Defaults to "True".
      // If unset, should be treated as "True".
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/init/bootstraptoken.go

    	}
    	// Create RBAC rules that makes the bootstrap tokens able to get their CSRs approved automatically
    	if err := nodebootstraptokenphase.AutoApproveNodeBootstrapTokens(client); err != nil {
    		return errors.Wrap(err, "error auto-approving node bootstrap tokens")
    	}
    
    	// Create/update RBAC rules that makes the nodes to rotate certificates and get their CSRs approved automatically
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top