Skip to content

Commit

Permalink
Update documentation with more examples
Browse files Browse the repository at this point in the history
Update the documentation with more examples of running playbooks,
including how to target a specific vm and force an update of the
COmanage Registry services stack file.
  • Loading branch information
skoranda committed May 13, 2020
1 parent 8f44dbc commit cc50278
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,31 @@ been provisioned:
ansible-playbook training_nodes.yml --tags training_nodes
```

To get a list of inventory after provisioning (helpful to obtain mappings
to use with --limit to target specific nodes):

```
ansible-inventory --list
```

To reconfigure one specific node, for example

```
ansible-playbook \
training_nodes.yml \
--tags training_nodes \
--limt tag_public_fqdn_registry16_comanage_incommon_training
```

To force an update of the COmanage Registry services stack file:

```
ansible-playbook \
training_nodes.yml \
--tags update_stack_file \
-e force_update_stack_file=yes
```

## SSH Access

Trainers may use their provisioned SSH keys to access all nodes. Each trainer
Expand Down

0 comments on commit cc50278

Please sign in to comment.