-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
126 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
uffizzi-cli (2.4.5) | ||
uffizzi-cli (2.4.6) | ||
activesupport | ||
awesome_print | ||
faker | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Uffizzi | ||
VERSION = '2.4.5' | ||
VERSION = '2.4.6' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,55 @@ | ||
$ uffizzi -h | ||
uffizzi - manage Uffizzi resources | ||
$ uffizzi install help | ||
uffizzi-install - install the uffizzi platform | ||
================================================================ | ||
|
||
## SYNOPSIS | ||
uffizzi GROUP | COMMAND | ||
uffizzi install [HOSTNAME] --email=[EMAIL] | ||
|
||
## DESCRIPTION | ||
The uffizzi CLI manages authentication, configuration, and | ||
interaction with Uffizzi APIs. | ||
Install the Uffizzi platform data plane (controller and operator) on a host cluster. | ||
|
||
If you want to self-host the Uffizzi platform data and control planes, you should | ||
use Uffizzi Enterprise instead. Contact [email protected] to get started. | ||
|
||
For more information on the uffizzi CLI, see: | ||
https://docs.uffizzi.com/references/cli/ | ||
For more information on the Uffizzi installation process, see: | ||
https://docs.uffizzi.com/install/platform | ||
|
||
## GROUP | ||
GROUP is one of the following: | ||
cluster | ||
Manage virtual clusters | ||
## POSITIONAL ARGUMENTS | ||
|
||
config | ||
Configure the uffizzi CLI | ||
HOSTNAME | ||
The hostname where your installation will be publicly available. E.g. uffizzi.example.com | ||
The output of the `install` command is an IP address or hostname where your instance | ||
of the Uffizzi controller service is available. Uffizzi expects this service to be publicly | ||
available at the specified HOSTNAME. Before you can create Uffizzi environments | ||
on your installation, be sure to configure your DNS to point HOSTNAME to the IP | ||
or hostname output by this command. | ||
|
||
connect | ||
Grant a Uffizzi user account access to external services | ||
A business email, required for letsencrypt certificate authority. | ||
|
||
compose | ||
Manage Uffizzi compose environments (previews) and view logs | ||
## FLAGS | ||
|
||
dev | ||
Creates a Uffizzi cluster preconfigured for development workflows | ||
A business email required for letsencrypt | ||
|
||
install | ||
Install the Uffizzi platform data plane on a host cluster. | ||
--context | ||
The name of the kubeconfig context to use. If no context is specified, your | ||
kubeconfig current context is used. | ||
|
||
project | ||
Manage Uffizzi project resources including compose files for | ||
specifying compose environment (preview) configurations and secrets | ||
--namespace | ||
The namespace where Uffizzi platform will be installed. If no namespace is | ||
specified, the 'default' namespace is used. | ||
|
||
## COMMAND | ||
COMMAND is one of the following: | ||
--help | ||
Display this help page and exit | ||
|
||
help | ||
Show uffizzi documentation | ||
## EXAMPLES | ||
|
||
login | ||
Log in to a Uffizzi user account | ||
To install Uffizzi using the current context at hostname 'uffizzi.example.com', run: | ||
|
||
logout | ||
Log out of a Uffizzi user account | ||
|
||
version | ||
Print version information for uffizzi CLI | ||
$ uffizzi install uffizzi.example.com --email="[email protected]" | ||
|
||
To install Uffizzi using context 'foo' and namespace 'bar', run: | ||
|
||
$ uffizzi install uffizzi.example.com --email="[email protected]" \ | ||
--context='foo' --namespace='bar' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
$ uffizzi uninstall help | ||
uffizzi-uninstall - uninstall the uffizzi platform | ||
================================================================ | ||
|
||
## SYNOPSIS | ||
uffizzi uninstall | ||
|
||
## DESCRIPTION | ||
Uninstall the Uffizzi platform data plane (controller and operator) from a host cluster. | ||
|
||
For more information on the Uffizzi installation process, see: | ||
https://docs.uffizzi.com/install/platform | ||
|
||
## FLAGS | ||
|
||
--help | ||
Display this help page and exit | ||
|
||
## EXAMPLES | ||
|
||
To uninstall Uffizzi, run: | ||
|
||
$ uffizzi uninstall |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters