summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src/ansible/oc_clusterrole.py
blob: 7e4319d2c9bd7b063731947ac53463ab23817c76 (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
28
29
# pylint: skip-file
# flake8: noqa

def main():
    '''
    ansible oc module for clusterrole
    '''

    module = AnsibleModule(
        argument_spec=dict(
            kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
            state=dict(default='present', type='str',
                       choices=['present', 'absent', 'list']),
            debug=dict(default=False, type='bool'),
            name=dict(default=None, type='str'),
            rules=dict(default=None, type='list'),
        ),
        supports_check_mode=True,
    )

    results = OCClusterRole.run_ansible(module.params, module.check_mode)

    if 'failed' in results:
        module.fail_json(**results)

    module.exit_json(**results)

if __name__ == '__main__':
    main()