Michael

@newb1er

Joined on Oct 28, 2020

  • Lab1: VETH in different subnet image Create Topology ip netns add left ip netns add right ip link add eth-l type veth peer eth-r ip link set eth-l netns left
     Like  Bookmark
  • 今天照著 OpenStack Tacker 他們官方的教學文件實作一次,在 instantiate VNF 的時候發現不論怎麼嘗試都會進到 ERROR State,Tacker cli 跟 Tacker Horizon 又沒有詳細的細節 = =。 於是乎,花了幾個小時的時間終於在茫茫大海裡找到了這個 Log, ERROR oslo_messaging.rpc.server tacker.common.exceptions.VnfInstantiationFailed: Vnf instantiation failed for vnf ebd84c1e-83f2-41e7-bb0b-c0b0628ef07e, error: ERROR: Property error: : resources.VDU1.properties.image: : Error validating value '': No images matching {'name': ''}. No images matching {'name': ''} !? 怎麼回事?照著做居然會找不到 VDU 的 image。 再花幾個小時終於撈到了解析 TOSCA template 的 library,發現在這行解析 sw_image_data 的時候居然沒有拿 template 裡面的值。 再次在茫茫大海中找資料,找到了某位日本網友分享的內容,他發現 tosca.nodes.nfv.Vdu.Compute 底下要加上 Artifacts 才能讓 heat 找到 image 。
     Like  Bookmark