mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixed wrong limit on 'Fetch all deployments' sample (#51897)
Fixes: #51675 the sample for 'Fetch all deployments' is "{{ lookup('k8s', kind='Deployment', namespace='testing') }}" but it should be "{{ lookup('k8s', kind='Deployment') }}"
This commit is contained in:
parent
0f130adf63
commit
bf40b8d118
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ EXAMPLES = """
|
|||
|
||||
- name: Fetch all deployments
|
||||
set_fact:
|
||||
deployments: "{{ lookup('k8s', kind='Deployment', namespace='testing') }}"
|
||||
deployments: "{{ lookup('k8s', kind='Deployment') }}"
|
||||
|
||||
- name: Fetch all deployments in a namespace
|
||||
set_fact:
|
||||
|
|
Loading…
Reference in a new issue