summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src/doc/objectvalidator
blob: 98861e261e3d9796ee0a07b9c52ddc11bd163151 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# flake8: noqa
# pylint: skip-file

DOCUMENTATION = '''
---
module: oc_objectvalidator
short_description: Validate OpenShift objects
description:
  - Validate OpenShift objects
options:
  kubeconfig:
    description:
    - The path for the kubeconfig file to use for authentication
    required: false
    default: /etc/origin/master/admin.kubeconfig
    aliases: []
author:
- "Mo Khan <monis@redhat.com>"
extends_documentation_fragment: []
'''

EXAMPLES = '''
oc_objectvalidator:
- name: run oc_objectvalidator
  oc_objectvalidator:
  register: oc_objectvalidator
'''