devstack-cli 10.0.157__tar.gz → 10.0.158__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {devstack_cli-10.0.157/src/devstack_cli.egg-info → devstack_cli-10.0.158}/PKG-INFO +32 -5
- {devstack_cli-10.0.157 → devstack_cli-10.0.158}/README.md +26 -4
- {devstack_cli-10.0.157 → devstack_cli-10.0.158}/pyproject.toml +6 -1
- {devstack_cli-10.0.157 → devstack_cli-10.0.158/src/devstack_cli.egg-info}/PKG-INFO +32 -5
- devstack_cli-10.0.158/src/devstack_cli.egg-info/requires.txt +8 -0
- devstack_cli-10.0.158/src/version.py +9 -0
- devstack_cli-10.0.157/src/devstack_cli.egg-info/requires.txt +0 -3
- devstack_cli-10.0.157/src/version.py +0 -9
- {devstack_cli-10.0.157 → devstack_cli-10.0.158}/LICENSE +0 -0
- {devstack_cli-10.0.157 → devstack_cli-10.0.158}/setup.cfg +0 -0
- {devstack_cli-10.0.157 → devstack_cli-10.0.158}/src/__init__.py +0 -0
- {devstack_cli-10.0.157 → devstack_cli-10.0.158}/src/cli.py +0 -0
- {devstack_cli-10.0.157 → devstack_cli-10.0.158}/src/devstack_cli.egg-info/SOURCES.txt +0 -0
- {devstack_cli-10.0.157 → devstack_cli-10.0.158}/src/devstack_cli.egg-info/dependency_links.txt +0 -0
- {devstack_cli-10.0.157 → devstack_cli-10.0.158}/src/devstack_cli.egg-info/entry_points.txt +0 -0
- {devstack_cli-10.0.157 → devstack_cli-10.0.158}/src/devstack_cli.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: devstack-cli
|
3
|
-
Version: 10.0.
|
3
|
+
Version: 10.0.158
|
4
4
|
Summary: Command-line access to Remote Development Environments (RDEs) created by Cloudomation DevStack
|
5
5
|
Author-email: Stefan Mückstein <stefan@cloudomation.com>
|
6
6
|
Project-URL: Homepage, https://cloudomation.com/
|
@@ -14,6 +14,11 @@ License-File: LICENSE
|
|
14
14
|
Requires-Dist: paramiko
|
15
15
|
Requires-Dist: watchdog
|
16
16
|
Requires-Dist: rich
|
17
|
+
Requires-Dist: pyyaml
|
18
|
+
Requires-Dist: asyncssh
|
19
|
+
Requires-Dist: aiohttp
|
20
|
+
Requires-Dist: aiofiles
|
21
|
+
Requires-Dist: yarl
|
17
22
|
|
18
23
|
# DevStack CLI
|
19
24
|
|
@@ -43,12 +48,34 @@ python -m pip install devstack-cli
|
|
43
48
|
## Usage
|
44
49
|
|
45
50
|
```
|
46
|
-
usage:
|
51
|
+
usage: cli.py [-h] [-c CONFIG_FILE] [--workspace-url WORKSPACE_URL] [-u USER_NAME] [--maximum-uptime-hours MAXIMUM_UPTIME_HOURS] [-n CDE_NAME] [-s] [--stop] [-w] [-o] [-p] [-f] [-l] [-t] [-q] [-v] [-V]
|
52
|
+
|
53
|
+
options:
|
54
|
+
-h, --help show this help message and exit
|
55
|
+
-c CONFIG_FILE, --config-file CONFIG_FILE
|
56
|
+
path to a devstack-cli configuration file
|
57
|
+
--workspace-url WORKSPACE_URL
|
58
|
+
the URL of your Cloudomation workspace
|
59
|
+
-u USER_NAME, --user-name USER_NAME
|
60
|
+
a user name to authenticate to the Cloudomation workspace
|
61
|
+
--maximum-uptime-hours MAXIMUM_UPTIME_HOURS
|
62
|
+
the number of hours before an CDE is automatically stopped
|
63
|
+
-n CDE_NAME, --cde-name CDE_NAME
|
64
|
+
the name of the CDE
|
65
|
+
-s, --start start CDE
|
66
|
+
--stop stop CDE
|
67
|
+
-w, --wait-running wait until CDE is running. implies "--start".
|
68
|
+
-o, --connect connect to CDE. implies "--start" and "--wait-running".
|
69
|
+
-p, --port-forwarding
|
70
|
+
enable port-forwarding. implies "--start", "--wait-running", and "--connect".
|
71
|
+
-f , --file-sync enable file-sync implies "--start", "--wait-running", and "--connect".
|
72
|
+
-l, --logs enable following logs implies "--start", "--wait-running", and "--connect".
|
73
|
+
-t, --terminal open interactive terminal implies "--start", "--wait-running", and "--connect".
|
74
|
+
-q, --quit exit after processing command line arguments.
|
75
|
+
-v, --verbose enable debug logging
|
76
|
+
-V, --version show program's version number and exit
|
47
77
|
```
|
48
78
|
|
49
|
-
You need to specify the hostname/IP of the RDE created by Cloudomation DevStack as well as the path to a directory where the sources will be cached locally. Optionally you can specify an output directory where artifacts created on the RDE will be stored locally.
|
50
|
-
The `-v` switch enables debug logging.
|
51
|
-
|
52
79
|
## Support
|
53
80
|
|
54
81
|
`devstack-cli` is part of Cloudomation DevStack and support is provided to you with an active subscription.
|
@@ -26,12 +26,34 @@ python -m pip install devstack-cli
|
|
26
26
|
## Usage
|
27
27
|
|
28
28
|
```
|
29
|
-
usage:
|
29
|
+
usage: cli.py [-h] [-c CONFIG_FILE] [--workspace-url WORKSPACE_URL] [-u USER_NAME] [--maximum-uptime-hours MAXIMUM_UPTIME_HOURS] [-n CDE_NAME] [-s] [--stop] [-w] [-o] [-p] [-f] [-l] [-t] [-q] [-v] [-V]
|
30
|
+
|
31
|
+
options:
|
32
|
+
-h, --help show this help message and exit
|
33
|
+
-c CONFIG_FILE, --config-file CONFIG_FILE
|
34
|
+
path to a devstack-cli configuration file
|
35
|
+
--workspace-url WORKSPACE_URL
|
36
|
+
the URL of your Cloudomation workspace
|
37
|
+
-u USER_NAME, --user-name USER_NAME
|
38
|
+
a user name to authenticate to the Cloudomation workspace
|
39
|
+
--maximum-uptime-hours MAXIMUM_UPTIME_HOURS
|
40
|
+
the number of hours before an CDE is automatically stopped
|
41
|
+
-n CDE_NAME, --cde-name CDE_NAME
|
42
|
+
the name of the CDE
|
43
|
+
-s, --start start CDE
|
44
|
+
--stop stop CDE
|
45
|
+
-w, --wait-running wait until CDE is running. implies "--start".
|
46
|
+
-o, --connect connect to CDE. implies "--start" and "--wait-running".
|
47
|
+
-p, --port-forwarding
|
48
|
+
enable port-forwarding. implies "--start", "--wait-running", and "--connect".
|
49
|
+
-f , --file-sync enable file-sync implies "--start", "--wait-running", and "--connect".
|
50
|
+
-l, --logs enable following logs implies "--start", "--wait-running", and "--connect".
|
51
|
+
-t, --terminal open interactive terminal implies "--start", "--wait-running", and "--connect".
|
52
|
+
-q, --quit exit after processing command line arguments.
|
53
|
+
-v, --verbose enable debug logging
|
54
|
+
-V, --version show program's version number and exit
|
30
55
|
```
|
31
56
|
|
32
|
-
You need to specify the hostname/IP of the RDE created by Cloudomation DevStack as well as the path to a directory where the sources will be cached locally. Optionally you can specify an output directory where artifacts created on the RDE will be stored locally.
|
33
|
-
The `-v` switch enables debug logging.
|
34
|
-
|
35
57
|
## Support
|
36
58
|
|
37
59
|
`devstack-cli` is part of Cloudomation DevStack and support is provided to you with an active subscription.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "devstack-cli"
|
3
|
-
version = "10.0.
|
3
|
+
version = "10.0.158"
|
4
4
|
authors = [
|
5
5
|
{ name="Stefan Mückstein", email="stefan@cloudomation.com" },
|
6
6
|
]
|
@@ -16,6 +16,11 @@ dependencies = [
|
|
16
16
|
"paramiko",
|
17
17
|
"watchdog",
|
18
18
|
"rich",
|
19
|
+
"pyyaml",
|
20
|
+
"asyncssh",
|
21
|
+
"aiohttp",
|
22
|
+
"aiofiles",
|
23
|
+
"yarl",
|
19
24
|
]
|
20
25
|
|
21
26
|
[project.urls]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: devstack-cli
|
3
|
-
Version: 10.0.
|
3
|
+
Version: 10.0.158
|
4
4
|
Summary: Command-line access to Remote Development Environments (RDEs) created by Cloudomation DevStack
|
5
5
|
Author-email: Stefan Mückstein <stefan@cloudomation.com>
|
6
6
|
Project-URL: Homepage, https://cloudomation.com/
|
@@ -14,6 +14,11 @@ License-File: LICENSE
|
|
14
14
|
Requires-Dist: paramiko
|
15
15
|
Requires-Dist: watchdog
|
16
16
|
Requires-Dist: rich
|
17
|
+
Requires-Dist: pyyaml
|
18
|
+
Requires-Dist: asyncssh
|
19
|
+
Requires-Dist: aiohttp
|
20
|
+
Requires-Dist: aiofiles
|
21
|
+
Requires-Dist: yarl
|
17
22
|
|
18
23
|
# DevStack CLI
|
19
24
|
|
@@ -43,12 +48,34 @@ python -m pip install devstack-cli
|
|
43
48
|
## Usage
|
44
49
|
|
45
50
|
```
|
46
|
-
usage:
|
51
|
+
usage: cli.py [-h] [-c CONFIG_FILE] [--workspace-url WORKSPACE_URL] [-u USER_NAME] [--maximum-uptime-hours MAXIMUM_UPTIME_HOURS] [-n CDE_NAME] [-s] [--stop] [-w] [-o] [-p] [-f] [-l] [-t] [-q] [-v] [-V]
|
52
|
+
|
53
|
+
options:
|
54
|
+
-h, --help show this help message and exit
|
55
|
+
-c CONFIG_FILE, --config-file CONFIG_FILE
|
56
|
+
path to a devstack-cli configuration file
|
57
|
+
--workspace-url WORKSPACE_URL
|
58
|
+
the URL of your Cloudomation workspace
|
59
|
+
-u USER_NAME, --user-name USER_NAME
|
60
|
+
a user name to authenticate to the Cloudomation workspace
|
61
|
+
--maximum-uptime-hours MAXIMUM_UPTIME_HOURS
|
62
|
+
the number of hours before an CDE is automatically stopped
|
63
|
+
-n CDE_NAME, --cde-name CDE_NAME
|
64
|
+
the name of the CDE
|
65
|
+
-s, --start start CDE
|
66
|
+
--stop stop CDE
|
67
|
+
-w, --wait-running wait until CDE is running. implies "--start".
|
68
|
+
-o, --connect connect to CDE. implies "--start" and "--wait-running".
|
69
|
+
-p, --port-forwarding
|
70
|
+
enable port-forwarding. implies "--start", "--wait-running", and "--connect".
|
71
|
+
-f , --file-sync enable file-sync implies "--start", "--wait-running", and "--connect".
|
72
|
+
-l, --logs enable following logs implies "--start", "--wait-running", and "--connect".
|
73
|
+
-t, --terminal open interactive terminal implies "--start", "--wait-running", and "--connect".
|
74
|
+
-q, --quit exit after processing command line arguments.
|
75
|
+
-v, --verbose enable debug logging
|
76
|
+
-V, --version show program's version number and exit
|
47
77
|
```
|
48
78
|
|
49
|
-
You need to specify the hostname/IP of the RDE created by Cloudomation DevStack as well as the path to a directory where the sources will be cached locally. Optionally you can specify an output directory where artifacts created on the RDE will be stored locally.
|
50
|
-
The `-v` switch enables debug logging.
|
51
|
-
|
52
79
|
## Support
|
53
80
|
|
54
81
|
`devstack-cli` is part of Cloudomation DevStack and support is provided to you with an active subscription.
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{devstack_cli-10.0.157 → devstack_cli-10.0.158}/src/devstack_cli.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|