Skip to content

Commit 032fa8b

Browse files
committed
vm xml manufacturer, product 기본값 세팅(ablecloud, ablestack cell hypervisor)
1 parent d0975b1 commit 032fa8b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

engine/api/src/main/java/com/cloud/vm/VirtualMachineManager.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,16 +88,16 @@ public interface VirtualMachineManager extends Manager {
8888
"If provided, a custom cloud-name in cloud-init metadata", true, ConfigKey.Scope.Zone);
8989

9090
ConfigKey<String> VmMetadataManufacturer = new ConfigKey<>("Advanced", String.class,
91-
"vm.metadata.manufacturer", "Apache Software Foundation",
91+
"vm.metadata.manufacturer", "ABLECLOUD CO.LTD",
9292
"If provided, a custom manufacturer will be used in the instance metadata. When an empty" +
93-
"value is set then default manufacturer will be 'Apache Software Foundation'. " +
94-
"A custom manufacturer may break cloud-init functionality with CloudStack datasource. Please " +
93+
"value is set then default manufacturer will be 'ABLECLOUD CO.LTD'. " +
94+
"A custom manufacturer may break cloud-init functionality with ABLECLOUD datasource. Please " +
9595
"refer documentation", true, ConfigKey.Scope.Zone);
9696
ConfigKey<String> VmMetadataProductName = new ConfigKey<>("Advanced", String.class,
97-
"vm.metadata.product", "",
97+
"vm.metadata.product", "ABLESTACK CELL Hypervisor",
9898
"If provided, a custom product name will be used in the instance metadata. When an empty" +
9999
"value is set then default product name will be 'CloudStack <HYPERVISOR_NAME> Hypervisor'. " +
100-
"A custom product name may break cloud-init functionality with CloudStack datasource. Please " +
100+
"A custom product name may break cloud-init functionality with ABLECLOUD datasource. Please " +
101101
"refer documentation",
102102
true, ConfigKey.Scope.Zone);
103103

0 commit comments

Comments
 (0)