这是一个托盘(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]
)
)