Created
November 17, 2020 21:09
-
-
Save fabianvf/bedd22f8411c698b14caab44ad6d8069 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- hosts: localhost | |
gather_facts: no | |
connection: local | |
tasks: | |
- k8s_info: | |
api_version: v1 | |
kind: Project | |
register: result | |
- debug: var=result | |
- k8s_info: | |
api_version: project.openshift.io/v1 | |
kind: Project | |
register: result | |
- debug: var=result |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment