uffizzi-cli 1.0.4 → 2.0.27
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.
- checksums.yaml +4 -4
- data/config/uffizzi.rb +1 -0
- data/lib/uffizzi/auth_helper.rb +13 -5
- data/lib/uffizzi/cli/account.rb +122 -0
- data/lib/uffizzi/cli/cluster.rb +363 -0
- data/lib/uffizzi/cli/common.rb +2 -4
- data/lib/uffizzi/cli/config.rb +5 -4
- data/lib/uffizzi/cli/connect.rb +14 -8
- data/lib/uffizzi/cli/disconnect.rb +1 -1
- data/lib/uffizzi/cli/login.rb +130 -66
- data/lib/uffizzi/cli/login_by_identity_token.rb +11 -7
- data/lib/uffizzi/cli/preview/service.rb +3 -4
- data/lib/uffizzi/cli/preview.rb +33 -32
- data/lib/uffizzi/cli/project.rb +17 -9
- data/lib/uffizzi/cli.rb +46 -7
- data/lib/uffizzi/clients/api/api_client.rb +92 -2
- data/lib/uffizzi/clients/api/api_routes.rb +44 -0
- data/lib/uffizzi/clients/api/http_client.rb +19 -7
- data/lib/uffizzi/config_file.rb +15 -40
- data/lib/uffizzi/error.rb +15 -0
- data/lib/uffizzi/helpers/config_helper.rb +49 -0
- data/lib/uffizzi/helpers/file_helper.rb +25 -0
- data/lib/uffizzi/helpers/login_helper.rb +33 -0
- data/lib/uffizzi/helpers/project_helper.rb +19 -0
- data/lib/uffizzi/promt.rb +4 -0
- data/lib/uffizzi/response_helper.rb +33 -14
- data/lib/uffizzi/services/cluster_service.rb +59 -0
- data/lib/uffizzi/services/compose_file_service.rb +5 -4
- data/lib/uffizzi/services/env_variables_service.rb +4 -2
- data/lib/uffizzi/services/github_service.rb +21 -0
- data/lib/uffizzi/services/kubeconfig_service.rb +132 -0
- data/lib/uffizzi/services/preview_service.rb +52 -18
- data/lib/uffizzi/shell.rb +19 -16
- data/lib/uffizzi/token.rb +37 -0
- data/lib/uffizzi/version.rb +1 -1
- data/lib/uffizzi.rb +10 -0
- data/man/uffizzi +7 -5
- data/man/uffizzi-account +29 -0
- data/man/uffizzi-account-list +26 -0
- data/man/uffizzi-account-list.html +103 -0
- data/man/uffizzi-account-list.ronn +19 -0
- data/man/uffizzi-account-set-default +29 -0
- data/man/uffizzi-account-set-default.html +105 -0
- data/man/uffizzi-account-set-default.ronn +22 -0
- data/man/uffizzi-account.html +106 -0
- data/man/uffizzi-account.ronn +23 -0
- data/man/uffizzi-cluster +37 -0
- data/man/uffizzi-cluster-create +49 -0
- data/man/uffizzi-cluster-create.ronn +41 -0
- data/man/uffizzi-cluster-delete +32 -0
- data/man/uffizzi-cluster-delete.ronn +24 -0
- data/man/uffizzi-cluster-describe +39 -0
- data/man/uffizzi-cluster-describe.ronn +30 -0
- data/man/uffizzi-cluster-list +34 -0
- data/man/uffizzi-cluster-list.ronn +26 -0
- data/man/uffizzi-cluster-update-kubeconfig +37 -0
- data/man/uffizzi-cluster-update-kubeconfig.ronn +29 -0
- data/man/uffizzi-cluster.ronn +32 -0
- data/man/uffizzi-compose +39 -0
- data/man/uffizzi-compose-create +67 -0
- data/man/uffizzi-compose-create.ronn +57 -0
- data/man/uffizzi-compose-delete +38 -0
- data/man/uffizzi-compose-delete.ronn +29 -0
- data/man/uffizzi-compose-describe +38 -0
- data/man/uffizzi-compose-describe.ronn +29 -0
- data/man/uffizzi-compose-events +38 -0
- data/man/uffizzi-compose-events.ronn +29 -0
- data/man/uffizzi-compose-list +58 -0
- data/man/uffizzi-compose-list.ronn +49 -0
- data/man/uffizzi-compose-service-list +42 -0
- data/man/uffizzi-compose-service-list.ronn +32 -0
- data/man/uffizzi-compose-service-logs +59 -0
- data/man/uffizzi-compose-service-logs.ronn +48 -0
- data/man/uffizzi-compose-update +61 -0
- data/man/uffizzi-compose-update.ronn +51 -0
- data/man/uffizzi-compose.ronn +33 -0
- data/man/uffizzi-compose_service_logs +59 -0
- data/man/uffizzi-compose_service_logs.ronn +50 -0
- data/man/uffizzi-config +2 -2
- data/man/uffizzi-config.ronn +1 -1
- data/man/uffizzi-connect +2 -4
- data/man/uffizzi-connect-acr +2 -2
- data/man/uffizzi-connect-acr.ronn +1 -1
- data/man/uffizzi-connect-docker-hub +2 -2
- data/man/uffizzi-connect-docker-hub.ronn +1 -1
- data/man/uffizzi-connect-docker-registry +2 -2
- data/man/uffizzi-connect-docker-registry.ronn +1 -1
- data/man/uffizzi-connect-ecr +2 -2
- data/man/uffizzi-connect-ecr.ronn +1 -1
- data/man/uffizzi-connect-gcr +2 -2
- data/man/uffizzi-connect-gcr.ronn +1 -1
- data/man/uffizzi-connect-ghcr +2 -2
- data/man/uffizzi-connect-ghcr.ronn +1 -1
- data/man/uffizzi-connect.ronn +2 -2
- data/man/uffizzi-disconnect +2 -2
- data/man/uffizzi-disconnect.ronn +1 -1
- data/man/uffizzi-login +7 -3
- data/man/uffizzi-login-by-identity-token +3 -3
- data/man/uffizzi-login-by-identity-token.ronn +2 -2
- data/man/uffizzi-login.html +113 -0
- data/man/uffizzi-login.ronn +6 -2
- data/man/uffizzi-logout +2 -2
- data/man/uffizzi-logout.ronn +1 -1
- data/man/uffizzi-preview +9 -9
- data/man/uffizzi-preview-create +22 -20
- data/man/uffizzi-preview-create.ronn +28 -26
- data/man/uffizzi-preview-delete +11 -10
- data/man/uffizzi-preview-delete.ronn +12 -11
- data/man/uffizzi-preview-describe +10 -10
- data/man/uffizzi-preview-describe.ronn +11 -11
- data/man/uffizzi-preview-events +12 -11
- data/man/uffizzi-preview-events.ronn +13 -12
- data/man/uffizzi-preview-list +19 -18
- data/man/uffizzi-preview-list.ronn +21 -20
- data/man/uffizzi-preview-service-list +16 -12
- data/man/uffizzi-preview-service-list.ronn +16 -13
- data/man/uffizzi-preview-service-logs +14 -12
- data/man/uffizzi-preview-service-logs.ronn +18 -17
- data/man/uffizzi-preview-update +19 -18
- data/man/uffizzi-preview-update.ronn +21 -20
- data/man/uffizzi-preview.ronn +10 -10
- data/man/uffizzi-preview_service_logs +14 -12
- data/man/uffizzi-preview_service_logs.ronn +18 -17
- data/man/uffizzi-project +3 -3
- data/man/uffizzi-project-compose +2 -2
- data/man/uffizzi-project-compose-describe +2 -2
- data/man/uffizzi-project-compose-describe.ronn +1 -1
- data/man/uffizzi-project-compose-set +2 -2
- data/man/uffizzi-project-compose-set.ronn +1 -1
- data/man/uffizzi-project-compose-unset +2 -2
- data/man/uffizzi-project-compose-unset.ronn +1 -1
- data/man/uffizzi-project-compose.ronn +1 -1
- data/man/uffizzi-project-create +2 -2
- data/man/uffizzi-project-create.ronn +1 -1
- data/man/uffizzi-project-delete +2 -2
- data/man/uffizzi-project-delete.ronn +1 -1
- data/man/uffizzi-project-describe +3 -3
- data/man/uffizzi-project-describe.ronn +1 -1
- data/man/uffizzi-project-preview-describe +37 -0
- data/man/uffizzi-project-preview-describe.ronn +29 -0
- data/man/uffizzi-project-preview-set +66 -0
- data/man/uffizzi-project-preview-set.ronn +57 -0
- data/man/uffizzi-project-secret +2 -2
- data/man/uffizzi-project-secret-create +2 -2
- data/man/uffizzi-project-secret-create.ronn +1 -1
- data/man/uffizzi-project-secret-delete +2 -2
- data/man/uffizzi-project-secret-delete.ronn +1 -1
- data/man/uffizzi-project-secret-list +2 -2
- data/man/uffizzi-project-secret-list.ronn +1 -1
- data/man/uffizzi-project-secret.ronn +1 -1
- data/man/uffizzi-project-set-default +2 -2
- data/man/uffizzi-project-set-default.ronn +1 -1
- data/man/uffizzi-project.html +124 -0
- data/man/uffizzi-project.ronn +2 -2
- data/man/uffizzi.ronn +12 -10
- metadata +131 -19
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" generated with Ronn-NG/v0.9.1
|
|
2
2
|
.\" http://github.com/apjanke/ronn-ng/tree/0.9.1
|
|
3
|
-
.TH "UFFIZZI\-PROJECT\-SET\-DEFAULT" "" "
|
|
3
|
+
.TH "UFFIZZI\-PROJECT\-SET\-DEFAULT" "" "August 2023" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBuffizzi\-project\-set\-default\fR \- set the default project for the active account
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -17,7 +17,7 @@ This command can fail for the following reasons:
|
|
|
17
17
|
\- There is no project with the given project slug
|
|
18
18
|
|
|
19
19
|
For more information on Uffizzi projects, see:
|
|
20
|
-
https://
|
|
20
|
+
https://docs\.uffizzi\.com/references/cli/
|
|
21
21
|
.fi
|
|
22
22
|
.SH "UFFIZZI WIDE FLAGS"
|
|
23
23
|
.nf
|
|
@@ -13,7 +13,7 @@ uffizzi-project-set-default - set the default project for the active account
|
|
|
13
13
|
- There is no project with the given project slug
|
|
14
14
|
|
|
15
15
|
For more information on Uffizzi projects, see:
|
|
16
|
-
https://
|
|
16
|
+
https://docs.uffizzi.com/references/cli/
|
|
17
17
|
|
|
18
18
|
## UFFIZZI WIDE FLAGS
|
|
19
19
|
These flags are available to all commands: --project. Run $ uffizzi
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta http-equiv='content-type' content='text/html;charset=utf8'>
|
|
5
|
+
<meta name='generator' content='Ronn-NG/v0.9.1 (http://github.com/apjanke/ronn-ng/tree/0.9.1)'>
|
|
6
|
+
<title>manage Uffizzi projects</title>
|
|
7
|
+
<style type='text/css' media='all'>
|
|
8
|
+
/* style: man */
|
|
9
|
+
body#manpage {margin:0}
|
|
10
|
+
.mp {max-width:100ex;padding:0 9ex 1ex 4ex}
|
|
11
|
+
.mp p,.mp pre,.mp ul,.mp ol,.mp dl {margin:0 0 20px 0}
|
|
12
|
+
.mp h2 {margin:10px 0 0 0}
|
|
13
|
+
.mp > p,.mp > pre,.mp > ul,.mp > ol,.mp > dl {margin-left:8ex}
|
|
14
|
+
.mp h3 {margin:0 0 0 4ex}
|
|
15
|
+
.mp dt {margin:0;clear:left}
|
|
16
|
+
.mp dt.flush {float:left;width:8ex}
|
|
17
|
+
.mp dd {margin:0 0 0 9ex}
|
|
18
|
+
.mp h1,.mp h2,.mp h3,.mp h4 {clear:left}
|
|
19
|
+
.mp pre {margin-bottom:20px}
|
|
20
|
+
.mp pre+h2,.mp pre+h3 {margin-top:22px}
|
|
21
|
+
.mp h2+pre,.mp h3+pre {margin-top:5px}
|
|
22
|
+
.mp img {display:block;margin:auto}
|
|
23
|
+
.mp h1.man-title {display:none}
|
|
24
|
+
.mp,.mp code,.mp pre,.mp tt,.mp kbd,.mp samp,.mp h3,.mp h4 {font-family:monospace;font-size:14px;line-height:1.42857142857143}
|
|
25
|
+
.mp h2 {font-size:16px;line-height:1.25}
|
|
26
|
+
.mp h1 {font-size:20px;line-height:2}
|
|
27
|
+
.mp {text-align:justify;background:#fff}
|
|
28
|
+
.mp,.mp code,.mp pre,.mp pre code,.mp tt,.mp kbd,.mp samp {color:#131211}
|
|
29
|
+
.mp h1,.mp h2,.mp h3,.mp h4 {color:#030201}
|
|
30
|
+
.mp u {text-decoration:underline}
|
|
31
|
+
.mp code,.mp strong,.mp b {font-weight:bold;color:#131211}
|
|
32
|
+
.mp em,.mp var {font-style:italic;color:#232221;text-decoration:none}
|
|
33
|
+
.mp a,.mp a:link,.mp a:hover,.mp a code,.mp a pre,.mp a tt,.mp a kbd,.mp a samp {color:#0000ff}
|
|
34
|
+
.mp b.man-ref {font-weight:normal;color:#434241}
|
|
35
|
+
.mp pre {padding:0 4ex}
|
|
36
|
+
.mp pre code {font-weight:normal;color:#434241}
|
|
37
|
+
.mp h2+pre,h3+pre {padding-left:0}
|
|
38
|
+
ol.man-decor,ol.man-decor li {margin:3px 0 10px 0;padding:0;float:left;width:33%;list-style-type:none;text-transform:uppercase;color:#999;letter-spacing:1px}
|
|
39
|
+
ol.man-decor {width:100%}
|
|
40
|
+
ol.man-decor li.tl {text-align:left}
|
|
41
|
+
ol.man-decor li.tc {text-align:center;letter-spacing:4px}
|
|
42
|
+
ol.man-decor li.tr {text-align:right;float:right}
|
|
43
|
+
</style>
|
|
44
|
+
</head>
|
|
45
|
+
<!--
|
|
46
|
+
The following styles are deprecated and will be removed at some point:
|
|
47
|
+
div#man, div#man ol.man, div#man ol.head, div#man ol.man.
|
|
48
|
+
|
|
49
|
+
The .man-page, .man-decor, .man-head, .man-foot, .man-title, and
|
|
50
|
+
.man-navigation should be used instead.
|
|
51
|
+
-->
|
|
52
|
+
<body id='manpage'>
|
|
53
|
+
<div class='mp' id='man'>
|
|
54
|
+
|
|
55
|
+
<div class='man-navigation' style='display:none'>
|
|
56
|
+
<a href="#NAME">NAME</a>
|
|
57
|
+
<a href="#SYNOPSIS">SYNOPSIS</a>
|
|
58
|
+
<a href="#DESCRIPTION">DESCRIPTION</a>
|
|
59
|
+
<a href="#COMMANDS">COMMANDS</a>
|
|
60
|
+
</div>
|
|
61
|
+
|
|
62
|
+
<ol class='man-decor man-head man head'>
|
|
63
|
+
<li class='tl'>uffizzi-project</li>
|
|
64
|
+
<li class='tc'></li>
|
|
65
|
+
<li class='tr'>uffizzi-project</li>
|
|
66
|
+
</ol>
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
<h2 id="NAME">NAME</h2>
|
|
71
|
+
<p class="man-name">
|
|
72
|
+
<code>uffizzi-project</code> - <span class="man-whatis">manage Uffizzi projects</span>
|
|
73
|
+
</p>
|
|
74
|
+
<h2 id="SYNOPSIS">SYNOPSIS</h2>
|
|
75
|
+
<pre><code>uffizzi project COMMAND [UFFIZZI_WIDE_FLAG ...]
|
|
76
|
+
</code></pre>
|
|
77
|
+
|
|
78
|
+
<h2 id="DESCRIPTION">DESCRIPTION</h2>
|
|
79
|
+
<pre><code>Manage Uffizzi projects
|
|
80
|
+
|
|
81
|
+
For more information on Uffizzi projects, see:
|
|
82
|
+
https://github.com/UffizziCloud/uffizzi_cli
|
|
83
|
+
</code></pre>
|
|
84
|
+
|
|
85
|
+
<h2 id="COMMANDS">COMMANDS</h2>
|
|
86
|
+
<pre><code>COMMAND is one of the following:
|
|
87
|
+
|
|
88
|
+
compose
|
|
89
|
+
Manage the compose file for a project.
|
|
90
|
+
|
|
91
|
+
create
|
|
92
|
+
Create a new project.
|
|
93
|
+
|
|
94
|
+
delete
|
|
95
|
+
Delete a project.
|
|
96
|
+
|
|
97
|
+
describe
|
|
98
|
+
Display project meta data.
|
|
99
|
+
|
|
100
|
+
list
|
|
101
|
+
List all projects in the account.
|
|
102
|
+
|
|
103
|
+
secret
|
|
104
|
+
Manage secrets for a project.
|
|
105
|
+
|
|
106
|
+
set-default
|
|
107
|
+
Set the default project in the uffizzi configuration. Also see
|
|
108
|
+
$ uffizzi config help for details.
|
|
109
|
+
|
|
110
|
+
update OPTIONS
|
|
111
|
+
Update a project's metadata.
|
|
112
|
+
</code></pre>
|
|
113
|
+
|
|
114
|
+
<p>Run $ uffizzi project COMMAND --help for more information on a command.</p>
|
|
115
|
+
|
|
116
|
+
<ol class='man-decor man-foot man foot'>
|
|
117
|
+
<li class='tl'></li>
|
|
118
|
+
<li class='tc'>July 2023</li>
|
|
119
|
+
<li class='tr'>uffizzi-project</li>
|
|
120
|
+
</ol>
|
|
121
|
+
|
|
122
|
+
</div>
|
|
123
|
+
</body>
|
|
124
|
+
</html>
|
data/man/uffizzi-project.ronn
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
Manage Uffizzi projects
|
|
9
9
|
|
|
10
10
|
For more information on Uffizzi projects, see:
|
|
11
|
-
https://
|
|
11
|
+
https://docs.uffizzi.com/references/cli/
|
|
12
12
|
|
|
13
13
|
## COMMANDS
|
|
14
14
|
COMMAND is one of the following:
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
secret
|
|
32
32
|
Manage secrets for a project.
|
|
33
33
|
|
|
34
|
-
set-
|
|
34
|
+
set-default
|
|
35
35
|
Set the default project in the uffizzi configuration. Also see
|
|
36
36
|
$ uffizzi config help for details.
|
|
37
37
|
|
data/man/uffizzi.ronn
CHANGED
|
@@ -5,33 +5,35 @@ uffizzi - manage Uffizzi resources
|
|
|
5
5
|
uffizzi GROUP | COMMAND
|
|
6
6
|
|
|
7
7
|
## DESCRIPTION
|
|
8
|
-
The uffizzi CLI manages authentication, configuration, and
|
|
9
|
-
interaction with Uffizzi APIs.
|
|
8
|
+
The uffizzi CLI manages authentication, configuration, and
|
|
9
|
+
interaction with Uffizzi APIs.
|
|
10
10
|
|
|
11
11
|
For more information on the uffizzi CLI, see:
|
|
12
|
-
https://
|
|
12
|
+
https://docs.uffizzi.com/references/cli/
|
|
13
13
|
|
|
14
14
|
## GROUP
|
|
15
15
|
GROUP is one of the following:
|
|
16
|
-
|
|
16
|
+
cluster
|
|
17
|
+
Manage virtual clusters
|
|
18
|
+
|
|
17
19
|
config
|
|
18
20
|
Configure the uffizzi CLI
|
|
19
|
-
|
|
21
|
+
|
|
20
22
|
connect
|
|
21
23
|
Grant a Uffizzi user account access to external services
|
|
22
24
|
|
|
23
|
-
|
|
24
|
-
Manage Uffizzi previews and view logs
|
|
25
|
+
compose
|
|
26
|
+
Manage Uffizzi compose environments (previews) and view logs
|
|
25
27
|
|
|
26
28
|
project
|
|
27
|
-
Manage Uffizzi project resources including compose files for
|
|
28
|
-
specifying preview configurations and secrets
|
|
29
|
+
Manage Uffizzi project resources including compose files for
|
|
30
|
+
specifying compose environment (preview) configurations and secrets
|
|
29
31
|
|
|
30
32
|
## COMMAND
|
|
31
33
|
COMMAND is one of the following:
|
|
32
34
|
|
|
33
35
|
help
|
|
34
|
-
Show uffizzi documentation
|
|
36
|
+
Show uffizzi documentation
|
|
35
37
|
|
|
36
38
|
login
|
|
37
39
|
Log in to a Uffizzi user account
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: uffizzi-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.27
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh Thurman
|
|
@@ -9,8 +9,22 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2023-09-07 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: activesupport
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
requirements:
|
|
18
|
+
- - ">="
|
|
19
|
+
- !ruby/object:Gem::Version
|
|
20
|
+
version: '0'
|
|
21
|
+
type: :runtime
|
|
22
|
+
prerelease: false
|
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
24
|
+
requirements:
|
|
25
|
+
- - ">="
|
|
26
|
+
- !ruby/object:Gem::Version
|
|
27
|
+
version: '0'
|
|
14
28
|
- !ruby/object:Gem::Dependency
|
|
15
29
|
name: awesome_print
|
|
16
30
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -25,6 +39,34 @@ dependencies:
|
|
|
25
39
|
- - ">="
|
|
26
40
|
- !ruby/object:Gem::Version
|
|
27
41
|
version: '0'
|
|
42
|
+
- !ruby/object:Gem::Dependency
|
|
43
|
+
name: faker
|
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
|
45
|
+
requirements:
|
|
46
|
+
- - ">="
|
|
47
|
+
- !ruby/object:Gem::Version
|
|
48
|
+
version: '0'
|
|
49
|
+
type: :runtime
|
|
50
|
+
prerelease: false
|
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
52
|
+
requirements:
|
|
53
|
+
- - ">="
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: '0'
|
|
56
|
+
- !ruby/object:Gem::Dependency
|
|
57
|
+
name: launchy
|
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
|
59
|
+
requirements:
|
|
60
|
+
- - ">="
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: '0'
|
|
63
|
+
type: :runtime
|
|
64
|
+
prerelease: false
|
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - ">="
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '0'
|
|
28
70
|
- !ruby/object:Gem::Dependency
|
|
29
71
|
name: minitar
|
|
30
72
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -39,6 +81,34 @@ dependencies:
|
|
|
39
81
|
- - ">="
|
|
40
82
|
- !ruby/object:Gem::Version
|
|
41
83
|
version: '0'
|
|
84
|
+
- !ruby/object:Gem::Dependency
|
|
85
|
+
name: securerandom
|
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
|
87
|
+
requirements:
|
|
88
|
+
- - ">="
|
|
89
|
+
- !ruby/object:Gem::Version
|
|
90
|
+
version: '0'
|
|
91
|
+
type: :runtime
|
|
92
|
+
prerelease: false
|
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
94
|
+
requirements:
|
|
95
|
+
- - ">="
|
|
96
|
+
- !ruby/object:Gem::Version
|
|
97
|
+
version: '0'
|
|
98
|
+
- !ruby/object:Gem::Dependency
|
|
99
|
+
name: sentry-ruby
|
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
|
101
|
+
requirements:
|
|
102
|
+
- - ">="
|
|
103
|
+
- !ruby/object:Gem::Version
|
|
104
|
+
version: '0'
|
|
105
|
+
type: :runtime
|
|
106
|
+
prerelease: false
|
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
108
|
+
requirements:
|
|
109
|
+
- - ">="
|
|
110
|
+
- !ruby/object:Gem::Version
|
|
111
|
+
version: '0'
|
|
42
112
|
- !ruby/object:Gem::Dependency
|
|
43
113
|
name: thor
|
|
44
114
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -101,14 +171,14 @@ dependencies:
|
|
|
101
171
|
requirements:
|
|
102
172
|
- - "~>"
|
|
103
173
|
- !ruby/object:Gem::Version
|
|
104
|
-
version: '2.
|
|
174
|
+
version: '2.1'
|
|
105
175
|
type: :development
|
|
106
176
|
prerelease: false
|
|
107
177
|
version_requirements: !ruby/object:Gem::Requirement
|
|
108
178
|
requirements:
|
|
109
179
|
- - "~>"
|
|
110
180
|
- !ruby/object:Gem::Version
|
|
111
|
-
version: '2.
|
|
181
|
+
version: '2.1'
|
|
112
182
|
- !ruby/object:Gem::Dependency
|
|
113
183
|
name: byebug
|
|
114
184
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -165,20 +235,6 @@ dependencies:
|
|
|
165
235
|
- - ">="
|
|
166
236
|
- !ruby/object:Gem::Version
|
|
167
237
|
version: '0'
|
|
168
|
-
- !ruby/object:Gem::Dependency
|
|
169
|
-
name: faker
|
|
170
|
-
requirement: !ruby/object:Gem::Requirement
|
|
171
|
-
requirements:
|
|
172
|
-
- - ">="
|
|
173
|
-
- !ruby/object:Gem::Version
|
|
174
|
-
version: '0'
|
|
175
|
-
type: :development
|
|
176
|
-
prerelease: false
|
|
177
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
178
|
-
requirements:
|
|
179
|
-
- - ">="
|
|
180
|
-
- !ruby/object:Gem::Version
|
|
181
|
-
version: '0'
|
|
182
238
|
- !ruby/object:Gem::Dependency
|
|
183
239
|
name: minitest
|
|
184
240
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -362,6 +418,8 @@ files:
|
|
|
362
418
|
- lib/uffizzi.rb
|
|
363
419
|
- lib/uffizzi/auth_helper.rb
|
|
364
420
|
- lib/uffizzi/cli.rb
|
|
421
|
+
- lib/uffizzi/cli/account.rb
|
|
422
|
+
- lib/uffizzi/cli/cluster.rb
|
|
365
423
|
- lib/uffizzi/cli/common.rb
|
|
366
424
|
- lib/uffizzi/cli/config.rb
|
|
367
425
|
- lib/uffizzi/cli/connect.rb
|
|
@@ -380,19 +438,67 @@ files:
|
|
|
380
438
|
- lib/uffizzi/config_file.rb
|
|
381
439
|
- lib/uffizzi/date_helper.rb
|
|
382
440
|
- lib/uffizzi/error.rb
|
|
441
|
+
- lib/uffizzi/helpers/config_helper.rb
|
|
383
442
|
- lib/uffizzi/helpers/connect_helper.rb
|
|
443
|
+
- lib/uffizzi/helpers/file_helper.rb
|
|
444
|
+
- lib/uffizzi/helpers/login_helper.rb
|
|
384
445
|
- lib/uffizzi/helpers/project_helper.rb
|
|
385
446
|
- lib/uffizzi/promt.rb
|
|
386
447
|
- lib/uffizzi/response_helper.rb
|
|
448
|
+
- lib/uffizzi/services/cluster_service.rb
|
|
387
449
|
- lib/uffizzi/services/command_service.rb
|
|
388
450
|
- lib/uffizzi/services/compose_file_service.rb
|
|
389
451
|
- lib/uffizzi/services/env_variables_service.rb
|
|
452
|
+
- lib/uffizzi/services/github_service.rb
|
|
453
|
+
- lib/uffizzi/services/kubeconfig_service.rb
|
|
390
454
|
- lib/uffizzi/services/preview_service.rb
|
|
391
455
|
- lib/uffizzi/services/project_service.rb
|
|
392
456
|
- lib/uffizzi/services/volume_parser_service.rb
|
|
393
457
|
- lib/uffizzi/shell.rb
|
|
458
|
+
- lib/uffizzi/token.rb
|
|
394
459
|
- lib/uffizzi/version.rb
|
|
395
460
|
- man/uffizzi
|
|
461
|
+
- man/uffizzi-account
|
|
462
|
+
- man/uffizzi-account-list
|
|
463
|
+
- man/uffizzi-account-list.html
|
|
464
|
+
- man/uffizzi-account-list.ronn
|
|
465
|
+
- man/uffizzi-account-set-default
|
|
466
|
+
- man/uffizzi-account-set-default.html
|
|
467
|
+
- man/uffizzi-account-set-default.ronn
|
|
468
|
+
- man/uffizzi-account.html
|
|
469
|
+
- man/uffizzi-account.ronn
|
|
470
|
+
- man/uffizzi-cluster
|
|
471
|
+
- man/uffizzi-cluster-create
|
|
472
|
+
- man/uffizzi-cluster-create.ronn
|
|
473
|
+
- man/uffizzi-cluster-delete
|
|
474
|
+
- man/uffizzi-cluster-delete.ronn
|
|
475
|
+
- man/uffizzi-cluster-describe
|
|
476
|
+
- man/uffizzi-cluster-describe.ronn
|
|
477
|
+
- man/uffizzi-cluster-list
|
|
478
|
+
- man/uffizzi-cluster-list.ronn
|
|
479
|
+
- man/uffizzi-cluster-update-kubeconfig
|
|
480
|
+
- man/uffizzi-cluster-update-kubeconfig.ronn
|
|
481
|
+
- man/uffizzi-cluster.ronn
|
|
482
|
+
- man/uffizzi-compose
|
|
483
|
+
- man/uffizzi-compose-create
|
|
484
|
+
- man/uffizzi-compose-create.ronn
|
|
485
|
+
- man/uffizzi-compose-delete
|
|
486
|
+
- man/uffizzi-compose-delete.ronn
|
|
487
|
+
- man/uffizzi-compose-describe
|
|
488
|
+
- man/uffizzi-compose-describe.ronn
|
|
489
|
+
- man/uffizzi-compose-events
|
|
490
|
+
- man/uffizzi-compose-events.ronn
|
|
491
|
+
- man/uffizzi-compose-list
|
|
492
|
+
- man/uffizzi-compose-list.ronn
|
|
493
|
+
- man/uffizzi-compose-service-list
|
|
494
|
+
- man/uffizzi-compose-service-list.ronn
|
|
495
|
+
- man/uffizzi-compose-service-logs
|
|
496
|
+
- man/uffizzi-compose-service-logs.ronn
|
|
497
|
+
- man/uffizzi-compose-update
|
|
498
|
+
- man/uffizzi-compose-update.ronn
|
|
499
|
+
- man/uffizzi-compose.ronn
|
|
500
|
+
- man/uffizzi-compose_service_logs
|
|
501
|
+
- man/uffizzi-compose_service_logs.ronn
|
|
396
502
|
- man/uffizzi-config
|
|
397
503
|
- man/uffizzi-config.ronn
|
|
398
504
|
- man/uffizzi-connect
|
|
@@ -415,6 +521,7 @@ files:
|
|
|
415
521
|
- man/uffizzi-login-by-identity-token
|
|
416
522
|
- man/uffizzi-login-by-identity-token.html
|
|
417
523
|
- man/uffizzi-login-by-identity-token.ronn
|
|
524
|
+
- man/uffizzi-login.html
|
|
418
525
|
- man/uffizzi-login.ronn
|
|
419
526
|
- man/uffizzi-logout
|
|
420
527
|
- man/uffizzi-logout.ronn
|
|
@@ -453,6 +560,10 @@ files:
|
|
|
453
560
|
- man/uffizzi-project-delete.ronn
|
|
454
561
|
- man/uffizzi-project-describe
|
|
455
562
|
- man/uffizzi-project-describe.ronn
|
|
563
|
+
- man/uffizzi-project-preview-describe
|
|
564
|
+
- man/uffizzi-project-preview-describe.ronn
|
|
565
|
+
- man/uffizzi-project-preview-set
|
|
566
|
+
- man/uffizzi-project-preview-set.ronn
|
|
456
567
|
- man/uffizzi-project-secret
|
|
457
568
|
- man/uffizzi-project-secret-create
|
|
458
569
|
- man/uffizzi-project-secret-create.ronn
|
|
@@ -463,6 +574,7 @@ files:
|
|
|
463
574
|
- man/uffizzi-project-secret.ronn
|
|
464
575
|
- man/uffizzi-project-set-default
|
|
465
576
|
- man/uffizzi-project-set-default.ronn
|
|
577
|
+
- man/uffizzi-project.html
|
|
466
578
|
- man/uffizzi-project.ronn
|
|
467
579
|
- man/uffizzi.html
|
|
468
580
|
- man/uffizzi.ronn
|
|
@@ -488,7 +600,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
488
600
|
- !ruby/object:Gem::Version
|
|
489
601
|
version: '0'
|
|
490
602
|
requirements: []
|
|
491
|
-
rubygems_version: 3.3.
|
|
603
|
+
rubygems_version: 3.3.5
|
|
492
604
|
signing_key:
|
|
493
605
|
specification_version: 4
|
|
494
606
|
summary: uffizzi-cli
|