uffizzi-cli 1.0.4 → 2.0.29
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
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
uffizzi-compose-service-list - list the container services
|
|
2
|
+
of a given compose environment (preview)
|
|
3
|
+
================================================================
|
|
4
|
+
|
|
5
|
+
## SYNOPSIS
|
|
6
|
+
uffizzi compose service list [COMPOSE_ENVIRONMENT_ID] [UFFIZZI_WIDE_FLAG ...]
|
|
7
|
+
|
|
8
|
+
## DESCRIPTION
|
|
9
|
+
Shows a list of the container services that make up a given
|
|
10
|
+
compose environment (preview) deployment.
|
|
11
|
+
|
|
12
|
+
This command can fail for the following reasons:
|
|
13
|
+
- There is no compose environment (preview)
|
|
14
|
+
with the given COMPOSE_ENVIRONMENT_ID
|
|
15
|
+
|
|
16
|
+
For more information on preview services, see:
|
|
17
|
+
https://docs.uffizzi.com/references/cli/
|
|
18
|
+
|
|
19
|
+
## POSITIONAL ARGUMENTS
|
|
20
|
+
[COMPOSE_ENVIRONMENT_ID]
|
|
21
|
+
The ID of the compose environment (preview) you want to list services for.
|
|
22
|
+
|
|
23
|
+
## UFFIZZI WIDE FLAGS
|
|
24
|
+
These flags are available to all commands: --project. Run $ uffizzi
|
|
25
|
+
help for details.
|
|
26
|
+
|
|
27
|
+
## EXAMPLES
|
|
28
|
+
The following command lists the container services
|
|
29
|
+
for a compose environment (preview) with
|
|
30
|
+
COMPOSE_ENVIRONMENT_ID deployment-56:
|
|
31
|
+
|
|
32
|
+
$ uffizzi compose service list deployment-56
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
.\" generated with Ronn-NG/v0.9.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.9.1
|
|
3
|
+
.TH "UFFIZZI\-COMPOSE\-SERVICE\-LOGS" "" "August 2023" ""
|
|
4
|
+
.SH "NAME"
|
|
5
|
+
\fBuffizzi\-compose\-service\-logs\fR
|
|
6
|
+
.P
|
|
7
|
+
uffizzi\-compose\-service\-logs \- show the logs for a container service of a compose environment (preview) ================================================================
|
|
8
|
+
.SH "SYNOPSIS"
|
|
9
|
+
.nf
|
|
10
|
+
uffizzi compose service logs LOG_TYPE [COMPOSE_ENVIRONMENT_ID] [SERVICE] [UFFIZZI_WIDE_FLAG \|\.\|\.\|\.]
|
|
11
|
+
.fi
|
|
12
|
+
.SH "DESCRIPTION"
|
|
13
|
+
.nf
|
|
14
|
+
Shows the logs for a given container service of a given compose environment (preview)\.
|
|
15
|
+
|
|
16
|
+
This command can fail for the following reasons:
|
|
17
|
+
\- There is no compose environment (preview) with the given COMPOSE_ENVIRONMENT_ID
|
|
18
|
+
\- There is no service with the name SERVICE
|
|
19
|
+
|
|
20
|
+
For more information on service logs, see:
|
|
21
|
+
https://docs\.uffizzi\.com/references/cli/
|
|
22
|
+
.fi
|
|
23
|
+
.SH "LOG_TYPE"
|
|
24
|
+
.nf
|
|
25
|
+
LOG_TYPE is one of the following:
|
|
26
|
+
|
|
27
|
+
build
|
|
28
|
+
The build logs of a service\.
|
|
29
|
+
|
|
30
|
+
container
|
|
31
|
+
The container logs of a service\.
|
|
32
|
+
.fi
|
|
33
|
+
.SH "POSITIONAL ARGUMENTS"
|
|
34
|
+
.nf
|
|
35
|
+
[COMPOSE_ENVIRONMENT_ID]
|
|
36
|
+
The ID of the compose environment (preview) that includes the service you want to
|
|
37
|
+
show logs for\.
|
|
38
|
+
|
|
39
|
+
[SERVICE]
|
|
40
|
+
The name of the service you want to show logs for\.
|
|
41
|
+
.fi
|
|
42
|
+
.SH "UFFIZZI WIDE FLAGS"
|
|
43
|
+
.nf
|
|
44
|
+
These flags are available to all commands: \-\-project\. Run $ uffizzi
|
|
45
|
+
help for details\.
|
|
46
|
+
.fi
|
|
47
|
+
.SH "EXAMPLES"
|
|
48
|
+
.nf
|
|
49
|
+
The following command shows build logs for the service web\-app of the
|
|
50
|
+
compose environment (preview) with ID deployment\-14:
|
|
51
|
+
|
|
52
|
+
$ uffizzi compose service logs build deployment\-14 web\-app
|
|
53
|
+
|
|
54
|
+
The following command shows container logs for the service postgres\-db of
|
|
55
|
+
the compose environment (preview) with ID deployment\-14:
|
|
56
|
+
|
|
57
|
+
$ uffizzi compose service logs container deployment\-14 postgres\-db
|
|
58
|
+
.fi
|
|
59
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
uffizzi-compose-service-logs - show the logs for a container service
|
|
2
|
+
of a compose environment (preview)
|
|
3
|
+
================================================================
|
|
4
|
+
|
|
5
|
+
## SYNOPSIS
|
|
6
|
+
uffizzi compose service logs LOG_TYPE [COMPOSE_ENVIRONMENT_ID] [SERVICE] [UFFIZZI_WIDE_FLAG ...]
|
|
7
|
+
|
|
8
|
+
## DESCRIPTION
|
|
9
|
+
Shows the logs for a given container service of a given compose environment (preview).
|
|
10
|
+
|
|
11
|
+
This command can fail for the following reasons:
|
|
12
|
+
- There is no compose environment (preview) with the given COMPOSE_ENVIRONMENT_ID
|
|
13
|
+
- There is no service with the name SERVICE
|
|
14
|
+
|
|
15
|
+
For more information on service logs, see:
|
|
16
|
+
https://docs.uffizzi.com/references/cli/
|
|
17
|
+
|
|
18
|
+
## LOG_TYPE
|
|
19
|
+
LOG_TYPE is one of the following:
|
|
20
|
+
|
|
21
|
+
build
|
|
22
|
+
The build logs of a service.
|
|
23
|
+
|
|
24
|
+
container
|
|
25
|
+
The container logs of a service.
|
|
26
|
+
|
|
27
|
+
## POSITIONAL ARGUMENTS
|
|
28
|
+
[COMPOSE_ENVIRONMENT_ID]
|
|
29
|
+
The ID of the compose environment (preview) that includes the service you want to
|
|
30
|
+
show logs for.
|
|
31
|
+
|
|
32
|
+
[SERVICE]
|
|
33
|
+
The name of the service you want to show logs for.
|
|
34
|
+
|
|
35
|
+
## UFFIZZI WIDE FLAGS
|
|
36
|
+
These flags are available to all commands: --project. Run $ uffizzi
|
|
37
|
+
help for details.
|
|
38
|
+
|
|
39
|
+
## EXAMPLES
|
|
40
|
+
The following command shows build logs for the service web-app of the
|
|
41
|
+
compose environment (preview) with ID deployment-14:
|
|
42
|
+
|
|
43
|
+
$ uffizzi compose service logs build deployment-14 web-app
|
|
44
|
+
|
|
45
|
+
The following command shows container logs for the service postgres-db of
|
|
46
|
+
the compose environment (preview) with ID deployment-14:
|
|
47
|
+
|
|
48
|
+
$ uffizzi compose service logs container deployment-14 postgres-db
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
.\" generated with Ronn-NG/v0.9.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.9.1
|
|
3
|
+
.TH "UPDATE" "" "August 2023" ""
|
|
4
|
+
.SH "NAME"
|
|
5
|
+
\fBupdate\fR \- update a compose environment (preview)
|
|
6
|
+
.SH "SYNOPSIS"
|
|
7
|
+
.nf
|
|
8
|
+
uffizzi compose update [COMPOSE_ENVIRONMENT_ID] [COMPOSE_FILE] [UFFIZZI_WIDE_FLAG \|\.\|\.\|\.]
|
|
9
|
+
.fi
|
|
10
|
+
.SH "DESCRIPTION"
|
|
11
|
+
.nf
|
|
12
|
+
Given a compose environment (preview) ID and new compose file,
|
|
13
|
+
update a compose environment (preview)\. Updating a compose
|
|
14
|
+
environment (preview) does not change its compose environment (preview) URL\.
|
|
15
|
+
|
|
16
|
+
This command can fail for the following reasons:
|
|
17
|
+
\- There is no compose environment (preview) with the given COMPOSE_ENVIRONMENT_ID
|
|
18
|
+
\- The COMPOSE_FILE specified is invalid
|
|
19
|
+
|
|
20
|
+
For more information on Uffizzi previews, see:
|
|
21
|
+
https://docs\.uffizzi\.com/references/cli/
|
|
22
|
+
.fi
|
|
23
|
+
.SH "POSITIONAL ARGUMENTS"
|
|
24
|
+
.nf
|
|
25
|
+
[COMPOSE_ENVIRONMENT_ID]
|
|
26
|
+
The ID of the compose environment (preview) that you want to update\.
|
|
27
|
+
|
|
28
|
+
[COMPOSE_FILE]
|
|
29
|
+
The new compose file you want to compose environment (preview)\.
|
|
30
|
+
.fi
|
|
31
|
+
.SH "FLAGS"
|
|
32
|
+
.nf
|
|
33
|
+
\-\-set\-labels=METADATA
|
|
34
|
+
Metadata of deployment that contains any information which can
|
|
35
|
+
be useful for filtering deployments\.
|
|
36
|
+
.fi
|
|
37
|
+
.SH "UFFIZZI WIDE FLAGS"
|
|
38
|
+
.nf
|
|
39
|
+
These flags are available to all commands: \-\-project\. Run $ uffizzi
|
|
40
|
+
help for details\.
|
|
41
|
+
.fi
|
|
42
|
+
.SH "EXAMPLES"
|
|
43
|
+
.nf
|
|
44
|
+
The following command updates a compose environment (preview)
|
|
45
|
+
with ID deployment\-67 using compose file docker\-compose\.alt\.yml:
|
|
46
|
+
|
|
47
|
+
$ uffizzi compose update deployment\-67 docker\-compose\.alt\.yml
|
|
48
|
+
|
|
49
|
+
To update a compose with single label, run:
|
|
50
|
+
|
|
51
|
+
$ uffizzi compose update \e
|
|
52
|
+
deployment\-67 docker\-compose\.alt\.yml \e
|
|
53
|
+
\-\-set\-labels github\.repo=my_repo
|
|
54
|
+
|
|
55
|
+
To update a compose with multiple labels, run:
|
|
56
|
+
|
|
57
|
+
$ uffizzi compose update \e
|
|
58
|
+
deployment\-67 docker\-compose\.alt\.yml \e
|
|
59
|
+
\-\-set\-labels="github\.repo=my_repo github\.pull_request\.number=23"
|
|
60
|
+
.fi
|
|
61
|
+
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
uffizzi compose update - update a compose environment (preview)
|
|
2
|
+
================================================================
|
|
3
|
+
|
|
4
|
+
## SYNOPSIS
|
|
5
|
+
uffizzi compose update [COMPOSE_ENVIRONMENT_ID] [COMPOSE_FILE] [UFFIZZI_WIDE_FLAG ...]
|
|
6
|
+
|
|
7
|
+
## DESCRIPTION
|
|
8
|
+
Given a compose environment (preview) ID and new compose file,
|
|
9
|
+
update a compose environment (preview). Updating a compose
|
|
10
|
+
environment (preview) does not change its compose environment (preview) URL.
|
|
11
|
+
|
|
12
|
+
This command can fail for the following reasons:
|
|
13
|
+
- There is no compose environment (preview) with the given COMPOSE_ENVIRONMENT_ID
|
|
14
|
+
- The COMPOSE_FILE specified is invalid
|
|
15
|
+
|
|
16
|
+
For more information on Uffizzi previews, see:
|
|
17
|
+
https://docs.uffizzi.com/references/cli/
|
|
18
|
+
|
|
19
|
+
## POSITIONAL ARGUMENTS
|
|
20
|
+
[COMPOSE_ENVIRONMENT_ID]
|
|
21
|
+
The ID of the compose environment (preview) that you want to update.
|
|
22
|
+
|
|
23
|
+
[COMPOSE_FILE]
|
|
24
|
+
The new compose file you want to compose environment (preview).
|
|
25
|
+
|
|
26
|
+
## FLAGS
|
|
27
|
+
--set-labels=METADATA
|
|
28
|
+
Metadata of deployment that contains any information which can
|
|
29
|
+
be useful for filtering deployments.
|
|
30
|
+
|
|
31
|
+
## UFFIZZI WIDE FLAGS
|
|
32
|
+
These flags are available to all commands: --project. Run $ uffizzi
|
|
33
|
+
help for details.
|
|
34
|
+
|
|
35
|
+
## EXAMPLES
|
|
36
|
+
The following command updates a compose environment (preview)
|
|
37
|
+
with ID deployment-67 using compose file docker-compose.alt.yml:
|
|
38
|
+
|
|
39
|
+
$ uffizzi compose update deployment-67 docker-compose.alt.yml
|
|
40
|
+
|
|
41
|
+
To update a compose with single label, run:
|
|
42
|
+
|
|
43
|
+
$ uffizzi compose update \
|
|
44
|
+
deployment-67 docker-compose.alt.yml \
|
|
45
|
+
--set-labels github.repo=my_repo
|
|
46
|
+
|
|
47
|
+
To update a compose with multiple labels, run:
|
|
48
|
+
|
|
49
|
+
$ uffizzi compose update \
|
|
50
|
+
deployment-67 docker-compose.alt.yml \
|
|
51
|
+
--set-labels="github.repo=my_repo github.pull_request.number=23"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
uffizzi-compose - manage previews
|
|
2
|
+
================================================================
|
|
3
|
+
|
|
4
|
+
## SYNOPSIS
|
|
5
|
+
uffizzi compose COMMAND [UFFIZZI_WIDE_FLAG ...]
|
|
6
|
+
|
|
7
|
+
## DESCRIPTION
|
|
8
|
+
Manage Uffizzi previews
|
|
9
|
+
|
|
10
|
+
For more information on Uffizzi previews, see:
|
|
11
|
+
https://docs.uffizzi.com/references/cli/
|
|
12
|
+
|
|
13
|
+
## UFFIZZI WIDE FLAGS
|
|
14
|
+
These flags are available to all commands: --project. Run $ uffizzi
|
|
15
|
+
help for details.
|
|
16
|
+
|
|
17
|
+
## COMMANDS
|
|
18
|
+
COMMAND is one of the following:
|
|
19
|
+
|
|
20
|
+
create
|
|
21
|
+
Create a compose environment (preview)
|
|
22
|
+
|
|
23
|
+
delete
|
|
24
|
+
Delete a compose environment (preview)
|
|
25
|
+
|
|
26
|
+
describe
|
|
27
|
+
Display details of a compose environment (preview)
|
|
28
|
+
|
|
29
|
+
list
|
|
30
|
+
List all compose environments (previews)
|
|
31
|
+
|
|
32
|
+
##
|
|
33
|
+
Run 'uffizzi compose COMMAND --help' for more information on a command.
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
.\" generated with Ronn-NG/v0.9.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.9.1
|
|
3
|
+
.TH "UFFIZZI\-COMPOSE_SERVICE_LOGS" "" "August 2023" ""
|
|
4
|
+
.SH "NAME"
|
|
5
|
+
\fBuffizzi\-compose_service_logs\fR
|
|
6
|
+
.P
|
|
7
|
+
uffizzi\-compose\-service\-logs \- show the logs for a container service of a compose environment (preview) ================================================================
|
|
8
|
+
.SH "SYNOPSIS"
|
|
9
|
+
.nf
|
|
10
|
+
uffizzi compose service logs LOG_TYPE [COMPOSE_ENVIRONMENT_ID] [SERVICE] [UFFIZZI_WIDE_FLAG \|\.\|\.\|\.]
|
|
11
|
+
.fi
|
|
12
|
+
.SH "DESCRIPTION"
|
|
13
|
+
.nf
|
|
14
|
+
Shows the logs for a given container service of a given compose environment (preview)\.
|
|
15
|
+
|
|
16
|
+
This command can fail for the following reasons:
|
|
17
|
+
\- There is no compose environment (preview) with the given COMPOSE_ENVIRONMENT_ID
|
|
18
|
+
\- There is no service with the name SERVICE
|
|
19
|
+
|
|
20
|
+
For more information on service logs, see:
|
|
21
|
+
https://docs\.uffizzi\.com/references/cli/
|
|
22
|
+
.fi
|
|
23
|
+
.SH "LOG_TYPE"
|
|
24
|
+
.nf
|
|
25
|
+
LOG_TYPE is one of the following:
|
|
26
|
+
|
|
27
|
+
build
|
|
28
|
+
The build logs of a service\.
|
|
29
|
+
|
|
30
|
+
container
|
|
31
|
+
The container logs of a service\.
|
|
32
|
+
.fi
|
|
33
|
+
.SH "POSITIONAL ARGUMENTS"
|
|
34
|
+
.nf
|
|
35
|
+
[COMPOSE_ENVIRONMENT_ID]
|
|
36
|
+
The ID of the compose environment (preview) that includes the service you want to
|
|
37
|
+
show logs for\.
|
|
38
|
+
|
|
39
|
+
[SERVICE]
|
|
40
|
+
The name of the service you want to show logs for\.
|
|
41
|
+
.fi
|
|
42
|
+
.SH "UFFIZZI WIDE FLAGS"
|
|
43
|
+
.nf
|
|
44
|
+
These flags are available to all commands: \-\-project\. Run $ uffizzi
|
|
45
|
+
help for details\.
|
|
46
|
+
.fi
|
|
47
|
+
.SH "EXAMPLES"
|
|
48
|
+
.nf
|
|
49
|
+
The following command shows build logs for the service web\-app of the
|
|
50
|
+
compose environment (preview) with ID deployment\-14:
|
|
51
|
+
|
|
52
|
+
$ uffizzi compose service logs build deployment\-14 web\-app
|
|
53
|
+
|
|
54
|
+
The following command shows container logs for the service postgres\-db of
|
|
55
|
+
the compose environment (preview) with ID deployment\-14:
|
|
56
|
+
|
|
57
|
+
$ uffizzi compose service logs container deployment\-14 postgres\-db
|
|
58
|
+
.fi
|
|
59
|
+
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
uffizzi-compose-service-logs - show the logs for a container service
|
|
2
|
+
of a compose environment (preview)
|
|
3
|
+
================================================================
|
|
4
|
+
|
|
5
|
+
## SYNOPSIS
|
|
6
|
+
uffizzi compose service logs LOG_TYPE [COMPOSE_ENVIRONMENT_ID] [SERVICE] [UFFIZZI_WIDE_FLAG ...]
|
|
7
|
+
|
|
8
|
+
## DESCRIPTION
|
|
9
|
+
Shows the logs for a given container service of a given compose environment (preview).
|
|
10
|
+
|
|
11
|
+
This command can fail for the following reasons:
|
|
12
|
+
- There is no compose environment (preview) with the given COMPOSE_ENVIRONMENT_ID
|
|
13
|
+
- There is no service with the name SERVICE
|
|
14
|
+
|
|
15
|
+
For more information on service logs, see:
|
|
16
|
+
https://docs.uffizzi.com/references/cli/
|
|
17
|
+
|
|
18
|
+
## LOG_TYPE
|
|
19
|
+
LOG_TYPE is one of the following:
|
|
20
|
+
|
|
21
|
+
build
|
|
22
|
+
The build logs of a service.
|
|
23
|
+
|
|
24
|
+
container
|
|
25
|
+
The container logs of a service.
|
|
26
|
+
|
|
27
|
+
## POSITIONAL ARGUMENTS
|
|
28
|
+
[COMPOSE_ENVIRONMENT_ID]
|
|
29
|
+
The ID of the compose environment (preview) that includes the service you want to
|
|
30
|
+
show logs for.
|
|
31
|
+
|
|
32
|
+
[SERVICE]
|
|
33
|
+
The name of the service you want to show logs for.
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## UFFIZZI WIDE FLAGS
|
|
37
|
+
These flags are available to all commands: --project. Run $ uffizzi
|
|
38
|
+
help for details.
|
|
39
|
+
|
|
40
|
+
## EXAMPLES
|
|
41
|
+
The following command shows build logs for the service web-app of the
|
|
42
|
+
compose environment (preview) with ID deployment-14:
|
|
43
|
+
|
|
44
|
+
$ uffizzi compose service logs build deployment-14 web-app
|
|
45
|
+
|
|
46
|
+
The following command shows container logs for the service postgres-db of
|
|
47
|
+
the compose environment (preview) with ID deployment-14:
|
|
48
|
+
|
|
49
|
+
$ uffizzi compose service logs container deployment-14 postgres-db
|
|
50
|
+
|
data/man/uffizzi-config
CHANGED
|
@@ -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 "CONFIG" "" "
|
|
3
|
+
.TH "CONFIG" "" "August 2023" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBconfig\fR \- configure the Uffizzi command\-line interface (CLI)
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -14,7 +14,7 @@ If COMMAND is not specified, uffizzi config launches an interactive set up
|
|
|
14
14
|
guide\.
|
|
15
15
|
|
|
16
16
|
For more information on configuration options, see:
|
|
17
|
-
https://
|
|
17
|
+
https://docs\.uffizzi\.com/references/cli/
|
|
18
18
|
.fi
|
|
19
19
|
.SH "UFFIZZI WIDE FLAGS"
|
|
20
20
|
.nf
|
data/man/uffizzi-config.ronn
CHANGED
|
@@ -10,7 +10,7 @@ uffizzi config - configure the Uffizzi command-line interface (CLI)
|
|
|
10
10
|
guide.
|
|
11
11
|
|
|
12
12
|
For more information on configuration options, see:
|
|
13
|
-
https://
|
|
13
|
+
https://docs.uffizzi.com/references/cli/
|
|
14
14
|
|
|
15
15
|
## UFFIZZI WIDE FLAGS
|
|
16
16
|
These flags are available to all commands: --project. Run $ uffizzi
|
data/man/uffizzi-connect
CHANGED
|
@@ -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\-CONNECT" "" "August
|
|
3
|
+
.TH "UFFIZZI\-CONNECT" "" "August 2023" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBuffizzi\-connect\fR \- grant a Uffizzi user account access to external services
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -8,9 +8,7 @@
|
|
|
8
8
|
.SH "DESCRIPTION"
|
|
9
9
|
Grants a Uffizzi user account access to external services\.
|
|
10
10
|
.P
|
|
11
|
-
For more information on connecting to external services, see:
|
|
12
|
-
.br
|
|
13
|
-
https://github\.com/UffizziCloud/uffizzi_cli
|
|
11
|
+
For more information on connecting to external services, see: https://docs\.uffizzi\.com/references/cli/
|
|
14
12
|
.SH "COMMANDS"
|
|
15
13
|
COMMAND is one of the following:
|
|
16
14
|
.TP
|
data/man/uffizzi-connect-acr
CHANGED
|
@@ -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\-CONNECT\-ACR" "" "August
|
|
3
|
+
.TH "UFFIZZI\-CONNECT\-ACR" "" "August 2023" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBuffizzi\-connect\-acr\fR \- grant a Uffizzi user account access to a private Azure Container Registry (ACR)
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -16,7 +16,7 @@ This command can fail for the following reasons: \- The active user does not hav
|
|
|
16
16
|
.P
|
|
17
17
|
For more information on connecting to external services, see:
|
|
18
18
|
.br
|
|
19
|
-
https://
|
|
19
|
+
https://docs\.uffizzi\.com/references/cli/
|
|
20
20
|
.P
|
|
21
21
|
For detailed instructions on configuring webhooks to send push notifications to Uffizzi, see:
|
|
22
22
|
.br
|
|
@@ -18,7 +18,7 @@ This command can fail for the following reasons:
|
|
|
18
18
|
- The given credentials are invalid.
|
|
19
19
|
|
|
20
20
|
For more information on connecting to external services, see:
|
|
21
|
-
https://
|
|
21
|
+
https://docs.uffizzi.com/references/cli/
|
|
22
22
|
|
|
23
23
|
For detailed instructions on configuring webhooks to send push
|
|
24
24
|
notifications to Uffizzi, see:
|
|
@@ -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\-CONNECT\-DOCKER\-HUB" "" "August
|
|
3
|
+
.TH "UFFIZZI\-CONNECT\-DOCKER\-HUB" "" "August 2023" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBuffizzi\-connect\-docker\-hub\fR \- grant a Uffizzi user account access to a private Docker Hub registry\.
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -16,7 +16,7 @@ This command can fail for the following reasons: \- The active user does not hav
|
|
|
16
16
|
.P
|
|
17
17
|
For more information on connecting to external services, see:
|
|
18
18
|
.br
|
|
19
|
-
https://
|
|
19
|
+
https://docs\.uffizzi\.com/references/cli/
|
|
20
20
|
.P
|
|
21
21
|
For detailed instructions on configuring webhooks to send push notifications to Uffizzi, see:
|
|
22
22
|
.br
|
|
@@ -18,7 +18,7 @@ This command can fail for the following reasons:
|
|
|
18
18
|
- The given credentials are invalid.
|
|
19
19
|
|
|
20
20
|
For more information on connecting to external services, see:
|
|
21
|
-
https://
|
|
21
|
+
https://docs.uffizzi.com/references/cli/
|
|
22
22
|
|
|
23
23
|
For detailed instructions on configuring webhooks to send push
|
|
24
24
|
notifications to Uffizzi, see:
|
|
@@ -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\-CONNECT\-DOCKER\-REGISTRY" "" "August
|
|
3
|
+
.TH "UFFIZZI\-CONNECT\-DOCKER\-REGISTRY" "" "August 2023" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBuffizzi\-connect\-docker\-registry\fR \- grant a Uffizzi user account access to a Docker Container Registry\.
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -16,7 +16,7 @@ This command can fail for the following reasons: \- The active user does not hav
|
|
|
16
16
|
.P
|
|
17
17
|
For more information on connecting to external services, see:
|
|
18
18
|
.br
|
|
19
|
-
https://
|
|
19
|
+
https://docs\.uffizzi\.com/references/cli/
|
|
20
20
|
.P
|
|
21
21
|
For detailed instructions on configuring webhooks to send push notifications to Uffizzi, see:
|
|
22
22
|
.br
|
|
@@ -18,7 +18,7 @@ This command can fail for the following reasons:
|
|
|
18
18
|
- The given credentials are invalid.
|
|
19
19
|
|
|
20
20
|
For more information on connecting to external services, see:
|
|
21
|
-
https://
|
|
21
|
+
https://docs.uffizzi.com/references/cli/
|
|
22
22
|
|
|
23
23
|
For detailed instructions on configuring webhooks to send push
|
|
24
24
|
notifications to Uffizzi, see:
|
data/man/uffizzi-connect-ecr
CHANGED
|
@@ -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\-CONNECT\-ECR" "" "August
|
|
3
|
+
.TH "UFFIZZI\-CONNECT\-ECR" "" "August 2023" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBuffizzi\-connect\-ecr\fR \- grant a Uffizzi user account access to a private Amazon Elastic Container Registry (ECR)
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -16,7 +16,7 @@ This command can fail for the following reasons: \- The active user does not hav
|
|
|
16
16
|
.P
|
|
17
17
|
For more information on connecting to external services, see:
|
|
18
18
|
.br
|
|
19
|
-
https://
|
|
19
|
+
https://docs\.uffizzi\.com/references/cli/
|
|
20
20
|
.P
|
|
21
21
|
For detailed instructions on configuring webhooks to send push notifications to Uffizzi, see:
|
|
22
22
|
.br
|
|
@@ -18,7 +18,7 @@ This command can fail for the following reasons:
|
|
|
18
18
|
- The given credentials are invalid.
|
|
19
19
|
|
|
20
20
|
For more information on connecting to external services, see:
|
|
21
|
-
https://
|
|
21
|
+
https://docs.uffizzi.com/references/cli/
|
|
22
22
|
|
|
23
23
|
For detailed instructions on configuring webhooks to send push
|
|
24
24
|
notifications to Uffizzi, see:
|
data/man/uffizzi-connect-gcr
CHANGED
|
@@ -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\-CONNECT\-GCR" "" "August
|
|
3
|
+
.TH "UFFIZZI\-CONNECT\-GCR" "" "August 2023" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBuffizzi\-connect\-gcr\fR \- grant a Uffizzi user account access to a private Google Container Registry (GCR)
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -16,7 +16,7 @@ This command can fail for the following reasons: \- The active user does not hav
|
|
|
16
16
|
.P
|
|
17
17
|
For more information on connecting to external services, see:
|
|
18
18
|
.br
|
|
19
|
-
https://
|
|
19
|
+
https://docs\.uffizzi\.com/references/cli/
|
|
20
20
|
.P
|
|
21
21
|
For detailed instructions on configuring webhooks to send push notifications to Uffizzi, see:
|
|
22
22
|
.br
|
|
@@ -17,7 +17,7 @@ This command can fail for the following reasons:
|
|
|
17
17
|
- The given credentials are invalid.
|
|
18
18
|
|
|
19
19
|
For more information on connecting to external services, see:
|
|
20
|
-
https://
|
|
20
|
+
https://docs.uffizzi.com/references/cli/
|
|
21
21
|
|
|
22
22
|
For detailed instructions on configuring webhooks to send push
|
|
23
23
|
notifications to Uffizzi, see:
|
data/man/uffizzi-connect-ghcr
CHANGED
|
@@ -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\-CONNECT\-GHCR" "" "August
|
|
3
|
+
.TH "UFFIZZI\-CONNECT\-GHCR" "" "August 2023" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBuffizzi\-connect\-ghcr\fR \- grant a Uffizzi user account access to a private GitHub Container Registry (GHCR)
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -16,7 +16,7 @@ This command can fail for the following reasons: \- The active user does not hav
|
|
|
16
16
|
.P
|
|
17
17
|
For more information on connecting to external services, see:
|
|
18
18
|
.br
|
|
19
|
-
https://
|
|
19
|
+
https://docs\.uffizzi\.com/references/cli/
|
|
20
20
|
.P
|
|
21
21
|
For detailed instructions on configuring webhooks to send push notifications to Uffizzi, see:
|
|
22
22
|
.br
|
|
@@ -18,7 +18,7 @@ This command can fail for the following reasons:
|
|
|
18
18
|
- The given credentials are invalid.
|
|
19
19
|
|
|
20
20
|
For more information on connecting to external services, see:
|
|
21
|
-
https://
|
|
21
|
+
https://docs.uffizzi.com/references/cli/
|
|
22
22
|
|
|
23
23
|
For detailed instructions on configuring webhooks to send push
|
|
24
24
|
notifications to Uffizzi, see:
|
data/man/uffizzi-connect.ronn
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
|
|
9
9
|
Grants a Uffizzi user account access to external services.
|
|
10
10
|
|
|
11
|
-
For more information on connecting to external services, see:
|
|
12
|
-
https://
|
|
11
|
+
For more information on connecting to external services, see:
|
|
12
|
+
https://docs.uffizzi.com/references/cli/
|
|
13
13
|
|
|
14
14
|
## COMMANDS
|
|
15
15
|
|
data/man/uffizzi-disconnect
CHANGED
|
@@ -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\-DISCONNECT" "" "
|
|
3
|
+
.TH "UFFIZZI\-DISCONNECT" "" "August 2023" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBuffizzi\-disconnect\fR \- revoke a Uffizzi user account access to external services
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -12,7 +12,7 @@ uffizzi disconnect COMMAND
|
|
|
12
12
|
Revokes a Uffizzi user account access to external services
|
|
13
13
|
|
|
14
14
|
For more information on connecting to external services, see:
|
|
15
|
-
https://
|
|
15
|
+
https://docs\.uffizzi\.com/references/cli/
|
|
16
16
|
.fi
|
|
17
17
|
.SH "COMMANDS"
|
|
18
18
|
.nf
|
data/man/uffizzi-disconnect.ronn
CHANGED
|
@@ -8,7 +8,7 @@ uffizzi-disconnect - revoke a Uffizzi user account access to external services
|
|
|
8
8
|
Revokes a Uffizzi user account access to external services
|
|
9
9
|
|
|
10
10
|
For more information on connecting to external services, see:
|
|
11
|
-
https://
|
|
11
|
+
https://docs.uffizzi.com/references/cli/
|
|
12
12
|
|
|
13
13
|
## COMMANDS
|
|
14
14
|
COMMAND is one of the following:
|