Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for approval (0.19 sec)

  1. pkg/controller/certificates/certificate_controller_test.go

    	actions := client.Actions()
    	if len(actions) != 1 {
    		t.Errorf("expected 1 actions")
    	}
    	if a := actions[0]; !a.Matches("update", "certificatesigningrequests") ||
    		a.GetSubresource() != "approval" {
    		t.Errorf("unexpected action: %#v", a)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/go/build/vendor_test.go

    		if !found {
    			_, pkg, found = strings.Cut(fullPkg, "/vendor/")
    			if !found {
    				continue
    			}
    		}
    		if !isAllowed(pkg) {
    			t.Errorf(`
    		Package %q should not be vendored into this repo.
    		After getting approval from the Go team, add it to allowedPackagePrefixes
    		in %s.`,
    				pkg, thisFile)
    		}
    	}
    }
    
    func isAllowed(pkg string) bool {
    	for _, pre := range allowedPackagePrefixes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 16:29:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/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.7K bytes
    - Viewed (0)
  4. pkg/registry/certificates/rest/storage_certificates.go

    		if err != nil {
    			return nil, err
    		}
    		storage[resource] = csrStorage
    		storage[resource+"/status"] = csrStatusStorage
    		storage[resource+"/approval"] = csrApprovalStorage
    	}
    
    	return storage, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. plugin/pkg/admission/certificates/signing/admission.go

    		return fmt.Errorf("%s requires an authorizer", PluginName)
    	}
    	return nil
    }
    
    var _ admission.ValidationInterface = &Plugin{}
    var _ genericadmissioninit.WantsAuthorizer = &Plugin{}
    
    // NewPlugin creates a new CSR approval admission plugin
    func NewPlugin() *Plugin {
    	return &Plugin{
    		Handler: admission.NewHandler(admission.Update),
    	}
    }
    
    var csrGroupResource = api.Resource("certificatesigningrequests")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 28 16:20:40 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top