1

ホストに変更をすぐにもたらすコマンドを puppet master で実行する方法はありますか?

crontab を使用してさまざまなスクリプトを使用してタスクをスケジュールしましたが、指定するたびに変更されますが、パペットマスターとブームでコマンドを押すだけの方法があるかどうかを学習しようとしています! ホスト(クライアント)に変更をすぐにもたらします。5 つのホストの「cofig.properties」ファイルでパスワードを変更したいとします。スケジューリングなしでマスターからそれを行う最良の方法は何でしょうか?

4

2 に答える 2

1

I've solved that problem in my infrastructure by using Puppet for Configuration Management and SaltStack for orchestration.

I have the Puppet Agent apply a SaltStack module to automatically configure each node as a minion of my Salt Master (which is also my Puppet Master), then I just SSH into my master server and tell SaltStack to run the Puppet Agent on nodes that match my criteria.

There are several SaltStack modules on the Puppet Forge.

You could certainly use other tools, such as RunDeck, or even Puppet's own MCollective, but I personally found them to be more complicated to work with.

于 2016-01-13T23:48:32.727 に答える