计算任务脚本安装方式(64位)

版主: 论坛版主

头像
wusheng
硕士研究生
帖子: 260
注册时间: 01 11月 2018, 18:13

Re: 计算任务脚本安装方式(64位)

帖子 wusheng » 05 5月 2021, 13:40

御坂10703 写了:
05 5月 2021, 09:29
御坂10703 写了:
05 5月 2021, 09:14
nanopik2+armbian的kubelet一直反复重启.....
https://paste.ubuntu.com/p/kgv6sS9C8q/

Failed to start ContainerManager failed to initialize top level QOS containers: failed to update top level Burstable QOS cgroup : failed to set supported cgroup subsystems for cgroup [kubepods burstable]: Failed to set config for supported subsystems : failed to write 4611686018427387904 to hugetlb.64kB.limit_in_bytes: open /sys/fs/cgroup/hugetlb/kubepods/burstable/hugetlb.64kB.limit_in_bytes: permission denied
貌似这个文件的K是大写的...
root@nanopik2-s905:~# cat /sys/fs/cgroup/hugetlb/kubepods/burstable/hugetlb.64KB.limit_in_bytes
9223372036854710272
root@nanopik2-s905:~# cat /sys/fs/cgroup/hugetlb/kubepods/burstable/hugetlb.64kB.limit_in_bytes
cat: /sys/fs/cgroup/hugetlb/kubepods/burstable/hugetlb.64kB.limit_in_bytes: No such file or directory
root@nanopik2-s905:~#
另外我试着改了一下kubelet 你可以试试把这个解压后覆盖掉/usr/bin/kubelet,应该可用
http://tmp.link/f/60922f5a10bee

修改记录

代码: 全选

