0

我的热模板是这样的:

windows_instance: 
  type: OS::Nova::Server 
  properties: 
  image: {get_param: imagever } 
  flavor: m1.large 
  key_name: test 
  networks: 
    - port: { get_resource: publicport } 
  user_data_format: RAW 
  user_data: 
    str_replace: 
     template: | 
       #ps1

        testps "$srcurl" "$dest"   -Verbose

     params:
      $dest: { get_param: target_location }
      $srcurl: { get_param: url_src }
      testps: { get_file: test1.ps1 }

测试1.ps1:

param([String]$src, [String]$dest) 
Write-Host "url is:" + $src 
write-host "dest is:" + $dest

但 cloudbase-init.log 报告:executeuserdatascript C:\Program Files (x86)\Cloudbase Solutions\Cloudbase-Init\Python27\lib\site-packages\cloudbaseinit\plugins\windows\userdatautils.py:58 2015-04-27 18 :40:06.905 1788 调试 cloudbaseinit.plugins.windows.userdatautils [-] 用户数据标准错误:术语“参数”未被识别为 cmdlet、函数、脚本的名称

le,或可运行的程序。检查名称的拼写,或者是否包含路径

ded,验证路径是否正确,然后重试。

在 C:\Users\cloudbase-init\appdata\local\temp\6ea2afb5-645b-430c-91a2-a67c3201f

5db.ps1:7 字符:7

param <<<< ([String]$src, [String]$dest)
    CategoryInfo : ObjectNotFound: (param:String) [], CommandNotFou

ndException
    FullyQualifiedErrorId : CommandNotFoundException

那么使用热模板将参数传递给powershell脚本的正确方法是什么?

4

1 回答 1

0

我根据示例使其工作:

https://github.com/openstack/heat-templates/tree/master/hot/Windows

于 2015-04-28T21:19:53.103 回答