devstack-cli 10.0.157__tar.gz → 10.0.159__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: devstack-cli
3
- Version: 10.0.157
4
- Summary: Command-line access to Remote Development Environments (RDEs) created by Cloudomation DevStack
3
+ Version: 10.0.159
4
+ Summary: Command-line access to Cloud Development Environments (CDEs) created by Cloudomation DevStack
5
5
  Author-email: Stefan Mückstein <stefan@cloudomation.com>
6
6
  Project-URL: Homepage, https://cloudomation.com/
7
7
  Project-URL: Documentation, https://docs.cloudomation.com/devstack/
@@ -14,10 +14,15 @@ 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
 
20
- The `devstack-cli` provides command-line access to Remote Development Environments (RDEs) created by Cloudomation DevStack. Learn more about [Cloudomation DevStack](https://docs.cloudomation.com/devstack/docs/overview-and-concept).
25
+ The `devstack-cli` provides command-line access to Cloud Development Environments (CDEs) created by Cloudomation DevStack. Learn more about [Cloudomation DevStack](https://docs.cloudomation.com/devstack/docs/overview-and-concept).
21
26
 
22
27
  ## Installation
23
28
 
@@ -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,85 @@
1
+ # DevStack CLI
2
+
3
+ The `devstack-cli` provides command-line access to Cloud Development Environments (CDEs) created by Cloudomation DevStack. Learn more about [Cloudomation DevStack](https://docs.cloudomation.com/devstack/docs/overview-and-concept).
4
+
5
+ ## Installation
6
+
7
+ The following binaries must be installed to be able to use `devstack-cli`:
8
+
9
+ * `ssh`
10
+ * `ssh-keyscan`
11
+ * `rsync`
12
+ * `git`
13
+
14
+ On Debian/Ubuntu the packages can be installed with
15
+
16
+ ```
17
+ apt install openssh-client rsync git
18
+ ```
19
+
20
+ Then you can install `devstack-cli` by running
21
+
22
+ ```
23
+ python -m pip install devstack-cli
24
+ ```
25
+
26
+ ## Usage
27
+
28
+ ```
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
55
+ ```
56
+
57
+ ## Support
58
+
59
+ `devstack-cli` is part of Cloudomation DevStack and support is provided to you with an active subscription.
60
+
61
+ ## Authors and acknowledgment
62
+
63
+ Cloudomation actively maintains the `devstack-cli` command line tool as part of Cloudomation DevStack
64
+
65
+ ## License
66
+
67
+ Copyright (c) 2024 Starflows OG
68
+
69
+ Permission is hereby granted, free of charge, to any person obtaining a copy
70
+ of this software and associated documentation files (the "Software"), to deal
71
+ in the Software without restriction, including without limitation the rights
72
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
73
+ copies of the Software, and to permit persons to whom the Software is
74
+ furnished to do so, subject to the following conditions:
75
+
76
+ The above copyright notice and this permission notice shall be included in all
77
+ copies or substantial portions of the Software.
78
+
79
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
80
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
81
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
82
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
83
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
84
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
85
+ SOFTWARE.
@@ -1,10 +1,10 @@
1
1
  [project]
2
2
  name = "devstack-cli"
3
- version = "10.0.157"
3
+ version = "10.0.159"
4
4
  authors = [
5
5
  { name="Stefan Mückstein", email="stefan@cloudomation.com" },
6
6
  ]
7
- description = "Command-line access to Remote Development Environments (RDEs) created by Cloudomation DevStack"
7
+ description = "Command-line access to Cloud Development Environments (CDEs) created by Cloudomation DevStack"
8
8
  readme = "README.md"
9
9
  requires-python = ">=3.8"
10
10
  classifiers = [
@@ -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,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: devstack-cli
3
- Version: 10.0.157
4
- Summary: Command-line access to Remote Development Environments (RDEs) created by Cloudomation DevStack
3
+ Version: 10.0.159
4
+ Summary: Command-line access to Cloud Development Environments (CDEs) created by Cloudomation DevStack
5
5
  Author-email: Stefan Mückstein <stefan@cloudomation.com>
6
6
  Project-URL: Homepage, https://cloudomation.com/
7
7
  Project-URL: Documentation, https://docs.cloudomation.com/devstack/
@@ -14,10 +14,15 @@ 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
 
20
- The `devstack-cli` provides command-line access to Remote Development Environments (RDEs) created by Cloudomation DevStack. Learn more about [Cloudomation DevStack](https://docs.cloudomation.com/devstack/docs/overview-and-concept).
25
+ The `devstack-cli` provides command-line access to Cloud Development Environments (CDEs) created by Cloudomation DevStack. Learn more about [Cloudomation DevStack](https://docs.cloudomation.com/devstack/docs/overview-and-concept).
21
26
 
22
27
  ## Installation
23
28
 
@@ -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-144838'
8
+ SHORT_SHA = 'd9f8a2a'
9
+ VERSION = '10+release-10.2024-12-20-144838.d9f8a2a'
@@ -1,63 +0,0 @@
1
- # DevStack CLI
2
-
3
- The `devstack-cli` provides command-line access to Remote Development Environments (RDEs) created by Cloudomation DevStack. Learn more about [Cloudomation DevStack](https://docs.cloudomation.com/devstack/docs/overview-and-concept).
4
-
5
- ## Installation
6
-
7
- The following binaries must be installed to be able to use `devstack-cli`:
8
-
9
- * `ssh`
10
- * `ssh-keyscan`
11
- * `rsync`
12
- * `git`
13
-
14
- On Debian/Ubuntu the packages can be installed with
15
-
16
- ```
17
- apt install openssh-client rsync git
18
- ```
19
-
20
- Then you can install `devstack-cli` by running
21
-
22
- ```
23
- python -m pip install devstack-cli
24
- ```
25
-
26
- ## Usage
27
-
28
- ```
29
- usage: devstack-cli [-h] -H HOSTNAME -s SOURCE_DIRECTORY [-o OUTPUT_DIRECTORY] [-v]
30
- ```
31
-
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
- ## Support
36
-
37
- `devstack-cli` is part of Cloudomation DevStack and support is provided to you with an active subscription.
38
-
39
- ## Authors and acknowledgment
40
-
41
- Cloudomation actively maintains the `devstack-cli` command line tool as part of Cloudomation DevStack
42
-
43
- ## License
44
-
45
- Copyright (c) 2024 Starflows OG
46
-
47
- Permission is hereby granted, free of charge, to any person obtaining a copy
48
- of this software and associated documentation files (the "Software"), to deal
49
- in the Software without restriction, including without limitation the rights
50
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
51
- copies of the Software, and to permit persons to whom the Software is
52
- furnished to do so, subject to the following conditions:
53
-
54
- The above copyright notice and this permission notice shall be included in all
55
- copies or substantial portions of the Software.
56
-
57
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
58
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
59
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
60
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
61
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
62
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
63
- SOFTWARE.
@@ -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