1
0
Fork 0
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:
Jadi 2019-02-08 06:17:50 +03:30 committed by Abhijeet Kasurde
parent 0f130adf63
commit bf40b8d118

View file

@ -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: