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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: devstack-cli
3
- Version: 10.0.157
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: devstack-cli [-h] -H HOSTNAME -s SOURCE_DIRECTORY [-o OUTPUT_DIRECTORY] [-v]
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: devstack-cli [-h] -H HOSTNAME -s SOURCE_DIRECTORY [-o OUTPUT_DIRECTORY] [-v]
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.157"
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.157
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: devstack-cli [-h] -H HOSTNAME -s SOURCE_DIRECTORY [-o OUTPUT_DIRECTORY] [-v]
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.
@@ -0,0 +1,8 @@
1
+ paramiko
2
+ watchdog
3
+ rich
4
+ pyyaml
5
+ asyncssh
6
+ aiohttp
7
+ aiofiles
8
+ yarl
@@ -0,0 +1,9 @@
1
+ """
2
+ constants, set by build
3
+ """
4
+
5
+ MAJOR = '10'
6
+ BRANCH_NAME = 'release-10'
7
+ BUILD_DATE = '2024-12-20-141326'
8
+ SHORT_SHA = 'f5d95ae'
9
+ VERSION = '10+release-10.2024-12-20-141326.f5d95ae'
@@ -1,3 +0,0 @@
1
- paramiko
2
- watchdog
3
- rich
@@ -1,9 +0,0 @@
1
- """
2
- constants, set by build
3
- """
4
-
5
- MAJOR = '10'
6
- BRANCH_NAME = 'release-10'
7
- BUILD_DATE = '2024-10-15-094703'
8
- SHORT_SHA = '7fc04b9'
9
- VERSION = '10+release-10.2024-10-15-094703.7fc04b9'
File without changes