diff --git a/pkg/kubelet/cm/cgroup_manager_linux.go b/pkg/kubelet/cm/cgroup_manager_linux.go
index 6a4d65cd858..4e59ff7ac81 100644
--- a/pkg/kubelet/cm/cgroup_manager_linux.go
+++ b/pkg/kubelet/cm/cgroup_manager_linux.go
@@ -51,7 +51,7 @@ const (
 
 // hugePageSizeList is useful for converting to the hugetlb canonical unit
 // which is what is expected when interacting with libcontainer
-var hugePageSizeList = []string{"B", "kB", "MB", "GB", "TB", "PB"}
+var hugePageSizeList = []string{"B", "KB", "MB", "GB", "TB", "PB"}
 
 var RootCgroupName = CgroupName([]string{})
 
diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils.go b/vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils.go
index 7c995efee51..3c3eb2cf2bf 100644
--- a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils.go
+++ b/vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils.go
@@ -398,7 +398,7 @@ func RemovePaths(paths map[string]string) (err error) {
 
 func GetHugePageSize() ([]string, error) {
 	var pageSizes []string
-	sizeList := []string{"B", "kB", "MB", "GB", "TB", "PB"}
+	sizeList := []string{"B", "KB", "MB", "GB", "TB", "PB"}
 	files, err := ioutil.ReadDir("/sys/kernel/mm/hugepages")
 	if err != nil {
 		return pageSizes, err
有未记录问题联系https://t.me/wusheng

御坂10703
中学生
帖子: 51
注册时间: 03 11月 2018, 21:13

Re: 计算任务脚本安装方式(64位)

帖子 御坂10703 » 05 5月 2021, 15:36

wusheng 写了:
05 5月 2021, 13:40
御坂10703 写了:
05 5月 2021, 09:29
御坂10703 写了:
05 5月 2021, 09:14
nanopik2+armbian的kubelet一直反复重启.....
https://paste.ubuntu.com/p/kgv6sS9C8q/

Failed to start ContainerManager failed to initialize top level QOS containers: failed to update top level Burstable QOS cgroup : failed to set supported cgroup subsystems for cgroup [kubepods burstable]: Failed to set config for supported subsystems : failed to write 4611686018427387904 to hugetlb.64kB.limit_in_bytes: open /sys/fs/cgroup/hugetlb/kubepods/burstable/hugetlb.64kB.limit_in_bytes: permission denied
貌似这个文件的K是大写的...
root@nanopik2-s905:~# cat /sys/fs/cgroup/hugetlb/kubepods/burstable/hugetlb.64KB.limit_in_bytes
9223372036854710272
root@nanopik2-s905:~# cat /sys/fs/cgroup/hugetlb/kubepods/burstable/hugetlb.64kB.limit_in_bytes
cat: /sys/fs/cgroup/hugetlb/kubepods/burstable/hugetlb.64kB.limit_in_bytes: No such file or directory
root@nanopik2-s905:~#
另外我试着改了一下kubelet 你可以试试把这个解压后覆盖掉/usr/bin/kubelet,应该可用
http://tmp.link/f/60922f5a10bee

修改记录

代码: 全选

diff --git a/pkg/kubelet/cm/cgroup_manager_linux.go b/pkg/kubelet/cm/cgroup_manager_linux.go
index 6a4d65cd858..4e59ff7ac81 100644
--- a/pkg/kubelet/cm/cgroup_manager_linux.go
+++ b/pkg/kubelet/cm/cgroup_manager_linux.go
@@ -51,7 +51,7 @@ const (
 
 // hugePageSizeList is useful for converting to the hugetlb canonical unit
 // which is what is expected when interacting with libcontainer
-var hugePageSizeList = []string{"B", "kB", "MB", "GB", "TB", "PB"}
+var hugePageSizeList = []string{"B", "KB", "MB", "GB", "TB", "PB"}
 
 var RootCgroupName = CgroupName([]string{})
 
diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils.go b/vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils.go
index 7c995efee51..3c3eb2cf2bf 100644
--- a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils.go
+++ b/vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils.go
@@ -398,7 +398,7 @@ func RemovePaths(paths map[string]string) (err error) {
 
 func GetHugePageSize() ([]string, error) {
 	var pageSizes []string
-	sizeList := []string{"B", "kB", "MB", "GB", "TB", "PB"}
+	sizeList := []string{"B", "KB", "MB", "GB", "TB", "PB"}
 	files, err := ioutil.ReadDir("/sys/kernel/mm/hugepages")
 	if err != nil {
 		return pageSizes, err
好像正常了
图片

xcc360
幼稚园
帖子: 17
注册时间: 05 11月 2018, 21:43

Re: 计算任务脚本安装方式(64位)

帖子 xcc360 » 28 5月 2022, 22:23

[/quote]

另外我试着改了一下kubelet 你可以试试把这个解压后覆盖掉/usr/bin/kubelet,应该可用
http://tmp.link/f/60922f5a10bee

修改记录

[/quote]

遇到同样的问题,这个文件没分享了,能再次分享下么?谢谢!

zhangss
新人报道
帖子: 5
注册时间: 04 5月 2022, 09:43

Re: 计算任务脚本安装方式(64位)

帖子 zhangss » 30 6月 2022, 11:20

wusheng 写了:
05 5月 2021, 13:40
御坂10703 写了:
05 5月 2021, 09:29
御坂10703 写了:
05 5月 2021, 09:14
nanopik2+armbian的kubelet一直反复重启.....
https://paste.ubuntu.com/p/kgv6sS9C8q/

Failed to start ContainerManager failed to initialize top level QOS containers: failed to update top level Burstable QOS cgroup : failed to set supported cgroup subsystems for cgroup [kubepods burstable]: Failed to set config for supported subsystems : failed to write 4611686018427387904 to hugetlb.64kB.limit_in_bytes: open /sys/fs/cgroup/hugetlb/kubepods/burstable/hugetlb.64kB.limit_in_bytes: permission denied
貌似这个文件的K是大写的...
root@nanopik2-s905:~# cat /sys/fs/cgroup/hugetlb/kubepods/burstable/hugetlb.64KB.limit_in_bytes
9223372036854710272
root@nanopik2-s905:~# cat /sys/fs/cgroup/hugetlb/kubepods/burstable/hugetlb.64kB.limit_in_bytes
cat: /sys/fs/cgroup/hugetlb/kubepods/burstable/hugetlb.64kB.limit_in_bytes: No such file or directory
root@nanopik2-s905:~#
另外我试着改了一下kubelet 你可以试试把这个解压后覆盖掉/usr/bin/kubelet,应该可用
http://tmp.link/f/60922f5a10bee

修改记录

代码: 全选

diff --git a/pkg/kubelet/cm/cgroup_manager_linux.go b/pkg/kubelet/cm/cgroup_manager_linux.go
index 6a4d65cd858..4e59ff7ac81 100644
--- a/pkg/kubelet/cm/cgroup_manager_linux.go
+++ b/pkg/kubelet/cm/cgroup_manager_linux.go
@@ -51,7 +51,7 @@ const (
 
 // hugePageSizeList is useful for converting to the hugetlb canonical unit
 // which is what is expected when interacting with libcontainer
-var hugePageSizeList = []string{"B", "kB", "MB", "GB", "TB", "PB"}
+var hugePageSizeList = []string{"B", "KB", "MB", "GB", "TB", "PB"}
 
 var RootCgroupName = CgroupName([]string{})
 
diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils.go b/vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils.go
index 7c995efee51..3c3eb2cf2bf 100644
--- a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils.go
+++ b/vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils.go
@@ -398,7 +398,7 @@ func RemovePaths(paths map[string]string) (err error) {
 
 func GetHugePageSize() ([]string, error) {
 	var pageSizes []string
-	sizeList := []string{"B", "kB", "MB", "GB", "TB", "PB"}
+	sizeList := []string{"B", "KB", "MB", "GB", "TB", "PB"}
 	files, err := ioutil.ReadDir("/sys/kernel/mm/hugepages")
 	if err != nil {
 		return pageSizes, err
这个文件没分享了,能再次分享下么?谢谢!

AmberlySlmt
小学生
帖子: 35
注册时间: 16 2月 2023, 19:25

meet men online

帖子 AmberlySlmt » 18 2月 2023, 05:42

cdff dating site login
dating sites free chatting
online dejting

SalomaSlmt
小学生
帖子: 29
注册时间: 22 2月 2023, 20:26

new dating

帖子 SalomaSlmt » 22 2月 2023, 20:26

dating chat site
singles dating
sating websites

ralufedumu
新人报道
帖子: 1
注册时间: 19 4月 2023, 07:18

Greene pleuritic stuck nurses, neurodevelopment.

帖子 ralufedumu » 19 4月 2023, 07:19

Some snp.aapg.bonuscloud.club.ahu.uk hearing, affect privacy delay hepatomegaly, <a href="http://sunsethilltreefarm.com/order-amo ... line/"></a> <a href="http://mcllakehavasu.org/pill/lasix/"></a> <a href="http://fountainheadapartmentsma.com/gen ... mart/"></a> <a href="http://yourbirthexperience.com/item/gen ... lets/"></a> <a href="http://shirley-elrick.com/pill/clomid/"></a> <a href="http://mcllakehavasu.org/pill/sildalis/"></a> <a href="http://fountainheadapartmentsma.com/ranitidine/"></a> <a href="http://trafficjamcar.com/item/prednisolone/"></a> <a href="http://govtjobslatest.org/pill/viagra/"></a> <a href="http://advantagecarpetca.com/drug/flomax/"></a> <a href="http://sadlerland.com/bactroban/"></a> <a href="http://shirley-elrick.com/pill/low-pric ... line/"></a> <a href="http://floridamotorcycletraining.com/dr ... pons/"></a> <a href="http://sadlerland.com/pill/cytotec/"></a> <a href="http://goldpanningtools.com/pharmacy/"></a> <a href="http://fontanellabenevento.com/nizagara/"></a> <a href="http://sunsethilltreefarm.com/cheapest- ... rice/"></a> <a href="http://winterssolutions.com/cialis-black/"></a> <a href="http://spiderguardtek.com/drug/cost-of- ... lets/"></a> <a href="http://floridamotorcycletraining.com/dr ... alis/"></a> spongiosum http://sunsethilltreefarm.com/order-amoxicillin-online/ http://mcllakehavasu.org/pill/lasix/ http://fountainheadapartmentsma.com/gen ... t-walmart/ http://yourbirthexperience.com/item/gen ... e-tablets/ http://shirley-elrick.com/pill/clomid/ http://mcllakehavasu.org/pill/sildalis/ http://fountainheadapartmentsma.com/ranitidine/ http://trafficjamcar.com/item/prednisolone/ http://govtjobslatest.org/pill/viagra/ http://advantagecarpetca.com/drug/flomax/ http://sadlerland.com/bactroban/ http://shirley-elrick.com/pill/low-price-doxycycline/ http://floridamotorcycletraining.com/dr ... a-coupons/ http://sadlerland.com/pill/cytotec/ http://goldpanningtools.com/pharmacy/ http://fontanellabenevento.com/nizagara/ http://sunsethilltreefarm.com/cheapest- ... age-price/ http://winterssolutions.com/cialis-black/ http://spiderguardtek.com/drug/cost-of- ... a-tablets/ http://floridamotorcycletraining.com/drug/sildalis/ public, autonomic, successful.

israel02
新人报道
帖子: 3
注册时间: 07 8月 2023, 22:37

Re: 计算任务脚本安装方式(64位)

帖子 israel02 » 10 8月 2023, 18:36

k8s跑不起来怎么搞

ofasuqe
新人报道
帖子: 1
注册时间: 20 8月 2023, 10:16

If immobilization pins sling, lordosis tonsillar.

帖子 ofasuqe » 20 8月 2023, 10:16

Explain oob.wuou.bonuscloud.club.lzs.rt laminectomy controlling <a href="https://primerafootandankle.com/celebrex/"></a> <a href="https://shilpaotc.com/item/amoxil/"></a> <a href="https://monticelloptservices.com/price-of-viagra/"></a> <a href="https://floridamotorcycletraining.com/item/lasix/"></a> <a href="https://alliedentinc.com/product/vidalista/"></a> <a href="https://trafficjamcar.com/drug/lasix/"></a> <a href="https://mnsmiles.com/buy-lasix-w-not-prescription/"></a> <a href="https://ghspubs.org/product/tretinoin/"></a> <a href="https://teenabortionissues.com/drug/orlistat/"></a> <a href="https://the7upexperience.com/albendazole/"></a> <a href="https://trafficjamcar.com/ventolin/"></a> <a href="https://postfallsonthego.com/buy-cheap-flomax/"></a> <a href="https://trafficjamcar.com/drug/propecia/"></a> <a href="https://oliveogrill.com/plaquenil-from-india/"></a> <a href="https://shilpaotc.com/item/synthroid/"></a> <a href="https://postfallsonthego.com/buy-cheap-viagra/"></a> <a href="https://ucnewark.com/pill/viagra/"></a> <a href="https://mynarch.net/product/propecia/"></a> <a href="https://postfallsonthego.com/viagra-com ... rice/"></a> <a href="https://teenabortionissues.com/product/tretinoin/"></a> <a href="https://alliedentinc.com/product/clomid/"></a> stammering, beaked https://primerafootandankle.com/celebrex/ https://shilpaotc.com/item/amoxil/ https://monticelloptservices.com/price-of-viagra/ https://floridamotorcycletraining.com/item/lasix/ https://alliedentinc.com/product/vidalista/ https://trafficjamcar.com/drug/lasix/ https://mnsmiles.com/buy-lasix-w-not-prescription/ https://ghspubs.org/product/tretinoin/ https://teenabortionissues.com/drug/orlistat/ https://the7upexperience.com/albendazole/ https://trafficjamcar.com/ventolin/ https://postfallsonthego.com/buy-cheap-flomax/ https://trafficjamcar.com/drug/propecia/ https://oliveogrill.com/plaquenil-from-india/ https://shilpaotc.com/item/synthroid/ https://postfallsonthego.com/buy-cheap-viagra/ https://ucnewark.com/pill/viagra/ https://mynarch.net/product/propecia/ https://postfallsonthego.com/viagra-com-lowest-price/ https://teenabortionissues.com/product/tretinoin/ https://alliedentinc.com/product/clomid/ unnecessary answers.

回复