-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
112 lines (109 loc) · 4.69 KB
/
setup.cfg
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[metadata]
name = osism
summary = OSISM manager interface
description_file =
README.md
long_description = file: README.md
long_description_content_type = text/markdown
author = OSISM GmbH
author_email = [email protected]
home_page = https://github.com/osism/python-osism
python_requires = >=3.8
classifier =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
include_package_data = True
install_requires = file: requirements.txt
packages =
osism
[options.extras_require]
ansible = file: requirements.ansible.txt
openstack-image-manager = file: requirements.openstack-image-manager.txt
[options.entry_points]
console_scripts =
osism = osism.main:main
osism.commands:
apply = osism.commands.apply:Run
compose = osism.commands.compose:Run
configuration sync = osism.commands.configuration:Sync
console = osism.commands.console:Run
container = osism.commands.container:Run
docker = osism.commands.container:Run
dump facts = osism.commands.get:Facts
dump inventory = osism.commands.get:Hostvars
get facts = osism.commands.get:Facts
get hosts = osism.commands.get:Hosts
get hostvars = osism.commands.get:Hostvars
get logs ansible = osism.commands.log:Ansible
get logs container = osism.commands.log:Container
get logs file = osism.commands.log:File
get logs opensearch = osism.commands.log:Opensearch
get states = osism.commands.get:States
get status = osism.commands.status:Run
get tasks = osism.commands.get:Tasks
get versions manager = osism.commands.get:VersionsManager
log ansible = osism.commands.log:Ansible
log container = osism.commands.log:Container
log file = osism.commands.log:File
log opensearch = osism.commands.log:Opensearch
manage flavors = osism.commands.manage:Flavors
manage image clusterapi = osism.commands.manage:ImageClusterapi
manage image octavia = osism.commands.manage:ImageOctavia
manage compute disable = osism.commands.compute:ComputeDisable
manage compute enable = osism.commands.compute:ComputeEnable
manage compute evacuate = osism.commands.compute:ComputeEvacuate
manage compute list = osism.commands.compute:ComputeList
manage compute migrate = osism.commands.compute:ComputeMigrate
manage compute start = osism.commands.compute:ComputeStart
manage compute stop = osism.commands.compute:ComputeStop
manage images = osism.commands.manage:Images
manage server list = osism.commands.server:ServerList
manage server migrate = osism.commands.server:ServerMigrate
manage volume list = osism.commands.volume:VolumeList
netbox = osism.commands.netbox:Run
netbox check = osism.commands.netbox:Check
netbox connect = osism.commands.netbox:Connect
netbox deploy= osism.commands.netbox:Deploy
netbox diff = osism.commands.netbox:Diff
netbox disable = osism.commands.netbox:Disable
netbox generate = osism.commands.netbox:Generate
netbox import = osism.commands.netbox:Import
netbox init = osism.commands.netbox:Init
netbox manage = osism.commands.netbox:Manage
netbox ping = osism.commands.netbox:Ping
netbox sync = osism.commands.netbox:Sync
netbox sync ironic = osism.commands.netbox:Ironic
noset bootstrap = osism.commands.noset:NoBootstrap
noset maintenance = osism.commands.noset:NoMaintenance
noset vault password = osism.commands.vault:UnsetPassword
reconciler = osism.commands.reconciler:Run
reconciler sync = osism.commands.reconciler:Sync
service = osism.commands.service:Run
set bootstrap = osism.commands.set:Bootstrap
set maintenance = osism.commands.set:Maintenance
set vault password = osism.commands.vault:SetPassword
sync configuration = osism.commands.configuration:Sync
sync facts = osism.commands.sync:Facts
sync inventory = osism.commands.reconciler:Sync
sync ironic = osism.commands.netbox:Ironic
sync netbox = osism.commands.netbox:Sync
task list = osism.commands.get:Tasks
task revoke = osism.commands.task:Revoke
validate = osism.commands.validate:Run
vault password set = osism.commands.vault:SetPassword
vault password unset = osism.commands.vault:UnsetPassword
vault view = osism.commands.vault:View
wait = osism.commands.wait:Run
worker = osism.commands.worker:Run