From f53fef2210d4fa10dd0f870f1f6845292ea9fab4 Mon Sep 17 00:00:00 2001 From: xuchuan19 Date: Fri, 25 Jul 2025 17:10:01 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dtest=3Dascend=20docker=20?= =?UTF-8?q?runtime=E6=97=B6=E6=B2=A1=E6=9C=89=E6=98=BE=E7=A4=BAnodeip?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ascend_deployer/playbooks/process/process_test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/ascend_deployer/playbooks/process/process_test.yml b/ascend_deployer/playbooks/process/process_test.yml index 30186c95..4f2af013 100644 --- a/ascend_deployer/playbooks/process/process_test.yml +++ b/ascend_deployer/playbooks/process/process_test.yml @@ -16,6 +16,7 @@ - ascend-device-plugin - noded - npu-exporter + - ascend-docker-runtime - name: Set global variable test_master_nodes set_fact: test_master_nodes: "{{ groups['master'][0] }}" -- Gitee From 14d2ab7c6200f0ea906756ea777e8382088010b9 Mon Sep 17 00:00:00 2001 From: xuchuan19 Date: Wed, 30 Jul 2025 16:43:09 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dtest=20ascen-docker-time?= =?UTF-8?q?=E5=92=8C=E5=8F=96=E6=B6=88nexus=E7=9A=84=E7=89=B9=E6=9D=83?= =?UTF-8?q?=E5=AE=B9=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ascend_deployer/scripts/nexus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ascend_deployer/scripts/nexus.py b/ascend_deployer/scripts/nexus.py index 5b432d46..d6c842ff 100644 --- a/ascend_deployer/scripts/nexus.py +++ b/ascend_deployer/scripts/nexus.py @@ -220,7 +220,7 @@ class OsRepository: self._run_cmd("docker network create --ipv6 --subnet 2001:0DB8::/112 ip6net_nexus") network_command_opt = "--network ip6net_nexus" self._run_cmd("docker load -i {}".format(self.nexus_image)) - start_nexus_cmd = "docker run -d --privileged --name nexus {} -p {}:8081 -v {}:/nexus-data {}".format( + start_nexus_cmd = "docker run -d --name nexus {} -p {}:8081 -v {}:/nexus-data {}".format( network_command_opt, self.nexus_run_port, self.nexus_data_dir, self.nexus_image_name ) self._run_cmd(start_nexus_cmd) -- Gitee From a4c0ab08a64ec0a5ad107bd80837a1d0419056f4 Mon Sep 17 00:00:00 2001 From: xuchuan19 Date: Wed, 30 Jul 2025 16:57:05 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dtest=20ascen-docker-time?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ascend_deployer/scripts/nexus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ascend_deployer/scripts/nexus.py b/ascend_deployer/scripts/nexus.py index d6c842ff..5b432d46 100644 --- a/ascend_deployer/scripts/nexus.py +++ b/ascend_deployer/scripts/nexus.py @@ -220,7 +220,7 @@ class OsRepository: self._run_cmd("docker network create --ipv6 --subnet 2001:0DB8::/112 ip6net_nexus") network_command_opt = "--network ip6net_nexus" self._run_cmd("docker load -i {}".format(self.nexus_image)) - start_nexus_cmd = "docker run -d --name nexus {} -p {}:8081 -v {}:/nexus-data {}".format( + start_nexus_cmd = "docker run -d --privileged --name nexus {} -p {}:8081 -v {}:/nexus-data {}".format( network_command_opt, self.nexus_run_port, self.nexus_data_dir, self.nexus_image_name ) self._run_cmd(start_nexus_cmd) -- Gitee