Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 79 for approval (0.14 sec)

  1. 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)
  2. 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)
  3. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

      map<string, ExtraValue> extra = 6;
    }
    
    message CertificateSigningRequestStatus {
      // Conditions applied to the request, such as approval or denial.
      // +listType=map
      // +listMapKey=type
      // +optional
      repeated CertificateSigningRequestCondition conditions = 1;
    
      // If request was approved, the controller will place the issued certificate here.
      // +listType=atomic
      // +optional
      optional bytes certificate = 2;
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      map<string, ExtraValue> extra = 6;
    }
    
    message CertificateSigningRequestStatus {
      // Conditions applied to the request, such as approval or denial.
      // +listType=map
      // +listMapKey=type
      // +optional
      repeated CertificateSigningRequestCondition conditions = 1;
    
      // If request was approved, the controller will place the issued certificate here.
      // +listType=atomic
      // +optional
      optional bytes certificate = 2;
    }
    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. pkg/kubeapiserver/options/plugins.go

    	"k8s.io/kubernetes/plugin/pkg/admission/admit"
    	"k8s.io/kubernetes/plugin/pkg/admission/alwayspullimages"
    	"k8s.io/kubernetes/plugin/pkg/admission/antiaffinity"
    	certapproval "k8s.io/kubernetes/plugin/pkg/admission/certificates/approval"
    	"k8s.io/kubernetes/plugin/pkg/admission/certificates/ctbattest"
    	certsigning "k8s.io/kubernetes/plugin/pkg/admission/certificates/signing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. 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)
  7. cmd/veeam-sos-api.go

    //     compression). This is an optional area; by default, there should be no <SystemRecommendations> section in the
    //     system.xml. Vendors can work with Veeam Product Management and the Alliances team on getting approval to integrate
    //     specific system recommendations based on current support case statistics and storage performance possibilities.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	// if the approval state hasn't changed, never fail on approval validation
    	// this is allowed so that a v1 client that is simply updating spec and not mutating this value doesn't get rejected.  Imagine a controller controlling a CRD spec.
    	if oldApprovalState != nil && *oldApprovalState == newApprovalState {
    		return nil
    	}
    
    	// in v1, we require valid approval strings
    	switch newApprovalState {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  9. api/discovery/aggregated_v2.json

                      "responseKind": {
                        "group": "",
                        "kind": "CertificateSigningRequest",
                        "version": ""
                      },
                      "subresource": "approval",
                      "verbs": [
                        "get",
                        "patch",
                        "update"
                      ]
                    },
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

      - apiGroups:
        - certificates.k8s.io
        resources:
        - certificatesigningrequests/approval
        - certificatesigningrequests/status
        verbs:
        - update
      - apiGroups:
        - certificates.k8s.io
        resourceNames:
        - kubernetes.io/kube-apiserver-client-kubelet
        resources:
        - signers
        verbs:
        - approve
      - apiGroups:
        - certificates.k8s.io
        resourceNames:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top