Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for approval (0.13 sec)

  1. OWNERS_ALIASES

    aliases:
      # Note: sig-architecture-approvers has approval on root files (including go.mod/go.sum) until https://github.com/kubernetes/test-infra/pull/21398 is resolved.
      # People with approve rights via this alias should defer dependency update PRs to dep-approvers.
      sig-architecture-approvers:
        - dims
        - derekwaynecarr
        - johnbelamaric
      # sig-auth subproject aliases
      sig-auth-audit-approvers:
        - sttts
        - tallclair
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1/types.go

    type CertificateSigningRequestCondition struct {
    	// type of the condition. Known conditions are "Approved", "Denied", and "Failed".
    	//
    	// An "Approved" condition is added via the /approval subresource,
    	// indicating the request was approved and should be issued by the signer.
    	//
    	// A "Denied" condition is added via the /approval subresource,
    	// indicating the request was denied and should not be issued by the signer.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    After approval, your plugin will be available on the Gradle Plugin Portal for others to discover and use.
    
    [[consume]]
    == Consume the published plugin
    
    Once you successfully publish a plugin, it won't immediately appear on the Portal.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    	"type":               "type of the condition. Known conditions are \"Approved\", \"Denied\", and \"Failed\".\n\nAn \"Approved\" condition is added via the /approval subresource, indicating the request was approved and should be issued by the signer.\n\nA \"Denied\" condition is added via the /approval subresource, indicating the request was denied and should not be issued by the signer.\n\nA \"Failed\" condition is added via the /status...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1/generated.proto

    message CertificateSigningRequestCondition {
      // type of the condition. Known conditions are "Approved", "Denied", and "Failed".
      //
      // An "Approved" condition is added via the /approval subresource,
      // indicating the request was approved and should be issued by the signer.
      //
      // A "Denied" condition is added via the /approval subresource,
      // indicating the request was denied and should not be issued by the signer.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    				t.Helper()
    				if len(errors) == 0 {
    					t.Fatal("expected errors, got none")
    				}
    				if e, a := `metadata.annotations[api-approved.kubernetes.io]: Invalid value: "invalid": protected groups must have approval annotation "api-approved.kubernetes.io" with either a URL or a reason starting with "unapproved", see https://github.com/kubernetes/enhancements/pull/1111`, errors.ToAggregate().Error(); e != a {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/certificates/v1/generated.proto

    message CertificateSigningRequestCondition {
      // type of the condition. Known conditions are "Approved", "Denied", and "Failed".
      //
      // An "Approved" condition is added via the /approval subresource,
      // indicating the request was approved and should be issued by the signer.
      //
      // A "Denied" condition is added via the /approval subresource,
      // indicating the request was denied and should not be issued by the signer.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1beta1/types.go

    }
    
    type CertificateSigningRequestStatus struct {
    	// Conditions applied to the request, such as approval or denial.
    	// +listType=map
    	// +listMapKey=type
    	// +optional
    	Conditions []CertificateSigningRequestCondition `json:"conditions,omitempty" protobuf:"bytes,1,rep,name=conditions"`
    
    	// If request was approved, the controller will place the issued certificate here.
    	// +listType=atomic
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  10. pkg/apis/certificates/types.go

    	CertificateApproved RequestConditionType = "Approved"
    	CertificateDenied   RequestConditionType = "Denied"
    	CertificateFailed   RequestConditionType = "Failed"
    )
    
    type CertificateSigningRequestCondition struct {
    	// type of the condition. Known conditions include "Approved", "Denied", and "Failed".
    	Type RequestConditionType
    	// Status of the condition, one of True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top