Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 573 for approved (0.13 sec)

  1. 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)
  2. 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)
  3. pkg/registry/certificates/certificates/strategy.go

    	// Updating /status should not modify spec
    	newCSR.Spec = oldCSR.Spec
    
    	// Specifically preserve existing Approved/Denied conditions.
    	// Adding/removing Approved/Denied conditions will cause these to fail,
    	// and the change in Approved/Denied conditions will produce a validation error
    	preserveConditionInstances(newCSR, oldCSR, certificates.CertificateApproved)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 21:41:43 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  4. 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)
  5. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. 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)
  7. pkg/apis/certificates/validation/validation_test.go

    		}},
    		oldCSR: &capi.CertificateSigningRequest{ObjectMeta: validUpdateMetaWithFinalizers, Spec: validSpec},
    		errs: []string{
    			`status.conditions: Forbidden: updates may not add a condition of type "Approved"`,
    		},
    	}, {
    		name:   "remove Approved condition",
    		newCSR: &capi.CertificateSigningRequest{ObjectMeta: validUpdateMeta, Spec: validSpec},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  8. pkg/controller/certificates/cleaner/cleaner.go

    // signing requests (CSRs). Since there are mechanisms that automatically
    // create CSRs, and mechanisms that automatically approve CSRs, in order to
    // prevent a build up of CSRs over time, it is necessary to GC them. CSRs will
    // be removed if they meet one of the following criteria: the CSR is Approved
    // with a certificate and is old enough to be past the GC issued deadline, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. src/crypto/tls/fipsonly/fipsonly.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build boringcrypto
    
    // Package fipsonly restricts all TLS configuration to FIPS-approved settings.
    //
    // The effect is triggered by importing the package anywhere in a program, as in:
    //
    //	import _ "crypto/tls/fipsonly"
    //
    // This package only exists when using Go compiled with GOEXPERIMENT=boringcrypto.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:22 UTC 2022
    - 901 bytes
    - Viewed (0)
  10. internal/fips/api.go

    // implementations compliant with FIPS 140.
    //
    // FIPS 140 [1] is a US standard for data processing that specifies
    // requirements for cryptographic modules. Software that is "FIPS 140
    // compliant" must use approved cryptographic primitives only and that
    // are implemented by a FIPS 140 certified cryptographic module.
    //
    // So, FIPS 140 requires that a certified implementation of e.g. AES
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 30 19:37:07 UTC 2022
    - 5.1K bytes
    - Viewed (0)
Back to top