Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 155 for approval (0.14 sec)

  1. staging/README.md

    1. Send an email to the SIG Architecture [mailing
       list](https://groups.google.com/forum/#!forum/kubernetes-sig-architecture)
       and the mailing list of the SIG which would own the repo requesting approval
       for creating the staging repository.
    
    2. Once approval has been granted, create the new staging repository.
    
    3. Update
       [`import-restrictions.yaml`](/staging/publishing/import-restrictions.yaml)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top