如何解除更具体的群体规格?

时间:2015-04-14 06:08:40

标签: clojure pallet

这是一个托盘(https://github.com/pallet)问题。目前我尝试使用更具体的组规格进行电梯操作。 我尝试在我的组中仅提升一个特定节点(例如新节点):

(api/lift 
    {jira-group #{meissa-jira-large}} 
    :user my-user
    :compute provider
    :phase [:init])

如此处所述:http://palletops.com/pallet/api/0.8/pallet.api.html#var-lift

但不幸的是我得到了

"group-spec error: Map did not contain expected path [:group-name]."

更不明确的组规范工作正常:

(api/lift 
    jira-group
    :user my-user
    :compute provider
    :phase [:init])

任何想法,我做错了什么?

祝你好运, 迈克尔

PS:jira-group的定义如下:

(def ^:dynamic jira-group
  (api/group-spec
    "jira-group"
    :extends [(config/with-config meissa-config/config)
              init-pallet/with-init 
              hardening/with-hardening
              hosteurope/with-hosteurope
              jira/with-jira]
    )
  )

1 个答案:

答案 0 :(得分:0)

(api/lift 
    {:groups #{jira-group} :targets #{meissa-jira-large}}
    :user my-user
    :compute provider
    :phase [:init])

有效: - )