Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 139 for approval (0.1 sec)

  1. staging/src/k8s.io/api/certificates/v1beta1/types_swagger_doc_generated.go

    	return map_CertificateSigningRequestSpec
    }
    
    var map_CertificateSigningRequestStatus = map[string]string{
    	"conditions":  "Conditions applied to the request, such as approval or denial.",
    	"certificate": "If request was approved, the controller will place the issued certificate here.",
    }
    
    func (CertificateSigningRequestStatus) SwaggerDoc() map[string]string {
    	return map_CertificateSigningRequestStatus
    }
    
    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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. plugin/pkg/admission/imagepolicy/admission.go

    // following format for a webhook:
    //
    //	{
    //	  "imagePolicy": {
    //	     "kubeConfigFile": "path/to/kubeconfig/for/backend",
    //	     "allowTTL": 30,           # time in s to cache approval
    //	     "denyTTL": 30,            # time in s to cache denial
    //	     "retryBackoff": 500,      # time in ms to wait between retries
    //	     "defaultAllow": true      # determines behavior if the webhook backend fails
    //	  }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 9.8K 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