Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for admission (0.14 sec)

  1. pkg/apis/admissionregistration/validation/validation.go

    	utilvalidation "k8s.io/apimachinery/pkg/util/validation"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	plugincel "k8s.io/apiserver/pkg/admission/plugin/cel"
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions"
    	"k8s.io/apiserver/pkg/cel"
    	"k8s.io/apiserver/pkg/cel/environment"
    	"k8s.io/apiserver/pkg/features"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    func restfulCreateNamedResource(r rest.NamedCreater, scope handlers.RequestScope, admit admission.Interface) restful.RouteFunction {
    	return func(req *restful.Request, res *restful.Response) {
    		handlers.CreateNamedResource(r, &scope, admit)(res.ResponseWriter, req.Request)
    	}
    }
    
    func restfulCreateResource(r rest.Creater, scope handlers.RequestScope, admit admission.Interface) restful.RouteFunction {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. staging/publishing/rules.yaml

        - repository: metrics
          branch: release-1.30
        source:
          branch: release-1.30
          dirs:
          - staging/src/k8s.io/kubectl
      library: true
    - destination: pod-security-admission
      branches:
      - name: master
        dependencies:
        - repository: api
          branch: master
        - repository: apimachinery
          branch: master
        - repository: apiserver
          branch: master
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

          --service-account-jwks-uri="https://kubernetes.default.svc/openid/v1/jwks" \
          --service-account-signing-key-file="${SERVICE_ACCOUNT_KEY}" \
          --enable-admission-plugins="${ENABLE_ADMISSION_PLUGINS}" \
          --disable-admission-plugins="${DISABLE_ADMISSION_PLUGINS}" \
          --admission-control-config-file="${ADMISSION_CONTROL_CONFIG_FILE}" \
          --bind-address="${API_BIND_ADDR}" \
          --secure-port="${API_SECURE_PORT}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/manager_test.go

    		required                 int
    		reusableDevices          sets.Set[string]
    		expectedAllocatedDevices sets.Set[string]
    		expErr                   error
    	}{
    		{
    			description:              "Admission error in case no healthy devices to allocate present",
    			podUID:                   "pod1",
    			contName:                 "con1",
    			resource:                 resourceName1,
    			required:                 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Removed admission plugin PersistentVolumeLabel. Please use https://github.com/kubernetes-sigs/cloud-pv-admission-labeler instead if you need a similar functionality. ([#124505](https://github.com/kubernetes/kubernetes/pull/124505), [@jsafrane](https://github.com/jsafrane)) [SIG API Machinery, Auth and Storage]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/options_test.go

    	"--concurrent-replicaset-syncs=10",
    	"--concurrent-resource-quota-syncs=10",
    	"--concurrent-service-syncs=2",
    	"--concurrent-serviceaccount-token-syncs=10",
    	"--concurrent_rc_syncs=10",
    	"--concurrent-validating-admission-policy-status-syncs=9",
    	"--configure-cloud-routes=false",
    	"--contention-profiling=true",
    	"--controller-start-interval=2m",
    	"--controllers=foo,bar",
    	"--disable-attach-detach-reconcile-sync=true",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    	// worker to be terminated. If the pod has been force deleted and the pod worker
    	// has completed termination this method will return false, so this method should
    	// only be used to filter out pods from the desired set such as in admission.
    	//
    	// Intended for use by the kubelet config loops, but not subsystems, which should
    	// use ShouldPod*().
    	IsPodKnownTerminated(uid types.UID) bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	cacheInterval, err = c.watchCache.getAllEventsSinceLocked(requiredResourceVersion, key, opts)
    	if err != nil {
    		// To match the uncached watch implementation, once we have passed authn/authz/admission,
    		// and successfully parsed a resource version, other errors must fail with a watch event of type ERROR,
    		// rather than a directly returned error.
    		return newErrWatcher(err), nil
    	}
    
    	addedWatcher := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	objectMeta.SetAnnotations(map[string]string{"A": "2"})
    
    	// Make sure a custom transform is called, and sees the expected updatedObject and oldObject
    	// This tests the mechanism used to pass the old and new object to admission
    	calledUpdatedObject := 0
    	noopTransform := func(_ context.Context, updatedObject runtime.Object, oldObject runtime.Object) (runtime.Object, error) {
    		if !reflect.DeepEqual(storedFoo, oldObject) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top