Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 110 for admission (0.48 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/apimachinery/pkg/util/version"
    	plugincel "k8s.io/apiserver/pkg/admission/plugin/cel"
    	apiservercel "k8s.io/apiserver/pkg/cel"
    	"k8s.io/apiserver/pkg/cel/common"
    	"k8s.io/apiserver/pkg/cel/environment"
    	"k8s.io/apiserver/pkg/cel/library"
    	"k8s.io/apiserver/pkg/cel/openapi"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/manager.go

    // from the registered device plugins.
    func (m *ManagerImpl) Allocate(pod *v1.Pod, container *v1.Container) error {
    	// The pod is during the admission phase. We need to save the pod to avoid it
    	// being cleaned before the admission ended
    	m.setPodPendingAdmission(pod)
    
    	if _, ok := m.devicesToReuse[string(pod.UID)]; !ok {
    		m.devicesToReuse[string(pod.UID)] = make(map[string]sets.Set[string])
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. pkg/api/testing/unstructured_test.go

    			{Group: "apps", Version: "v1", Kind: "ControllerRevision"},
    			{Group: "apps", Version: "v1", Kind: "ControllerRevisionList"},
    			{Group: "admission.k8s.io", Version: "v1beta1", Kind: "AdmissionReview"},
    			{Group: "admission.k8s.io", Version: "v1", Kind: "AdmissionReview"},
    			{Group: "resource.k8s.io", Version: "v1alpha2", Kind: "ResourceClaim"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-kubeapiserver.sh

        params+=" --kubelet-certificate-authority=${CA_CERT_BUNDLE_PATH}"
      fi
    
      if [[ -n "${ADMISSION_CONTROL:-}" ]]; then
        params+=" --enable-admission-plugins=${ADMISSION_CONTROL}"
        params+=" --admission-control-config-file=/etc/srv/kubernetes/admission_controller_config.yaml"
      fi
    
      if [[ -n "${KUBE_APISERVER_REQUEST_TIMEOUT:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. pkg/registry/core/serviceaccount/storage/token.go

    	nowTime := time.Now()
    	req.CreationTimestamp = metav1.NewTime(nowTime)
    
    	// Clear status
    	req.Status = authenticationapi.TokenRequestStatus{}
    
    	// call static validation, then validating admission
    	if errs := authenticationvalidation.ValidateTokenRequest(req); len(errs) != 0 {
    		return nil, errors.NewInvalid(gvk.GroupKind(), "", errs)
    	}
    	if createValidation != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    	// If a request involves N (N>=1) round trips to the underlying
    	// stogare layer, the latency will account for the total duration
    	// from these N round trips.
    	// It does not include the time incurred in admission, or validation.
    	StorageTracker DurationTracker
    
    	// TransformTracker tracks the latency incurred in transforming the
    	// response object(s) returned from the underlying storage layer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/config.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilwaitgroup "k8s.io/apimachinery/pkg/util/waitgroup"
    	"k8s.io/apimachinery/pkg/version"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/authenticatorfactory"
    	authenticatorunion "k8s.io/apiserver/pkg/authentication/request/union"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/conversion_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package admission
    
    import (
    	"encoding/json"
    	"reflect"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/stretchr/testify/require"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    		// deleted or changed in the meantime, we'll get called again
    		return nil
    	}
    	if err != nil {
    		return err
    	}
    
    	// Now we can start deleting items.  We should use the REST API to ensure that all normal admission runs.
    	// Since we control the endpoints, we know that delete collection works. No need to delete if not established.
    	if OverlappingBuiltInResources()[schema.GroupResource{Group: crd.Spec.Group, Resource: crd.Spec.Names.Plural}] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	serializerjson "k8s.io/apimachinery/pkg/runtime/serializer/json"
    	"k8s.io/apimachinery/pkg/runtime/serializer/protobuf"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/endpoints/discovery"
    	apirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/registry/generic"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top