Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 259 for admission (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/initializer/initializer.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package initializer
    
    import (
    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/client-go/dynamic"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes"
    	"k8s.io/component-base/featuregate"
    )
    
    type pluginInitializer struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    "reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation. Allowed values are \"Never\" and \"IfNeeded\".\n\nNever: the webhook will not be called more than once in a single admission evaluation.\n\nIfNeeded: 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. Webhooks that specify this option *must* be idempotent,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admission/v1/doc.go

    limitations under the License.
    */
    
    // +k8s:deepcopy-gen=package
    // +k8s:protobuf-gen=package
    // +k8s:openapi-gen=false
    // +k8s:prerelease-lifecycle-gen=true
    // +groupName=admission.k8s.io
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 772 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/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 Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    "reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation. Allowed values are \"Never\" and \"IfNeeded\".\n\nNever: the webhook will not be called more than once in a single admission evaluation.\n\nIfNeeded: 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. Webhooks that specify this option *must* be idempotent,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    	tracing.SpanFromContext(ctx).AddEvent("About to check admission control")
    	var operation admission.Operation
    	var options runtime.Object
    	if hasUID, err := hasUID(currentObject); err != nil {
    		return nil, err
    	} else if !hasUID {
    		operation = admission.Create
    		currentObject = nil
    		options = patchToCreateOptions(p.options)
    	} else {
    		operation = admission.Update
    		options = patchToUpdateOptions(p.options)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. pkg/webhooks/validation/server/server.go

    package server
    
    import (
    	"bytes"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"net/http"
    
    	multierror "github.com/hashicorp/go-multierror"
    	admissionv1 "k8s.io/api/admission/v1"
    	kubeApiAdmissionv1beta1 "k8s.io/api/admission/v1beta1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    
    	"istio.io/istio/pilot/pkg/config/kube/crd"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/config/apis/webhookadmission/v1alpha1/doc.go

    limitations under the License.
    */
    
    // +k8s:deepcopy-gen=package
    // +k8s:conversion-gen=k8s.io/apiserver/pkg/admission/plugin/webhook/config/apis/webhookadmission
    // +k8s:defaulter-gen=TypeMeta
    // +groupName=apiserver.config.k8s.io
    
    // Package v1alpha1 is the v1alpha1 version of the API.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 937 bytes
    - Viewed (0)
Back to top