Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for PostBind (0.27 sec)

  1. pkg/scheduler/metrics/metrics.go

    	Score                       = "Score"
    	ScoreExtensionNormalize     = "ScoreExtensionNormalize"
    	PreBind                     = "PreBind"
    	Bind                        = "Bind"
    	PostBind                    = "PostBind"
    	Reserve                     = "Reserve"
    	Unreserve                   = "Unreserve"
    	Permit                      = "Permit"
    )
    
    // All the histogram based metrics have 1ms as size for the smallest bucket.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/validation/validation.go

    			"reserve":    profile.Plugins.Reserve,
    			"permit":     profile.Plugins.Permit,
    			"preBind":    profile.Plugins.PreBind,
    			"bind":       profile.Plugins.Bind,
    			"postBind":   profile.Plugins.PostBind,
    		}
    
    		pluginsPath := path.Child("plugins")
    		for s, p := range stagesToPluginSet {
    			errs = append(errs, validatePluginSetForInvalidPlugins(
    				pluginsPath.Child(s), apiVersion, p)...)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/types.go

    	// The scheduler call these plugins in order. Scheduler skips the rest of these plugins as soon as one returns success.
    	Bind PluginSet
    
    	// PostBind is a list of plugins that should be invoked after a pod is successfully bound.
    	PostBind PluginSet
    
    	// MultiPoint is a simplified config field for enabling plugins for all valid extension points
    	MultiPoint PluginSet
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/interface.go

    	PreBind(ctx context.Context, state *CycleState, p *v1.Pod, nodeName string) *Status
    }
    
    // PostBindPlugin is an interface that must be implemented by "PostBind" plugins.
    // These plugins are called after a pod is successfully bound to a node.
    type PostBindPlugin interface {
    	Plugin
    	// PostBind is called after a pod is successfully bound. These plugins are
    	// informational. A common application of this extension point is for cleaning
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := Convert_v1_PluginSet_To_config_PluginSet(&in.Bind, &out.Bind, s); err != nil {
    		return err
    	}
    	if err := Convert_v1_PluginSet_To_config_PluginSet(&in.PostBind, &out.PostBind, s); err != nil {
    		return err
    	}
    	if err := Convert_v1_PluginSet_To_config_PluginSet(&in.MultiPoint, &out.MultiPoint, s); err != nil {
    		return err
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/zz_generated.deepcopy.go

    	in.Score.DeepCopyInto(&out.Score)
    	in.Reserve.DeepCopyInto(&out.Reserve)
    	in.Permit.DeepCopyInto(&out.Permit)
    	in.PreBind.DeepCopyInto(&out.PreBind)
    	in.Bind.DeepCopyInto(&out.Bind)
    	in.PostBind.DeepCopyInto(&out.PostBind)
    	in.MultiPoint.DeepCopyInto(&out.MultiPoint)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Plugins.
    func (in *Plugins) DeepCopy() *Plugins {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 22:02:57 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one.go

    		metrics.PodSchedulingSLIDuration.WithLabelValues(getAttemptsLabel(assumedPodInfo)).Observe(metrics.SinceInSeconds(*assumedPodInfo.InitialAttemptTimestamp))
    	}
    	// Run "postbind" plugins.
    	fwk.RunPostBindPlugins(ctx, state, assumedPod, scheduleResult.SuggestedHost)
    
    	// At the end of a successful binding cycle, move up Pods if needed.
    	if len(podsToActivate.Map) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top