Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 385 for admission (0.32 sec)

  1. staging/src/k8s.io/api/testdata/README.md

    ```sh
    cd staging/src/k8s.io/api/testdata/v1.14.0/
    diff -u admission.k8s.io.v1beta1.AdmissionReview.json admission.k8s.io.v1beta1.AdmissionReview.after_roundtrip.json
    diff -u admission.k8s.io.v1beta1.AdmissionReview.yaml admission.k8s.io.v1beta1.AdmissionReview.after_roundtrip.yaml
    ```
    
    > ```diff
    > --- admission.k8s.io.v1beta1.AdmissionReview.json	2019-06-02 20:21:03.000000000 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	FeatureGate featuregate.FeatureGate
    	// ExtraAdmissionInitializers is called once after all ApplyTo from the options above, to pass the returned
    	// admission plugin initializers to Admission.ApplyTo.
    	ExtraAdmissionInitializers func(c *server.RecommendedConfig) ([]admission.PluginInitializer, error)
    	Admission                  *AdmissionOptions
    	// API Server Egress Selector is used to control outbound traffic from the API Server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admission/v1/generated.proto

      // MutatingAdmissionWebhook and ValidatingAdmissionWebhook admission controller will prefix the keys with
      // admission webhook name (e.g. imagepolicy.example.com/error=image-blacklisted). AuditAnnotations will be provided by
      // the admission webhook to add additional context to the audit log for this request.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admission/v1beta1/generated.proto

      // MutatingAdmissionWebhook and ValidatingAdmissionWebhook admission controller will prefix the keys with
      // admission webhook name (e.g. imagepolicy.example.com/error=image-blacklisted). AuditAnnotations will be provided by
      // the admission webhook to add additional context to the audit log for this request.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/config.go

    		cwd, err := os.Getwd()
    		if err != nil {
    			return "", err
    		}
    		base = cwd
    	}
    	return filepath.Join(base, path), nil
    }
    
    // ReadAdmissionConfiguration reads the admission configuration at the specified path.
    // It returns the loaded admission configuration if the input file aligns with the required syntax.
    // If it does not align with the provided syntax, it returns a default configuration for the enumerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/create.go

    	return createHandler(r, scope, admission, true)
    }
    
    // CreateResource returns a function that will handle a resource creation.
    func CreateResource(r rest.Creater, scope *RequestScope, admission admission.Interface) http.HandlerFunc {
    	return createHandler(&namedCreaterAdapter{r}, scope, admission, false)
    }
    
    type namedCreaterAdapter struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/admission/initializer_test.go

    limitations under the License.
    */
    
    package admission
    
    import (
    	"context"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/admission"
    	quota "k8s.io/apiserver/pkg/quota/v1"
    )
    
    type doNothingAdmission struct{}
    
    func (doNothingAdmission) Admit(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) error {
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/initializer.go

    limitations under the License.
    */
    
    package validating
    
    import (
    	"context"
    
    	"k8s.io/apiserver/pkg/admission"
    )
    
    type CELPolicyEvaluator interface {
    	admission.InitializationValidator
    
    	Validate(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) error
    	HasSynced() bool
    	Run(stopCh <-chan struct{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 861 bytes
    - Viewed (0)
  9. cluster/gce/addons/cloud-pvl-admission/mutating-webhook-configuration.yaml

    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      name: "cloud-pvl-admission.k8s.io"
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
        k8s-app: cloud-pvl-admission
    webhooks:
    - name: "cloud-pvl-admission.k8s.io"
      rules:
      - apiGroups:   [""]
        apiVersions: ["v1"]
        operations:  ["CREATE"]
        resources:   ["persistentvolumes"]
        scope:       "*"
      clientConfig:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 23:15:32 UTC 2023
    - 699 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching.go

    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/client-go/kubernetes"
    	listersv1 "k8s.io/client-go/listers/core/v1"
    
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/object"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules"
    )
    
    type MatchCriteria interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top