Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 155 for approval (0.13 sec)

  1. 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)
  2. manifests/charts/istiod-remote/templates/clusterrole.yaml

          - "certificatesigningrequests"
          - "certificatesigningrequests/approval"
          - "certificatesigningrequests/status"
        verbs: ["update", "create", "get", "delete", "watch"]
      - apiGroups: ["certificates.k8s.io"]
        resources:
          - "signers"
        resourceNames:
    {{- range .Values.global.certSigners }}
        - {{ . | quote }}
    {{- end }}
        verbs: ["approve"]
    {{- end}}
    
      # Used by Istiod to verify the JWT tokens
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/controller/certificates/approver/sarapprove_test.go

    					t.Errorf("got: %v, expected: %v", got, expected)
    				}
    				if got, expected := a.Subresource, "approval"; got != expected {
    					t.Errorf("got: %v, expected: %v", got, expected)
    				}
    				csr := a.Object.(*capi.CertificateSigningRequest)
    				if len(csr.Status.Conditions) != 1 {
    					t.Errorf("expected CSR to have approved condition: %#v", csr)
    				}
    				c := csr.Status.Conditions[0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top