cloudfoundry-incubator / spiff

declarative BOSH deployment manifest builder
Apache License 2.0
64 stars 44 forks source link

error generating manifest: unresolved nodes #57

Closed MyGoul closed 9 years ago

MyGoul commented 9 years ago

Hi all,

I'm trying to create my cf-deployment.yml to deploy CF via bosh. When i launch the command :

./generate_deployment_manifest openstack ../cf-stub.yml > cf-deployment.yml

I have the following error :

2015/04/29 05:31:53 error generating manifest: unresolved nodes: (( merge )) in ./templates/cf-properties.yml properties.uaa.clients.gorouter.secret (properties.uaa.clients.gorouter.secret)

whereas i dont't find any mention of the properties.uaa.clients.gorouter.secret attribute neither in my ../cf-stub.yml, nor in my cf-deployment.yml.

Thanks in advance for your support. Sylvain

cf-gitbot commented 9 years ago

We have created an issue in Pivotal Tracker to manage this. You can view the current status of your issue at: https://www.pivotaltracker.com/story/show/93526592.

emalm commented 9 years ago

Hi, @MyGoul,

The spiff output is telling you that the cf-properties.yml template has an unresolved node, namely this one. The generate_deployment_manifest script merges several templates from cf-release together with the stub you provide to generate a complete deployment manifest for CF, so you'll need to supply a value for that node in your own cf-stub.yml file.

Thanks, Eric, for the CF Runtime Diego team

MyGoul commented 9 years ago

Sounds simple and it works :)

Thank you for your support.

emalm commented 9 years ago

Glad to hear it! Closing this out.

Thanks again, Eric