Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for admission (0.18 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Allowed values are "Never" and "IfNeeded".
    	//
    	// Never: the webhook will not be called more than once in a single admission evaluation.
    	//
    	// IfNeeded: the webhook will be called at least one additional time as part of the admission evaluation
    	// if the object being admitted is modified by other admission plugins after the initial webhook call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Allowed values are "Never" and "IfNeeded".
      //
      // Never: the webhook will not be called more than once in a single admission evaluation.
      //
      // IfNeeded: the webhook will be called at least one additional time as part of the admission evaluation
      // if the object being admitted is modified by other admission plugins after the initial webhook call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K 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. 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)
  9. pkg/controller/job/job_controller.go

    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("Couldn't get key for object %+v: %v", obj, err))
    		return
    	}
    
    	// TODO: Handle overlapping controllers better. Either disallow them at admission time or
    	// deterministically avoid syncing controllers that fight over pods. Currently, we only
    	// ensure that the same controller is synced for a given pod. When we periodically relist
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    				t.Logf("stale object (rv=%s), expected rv=%s", pod.ResourceVersion, updatedPod2.ResourceVersion)
    			}
    			attempts++
    			return nil, fmt.Errorf("validation or admission error")
    		}),
    		updatedPod2,
    	)
    	if err == nil {
    		t.Fatalf("expected error, got none")
    	}
    	// Implementations of the storage interface are allowed to ignore the suggestion,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top