bigpanda: Remove docs using complex args (#2275)

As they're going to be deprecated, don't recommend using them.
This commit is contained in:
Hagai Kariti 2016-05-23 10:29:26 +03:00 committed by Matt Clay
parent e93f7241be
commit 390aa7a75f

View file

@ -83,19 +83,11 @@ EXAMPLES = '''
...
- bigpanda: component=myapp version=1.3 token={{ bigpanda_token }} state=finished
or using a deployment object:
- bigpanda: component=myapp version=1.3 token={{ bigpanda_token }} state=started
register: deployment
- bigpanda: state=finished
args: deployment
If outside servers aren't reachable from your machine, use local_action and pass the hostname:
- local_action: bigpanda component=myapp version=1.3 hosts={{ansible_hostname}} token={{ bigpanda_token }} state=started
If outside servers aren't reachable from your machine, use local_action and override hosts:
- local_action: bigpanda component=myapp version=1.3 token={{ bigpanda_token }} hosts={{ansible_hostname}} state=started
register: deployment
...
- local_action: bigpanda state=finished
args: deployment
- local_action: bigpanda component=deployment.component version=deployment.version token=deployment.token state=finished
'''
# ===========================================