문제

When uploading a data bag to chef client is it possible to see what has changed, or what the difference is between a local file and the server?

도움이 되었습니까?

해결책

You should use the knife diff command.

Docs: http://docs.opscode.com/knife_diff.html

다른 팁

To view what is currently on the server:

knife data bag show <name> <data bag id> --secret-file <path_to_key>

You can drop the secret-file portion if you're not encrypting your passwords. If you want to drop it out to a json file so you can do the diff yourself it's:

knife data bag show <name> <data bag id> --format json --secret-file <path_to_key> > /tmp/data_bag_contents.json
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top