Развертывание ovf в среде VMWare со свойством guestinfo

Развертывание ovf в среде VMWare со свойством guestinfo

Я пытаюсь развернуть виртуальную машину с использованием конфигурации ovf, и моя цель — передать ключ-значение, предоставленное пользователем в среде OVF, виртуальной машине с использованием vmware guestinfo. Ниже приведены настройки/атрибуты, которые я добавил в свой файл ovf

<ProductSection ovf:required="false">
            <Info>Virtual Appliance</Info>
            <Property ovf:userConfigurable="true" ovf:type="string"
                      ovf:key="guestinfo.hello" ovf:value="">
              <Label>hello</Label>
              <Description>enter some string</Description>
            </Property>
</ProductSection>
....
<VirtualHardwareSection ovf:transport="com.vmware.guestInfo">
....

После развертывания vm я могу проверить свойство в среде OVF в разделе VM vApp Options. Вот что я вижу

<?xml version="1.0" encoding="UTF-8"?>
<Environment
 xmlns="http://schemas.dmtf.org/ovf/environment/1"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:oe="http://schemas.dmtf.org/ovf/environment/1"
 xmlns:ve="http://www.vmware.com/schema/ovfenv"
 oe:id=""
 ve:vCenterId="vm-11260">
<PlatformSection>
  <Kind>VMware ESXi</Kind>
  <Version>6.0.0</Version>
  <Vendor>VMware, Inc.</Vendor>
  <Locale>en</Locale>
</PlatformSection>
<PropertySection>
     <Property oe:key="guestinfo.hello" oe:value="world"/>
</PropertySection>
<ve:EthernetAdapterSection>
  <ve:Adapter ve:mac="00:50:56:b2:d2:8a" ve:network="VLAN1804- 
10.22.162.0/25" ve:unitNumber="7"/>
  <ve:Adapter ve:mac="00:50:56:b2:83:ea" ve:network="VLAN1804- 
10.22.162.0/25" ve:unitNumber="8"/>
</ve:EthernetAdapterSection>
</Environment>

Наконец, когда я вхожу в систему и пытаюсь получить свойство guestinfo с помощью vmtoolsd cmd

vmtoolsd --cmd "info-get hello"

я осознаю

«Значение не найдено»

Мне нужно помочь отладить эту проблему. Не совсем уверен, что я что-то упускаю в своей конфигурации OVF. Спасибо заранее. Я ценю вашу помощь!

решение1

Я думаю, что нет прямого способа получить ключ, но я могу запустить его vmtoolsd --cmd "info-get guestinfo.ovfenv"на своем компьютере, и вывод такой:

<?xml version="1.0" encoding="UTF-8"?>
<Environment
 xmlns="http://schemas.dmtf.org/ovf/environment/1"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:oe="http://schemas.dmtf.org/ovf/environment/1"
 xmlns:ve="http://www.vmware.com/schema/ovfenv"
 oe:id=""
 ve:vCenterId="vm-xxxx">
<PlatformSection>
  <Kind>VMware ESXi</Kind>
  <Version>6.0.0</Version>
  <Vendor>VMware, Inc.</Vendor>
  <Locale>en</Locale>
</PlatformSection>
<PropertySection>
     <Property oe:key="guestinfo.hello" oe:value="world"/>
</PropertySection>
<ve:EthernetAdapterSection>
  <ve:Adapter ve:mac="00:50:56:b2:d2:8a" ve:network="VLAN1804- 
xxx.xxx.xxx.0/25" ve:unitNumber="7"/>
  <ve:Adapter ve:mac="00:50:56:b2:83:ea" ve:network="VLAN1804- 
xxx.xxx.xxx.0/25" ve:unitNumber="8"/>
</ve:EthernetAdapterSection>
</Environment>

что я вижу в среде OVF для vm в vcenter. Предполагая, что это может быть одним из способов получить ключ-значение из vm с помощью vmtools

Связанный контент