58
52

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ansibleで特定のtaskを特定のhostに実行する

Last updated at Posted at 2015-04-05

playbookの開発中は動作確認しながら開発していくと思いますが、そんな時は特定のtaskを特定のhostに実行すると動作確認が楽です

以下のように実行します

ansible-playbook -i test-inventory -l test-server --start-at='target task name' --step test.yml

オプションの内容は以下になります

オプション 内容
-i inventoryを指定
-l 実行対象のhost-patternを指定
--start-at 実行したいtaskのnameを指定する。
指定したnameのtask以降は全部実行されてしまうので、
対象のtaskのみ実行したい場合は--stepをつける
--step taskごとに実行するかしないかを確認する
58
52
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
58
52

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?