Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 101 for admission (0.13 sec)

  1. cmd/kube-apiserver/app/options/globalflags.go

    */
    
    package options
    
    import (
    	"github.com/spf13/pflag"
    
    	"k8s.io/component-base/cli/globalflag"
    
    	// ensure libs have a chance to globally register their flags
    	_ "k8s.io/apiserver/pkg/admission"
    )
    
    // AddCustomGlobalFlags explicitly registers flags that internal packages register
    // against the global flagsets from "flag". We do this in order to prevent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 07:44:58 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. manifests/helm-profiles/stable.yaml

    # The stable profile deploys admission control to ensure that only stable resources and fields are used
    # THIS IS CURRENTLY EXPERIMENTAL AND SUBJECT TO CHANGE
    experimental:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 204 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/interface.go

    */
    
    package cel
    
    import (
    	"context"
    	"time"
    
    	"github.com/google/cel-go/cel"
    	"github.com/google/cel-go/common/types/ref"
    
    	v1 "k8s.io/api/admission/v1"
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/cel/environment"
    )
    
    type ExpressionAccessor interface {
    	GetExpression() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. hack/lib/init.sh

    KUBE_AVAILABLE_GROUP_VERSIONS="${KUBE_AVAILABLE_GROUP_VERSIONS:-\
    v1 \
    admissionregistration.k8s.io/v1 \
    admissionregistration.k8s.io/v1alpha1 \
    admissionregistration.k8s.io/v1beta1 \
    admission.k8s.io/v1 \
    admission.k8s.io/v1beta1 \
    apps/v1 \
    apps/v1beta1 \
    apps/v1beta2 \
    authentication.k8s.io/v1 \
    authentication.k8s.io/v1alpha1 \
    authentication.k8s.io/v1beta1 \
    authorization.k8s.io/v1 \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. tests/integration/helm/install_test.go

    			err := t.ConfigIstio().Eval("default", nil, sampleEnvoyFilter).Apply()
    			if err == nil {
    				t.Errorf("Did not receive an error while applying sample EnvoyFilter with stable admission policy")
    			} else {
    				msg := fmt.Sprintf(expectedErrorPrefix, "envoyfilters.networking.istio.io")
    				if !strings.Contains(err.Error(), msg) {
    					t.Errorf("Expected error %q to contain %q", err.Error(), msg)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. manifests/charts/base/files/profile-stable.yaml

    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The stable profile deploys admission control to ensure that only stable resources and fields are used
    # THIS IS CURRENTLY EXPERIMENTAL AND SUBJECT TO CHANGE
    experimental:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 423 bytes
    - Viewed (0)
  7. manifests/charts/default/files/profile-stable.yaml

    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The stable profile deploys admission control to ensure that only stable resources and fields are used
    # THIS IS CURRENTLY EXPERIMENTAL AND SUBJECT TO CHANGE
    experimental:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 423 bytes
    - Viewed (0)
  8. manifests/charts/istio-operator/files/profile-stable.yaml

    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The stable profile deploys admission control to ensure that only stable resources and fields are used
    # THIS IS CURRENTLY EXPERIMENTAL AND SUBJECT TO CHANGE
    experimental:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 423 bytes
    - Viewed (0)
  9. releasenotes/notes/release-channels-remote-cluster.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - https://github.com/istio/enhancements/issues/173
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 19:46:57 UTC 2024
    - 297 bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/apiextensions.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/server"
    	"k8s.io/apiserver/pkg/util/webhook"
    	"k8s.io/client-go/informers"
    
    	"k8s.io/kubernetes/pkg/controlplane/apiserver/options"
    )
    
    func CreateAPIExtensionsConfig(
    	kubeAPIServerConfig server.Config,
    	kubeInformers informers.SharedInformerFactory,
    	pluginInitializers []admission.PluginInitializer,
    	commandOptions options.CompletedOptions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top