Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for nodeResources (0.28 sec)

  1. pkg/kubelet/cm/dra/plugin/noderesources.go

    Oksana Baranova <******@****.***> 1716840773 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pkg/scheduler/eventhandlers.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/nodename"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/nodeports"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/noderesources"
    	"k8s.io/kubernetes/pkg/scheduler/internal/queue"
    	"k8s.io/kubernetes/pkg/scheduler/profile"
    )
    
    func (sched *Scheduler) onStorageClassAdd(obj interface{}) {
    	logger := sched.logger
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. pkg/scheduler/scheduler.go

    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/parallelize"
    	frameworkplugins "k8s.io/kubernetes/pkg/scheduler/framework/plugins"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/noderesources"
    	frameworkruntime "k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    	internalcache "k8s.io/kubernetes/pkg/scheduler/internal/cache"
    	cachedebugger "k8s.io/kubernetes/pkg/scheduler/internal/cache/debugger"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. pkg/scheduler/eventhandlers_test.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/nodename"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/nodeports"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/noderesources"
    	"k8s.io/kubernetes/pkg/scheduler/internal/cache"
    	"k8s.io/kubernetes/pkg/scheduler/internal/queue"
    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    )
    
    func TestNodeAllocatableChanged(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package noderesources
    
    import (
    	"context"
    	"reflect"
    	"testing"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/klog/v2/ktesting"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package noderesources
    
    import (
    	"context"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/klog/v2/ktesting"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package noderesources
    
    import (
    	"context"
    	"fmt"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/stretchr/testify/assert"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package noderesources
    
    import (
    	"context"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/klog/v2/ktesting"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/types.go

    	// if the rejection from them could be resolved by updating unscheduled Pods themselves.
    	// Example: Pods that require excessive resources may be rejected by the noderesources plugin,
    	// if this unscheduled pod is updated to require fewer resources,
    	// the previous rejection from noderesources plugin can be resolved.
    	// this plugin would implement QueueingHint for Pod/Update event
    	// that returns Queue when such label changes are made in unscheduled Pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/noderesources/fit.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package noderesources
    
    import (
    	"context"
    	"fmt"
    	"strings"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/klog/v2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top