Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NamespaceAutoProvision (0.3 sec)

  1. plugin/pkg/admission/namespace/autoprovision/admission.go

    	"k8s.io/client-go/kubernetes"
    	corev1listers "k8s.io/client-go/listers/core/v1"
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    // PluginName indicates name of admission plugin.
    const PluginName = "NamespaceAutoProvision"
    
    // Register registers a plugin
    func Register(plugins *admission.Plugins) {
    	plugins.Register(PluginName, func(config io.Reader) (admission.Interface, error) {
    		return NewProvision(), nil
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 17:30:21 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/options/plugins.go

    )
    
    // AllOrderedPlugins is the list of all the plugins in order.
    var AllOrderedPlugins = []string{
    	admit.PluginName,                        // AlwaysAdmit
    	autoprovision.PluginName,                // NamespaceAutoProvision
    	lifecycle.PluginName,                    // NamespaceLifecycle
    	exists.PluginName,                       // NamespaceExists
    	antiaffinity.PluginName,                 // LimitPodHardAntiAffinityTopology
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.4.md

    - If you upgrade your apiserver to 1.4.x but leave your kubelets at 1.3.x, they will not report init container status, but init containers will work properly.  Upgrading kubelets to 1.4.x fixes this.
    - The NamespaceExists and NamespaceAutoProvision admission controllers have been removed, use the NamespaceLifecycle admission controller instead (#31250, @derekwaynecarr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.5.md

        * NOTE: anonymous access is enabled by default. If you rely on authentication alone to authorize access, change to use an authorization mode other than AlwaysAllow, or or set '--anonymous-auth=false'.
    * The NamespaceExists and NamespaceAutoProvision admission controllers have been removed. ([#31250](https://github.com/kubernetes/kubernetes/pull/31250), [@derekwaynecarr](https://github.com/derekwaynecarr))
        * All cluster operators should use NamespaceLifecycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top