File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
pkg/agent/qrm-plugins/memory/dynamicpolicy Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -176,6 +176,7 @@ require (
176176)
177177
178178replace (
179+ github.com/kubewharf/katalyst-api => github.com/JulyWindK/katalyst-api v1.6.11
179180 k8s.io/api => k8s.io/api v0.24.6
180181 k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.24.6
181182 k8s.io/apimachinery => k8s.io/apimachinery v0.24.6
Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ github.com/Djarvur/go-err113 v0.0.0-20200511133814-5174e21577d5/go.mod h1:4UJr5H
6262github.com/GoogleCloudPlatform/k8s-cloud-provider v1.16.1-0.20210702024009-ea6160c1d0e3 /go.mod h1:8XasY4ymP2V/tn2OOV9ZadmiTE1FIB/h3W+yNlPttKw =
6363github.com/HdrHistogram/hdrhistogram-go v1.0.0 /go.mod h1:YzE1EgsuAz8q9lfGdlxBZo2Ma655+PfKp2mlzcAqIFw =
6464github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab /go.mod h1:3VYc5hodBMJ5+l/7J4xAyMeuM2PNuepvHlGs8yilUCA =
65+ github.com/JulyWindK/katalyst-api v1.6.11 h1:049/pgbRe/pVHbINWDSrLHS02gvxgRVgqIyler9r0e4 =
66+ github.com/JulyWindK/katalyst-api v1.6.11 /go.mod h1:BZMVGVl3EP0eCn5xsDgV41/gjYkoh43abIYxrB10e3k =
6567github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible /go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0 =
6668github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd /go.mod h1:64YHyfSL2R96J44Nlwm39UHepQbyR5q10x7iYa1ks2E =
6769github.com/Masterminds/semver v1.5.0 /go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y =
@@ -574,8 +576,6 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
574576github.com/kr/text v0.1.0 /go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI =
575577github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY =
576578github.com/kr/text v0.2.0 /go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE =
577- github.com/kubewharf/katalyst-api v0.5.11-0.20260324091059-cae1d07d9882 h1:4KYYk/mAJAOIYDW5V+43wnjnP8p3bwHXAkAcw/AbzuQ =
578- github.com/kubewharf/katalyst-api v0.5.11-0.20260324091059-cae1d07d9882 /go.mod h1:BZMVGVl3EP0eCn5xsDgV41/gjYkoh43abIYxrB10e3k =
579579github.com/kubewharf/kubelet v1.24.6-kubewharf-pre.2 h1:2KLMzgntDypiFJRX4fSQJCD+a6zIgHuhcAzd/7nAGmU =
580580github.com/kubewharf/kubelet v1.24.6-kubewharf-pre.2 /go.mod h1:MxbSZUx3wXztFneeelwWWlX7NAAStJ6expqq7gY2J3c =
581581github.com/kyoh86/exportloopref v0.1.7 /go.mod h1:h1rDl2Kdj97+Kwh4gdz3ujE7XHmH51Q0lUiZ1z4NLj8 =
Original file line number Diff line number Diff line change @@ -45,7 +45,9 @@ import (
4545 "github.com/kubewharf/katalyst-core/pkg/agent/qrm-plugins/memory/dynamicpolicy/oom"
4646 memoryreactor "github.com/kubewharf/katalyst-core/pkg/agent/qrm-plugins/memory/dynamicpolicy/reactor"
4747 "github.com/kubewharf/katalyst-core/pkg/agent/qrm-plugins/memory/dynamicpolicy/state"
48+ "github.com/kubewharf/katalyst-core/pkg/agent/qrm-plugins/memory/dynamicpolicy/userwatermark"
4849 "github.com/kubewharf/katalyst-core/pkg/agent/qrm-plugins/memory/handlers/fragmem"
50+ "github.com/kubewharf/katalyst-core/pkg/agent/qrm-plugins/memory/handlers/hostwatermark"
4951 "github.com/kubewharf/katalyst-core/pkg/agent/qrm-plugins/memory/handlers/logcache"
5052 "github.com/kubewharf/katalyst-core/pkg/agent/qrm-plugins/memory/handlers/sockmem"
5153 "github.com/kubewharf/katalyst-core/pkg/agent/qrm-plugins/util"
@@ -58,6 +60,7 @@ import (
5860 "github.com/kubewharf/katalyst-core/pkg/metaserver"
5961 "github.com/kubewharf/katalyst-core/pkg/metrics"
6062 "github.com/kubewharf/katalyst-core/pkg/util/asyncworker"
63+ "github.com/kubewharf/katalyst-core/pkg/util/cgroup/common"
6164 "github.com/kubewharf/katalyst-core/pkg/util/general"
6265 "github.com/kubewharf/katalyst-core/pkg/util/machine"
6366 "github.com/kubewharf/katalyst-core/pkg/util/metric"
You can’t perform that action at this time.
0 commit comments