Skip to content

Commit c18c3cf

Browse files
committed
standardize kool.dev cloud naming
1 parent 0b8951d commit c18c3cf

19 files changed

+48
-48
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
**Kool** is a CLI tool that brings the complexities of modern software development environments down to earth - making these environments lightweight, fast and reproducible. It reduces the complexity and learning curve of _Docker_ containers for local environments, and offers a simplified interface for using _Kubernetes_ to deploy staging and production environments to the cloud.
1717

18-
**Kool** gets your local development environment up and running easily and quickly, so you have more time to build a great application. When the time is right, you can then use Kool Cloud to deploy and share your work with the world!
18+
**Kool** gets your local development environment up and running easily and quickly, so you have more time to build a great application. When the time is right, you can then use Kool.dev Cloud to deploy and share your work with the world!
1919

2020
**Kool** is suitable for solo developers and teams of all sizes. It provides a hassle-free way to handle the Docker basics and immediately start using containers for development, while simultaneously guaranteeing no loss of control over more specialized Docker environments.
2121

commands/cloud.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ func AddKoolCloud(root *cobra.Command) {
4848
func NewCloudCommand(cloud *Cloud) (cloudCmd *cobra.Command) {
4949
cloudCmd = &cobra.Command{
5050
Use: "cloud COMMAND [flags]",
51-
Short: "Interact with Kool Cloud and manage your deployments.",
52-
Long: "The cloud subcommand encapsulates a set of APIs to interact with Kool Cloud and deploy, access and tail logs from your deployments.",
51+
Short: "Interact with Kool.dev Cloud and manage your deployments.",
52+
Long: "The cloud subcommand encapsulates a set of APIs to interact with Kool.dev Cloud and deploy, access and tail logs from your deployments.",
5353
Example: `kool cloud deploy`,
5454
// add cobra usage help content
5555
DisableFlagsInUseLine: true,
@@ -85,7 +85,7 @@ func NewCloudCommand(cloud *Cloud) (cloudCmd *cobra.Command) {
8585
// if no token is set, we try to get it from the environment
8686
if cloud.flags.Token == "" && cloud.env.Get("KOOL_API_TOKEN") == "" {
8787
if requiredFlags {
88-
err = fmt.Errorf("missing Kool Cloud API token - please set it via --token or KOOL_API_TOKEN environment variable")
88+
err = fmt.Errorf("missing Kool.dev Cloud API token - please set it via --token or KOOL_API_TOKEN environment variable")
8989
return
9090
}
9191
} else if cloud.flags.Token != "" {
@@ -96,7 +96,7 @@ func NewCloudCommand(cloud *Cloud) (cloudCmd *cobra.Command) {
9696
},
9797
}
9898

99-
cloudCmd.PersistentFlags().StringVarP(&cloud.flags.Token, "token", "", "", "Token to authenticate with Kool Cloud API")
99+
cloudCmd.PersistentFlags().StringVarP(&cloud.flags.Token, "token", "", "", "Token to authenticate with Kool.dev Cloud API")
100100
cloudCmd.PersistentFlags().StringVarP(&cloud.flags.DeployDomain, "domain", "", "", "Environment domain name to deploy to")
101101

102102
return

commands/cloud_deploy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ type KoolDeploy struct {
4747
func NewDeployCommand(deploy *KoolDeploy) (cmd *cobra.Command) {
4848
cmd = &cobra.Command{
4949
Use: "deploy",
50-
Short: "Deploy a local application to a Kool Cloud environment",
50+
Short: "Deploy a local application to a Kool.dev Cloud environment",
5151
RunE: DefaultCommandRunFunction(deploy),
5252
Args: cobra.NoArgs,
5353

commands/cloud_deploy_destroy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type KoolDeployDestroy struct {
2020
func NewDeployDestroyCommand(destroy *KoolDeployDestroy) *cobra.Command {
2121
return &cobra.Command{
2222
Use: "destroy",
23-
Short: "Destroy an environment deployed to Kool Cloud",
23+
Short: "Destroy an environment deployed to Kool.dev Cloud",
2424
Args: cobra.NoArgs,
2525
RunE: DefaultCommandRunFunction(destroy),
2626

commands/cloud_deploy_exec.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ type KoolDeployExecFlags struct {
2727
func NewDeployExecCommand(deployExec *KoolDeployExec) (cmd *cobra.Command) {
2828
cmd = &cobra.Command{
2929
Use: "exec SERVICE [COMMAND] [--] [ARG...]",
30-
Short: "Execute a command inside a running service container deployed to Kool Cloud",
31-
Long: `After deploying an application to Kool Cloud using 'kool deploy',
30+
Short: "Execute a command inside a running service container deployed to Kool.dev Cloud",
31+
Long: `After deploying an application to Kool.dev Cloud using 'kool deploy',
3232
execute a COMMAND inside the specified SERVICE container (similar to an SSH session).
3333
Must use a KOOL_API_TOKEN environment variable for authentication.`,
3434
Args: cobra.MinimumNArgs(1),

commands/cloud_deploy_logs.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ type KoolDeployLogsFlags struct {
2828
func NewDeployLogsCommand(deployLogs *KoolDeployLogs) (cmd *cobra.Command) {
2929
cmd = &cobra.Command{
3030
Use: "logs [OPTIONS] SERVICE",
31-
Short: "See the logs of running service container deployed to Kool Cloud",
32-
Long: `After deploying an application to Kool Cloud using 'kool deploy',
31+
Short: "See the logs of running service container deployed to Kool.dev Cloud",
32+
Long: `After deploying an application to Kool.dev Cloud using 'kool deploy',
3333
you can see the logs from the specified SERVICE container.
3434
Must use a KOOL_API_TOKEN environment variable for authentication.`,
3535
Args: cobra.ExactArgs(1),

docs/02-Kool-Cloud/01-Getting-Started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
The [Kool Cloud](https://kool.dev/cloud) supports a wide range of features designed to suit your needs for deploying containerized web applications. It includes features such as **persisting folders** across deployments, running **daemons** as extra containers, scheduling commands like **cron jobs**, adding **hooks to run before or after** deployment, **viewing logs** of running containers, accessing the running container **interactively**, and much more.
1+
The [Kool.dev Cloud](https://kool.dev/cloud) supports a wide range of features designed to suit your needs for deploying containerized web applications. It includes features such as **persisting folders** across deployments, running **daemons** as extra containers, scheduling commands like **cron jobs**, adding **hooks to run before or after** deployment, **viewing logs** of running containers, accessing the running container **interactively**, and much more.
22

33
The Kool.dev Cloud API was designed with the best developer experience in mind for deploying containers to the cloud. By leveraging your existing local environment structure in `docker-compose.yml` and adding a sane and intuitive configuration layer that will feel familiar from the first sight, our goal is to provide a best-in-class offering for cloud platform engineering. This platform allows you to leverage Kubernetes and orchestrate your web applications in the cloud without all the hassle.
44

55
> **Enterprise**: You can use Kool.dev Cloud to deploy workloads to your own cloud vendor to keep things compliant - [contact us](mailto:[email protected]) for the **"Bring your Own Cloud"** offer.
66
7-
**Kool Cloud** is the CLI suite of commands that allows you to configure, deploy, access, and tail logs from the applications to the cloud via the Kool.dev Cloud API.
7+
**Kool.dev Cloud** is the CLI suite of commands that allows you to configure, deploy, access, and tail logs from the applications to the cloud via the Kool.dev Cloud API.
88

99
## Deploy Docker Compose-based, containerized apps in just a few simple steps
1010

11-
1. [Sign up for Kool Cloud](https://kool.dev/register) and get your access token.
11+
1. [Sign up for Kool.dev Cloud](https://kool.dev/register) and get your access token.
1212
- You can store your token in your `.env` file if you are using one:
1313
- `echo "KOOL_API_TOKEN=<my-token>" >> .env`
1414
- Or you can store your token in a real environment variable:

docs/02-Kool-Cloud/20-kool.cloud.yml-Reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323
- port: 80
2424
```
2525

26-
Provided you have already signed up and obtained your access token for Kool Cloud in your `.env`, simply by running `kool cloud deploy`, you will get your container with `some/image` deployed to the cloud and a URL with HTTPS that will route incoming traffic to port 80 of that container.
26+
Provided you have already signed up and obtained your access token for Kool.dev Cloud in your `.env`, simply by running `kool cloud deploy`, you will get your container with `some/image` deployed to the cloud and a URL with HTTPS that will route incoming traffic to port 80 of that container.
2727

2828
## Reference
2929

@@ -38,7 +38,7 @@ services:
3838
# Reference: https://docs.docker.com/compose/compose-file/compose-file-v3/#build
3939
build: .
4040
41-
# Tells Kool Cloud that this service is accessible through the deployment URL.
41+
# Tells Kool.dev Cloud that this service is accessible through the deployment URL.
4242
# Note: only one service can be set to be public.
4343
public: true # simply defining true is enough to most cases where your `expose` port will be used for routing incoming HTTP requests.
4444

@@ -76,7 +76,7 @@ services:
7676
# Tells what user and group should own the persisted folder (only used along the sync: true)
7777
chown: user:group
7878

79-
# By default, Kool Cloud will rollout new deployments in a blue-green fashion.
79+
# By default, Kool.dev Cloud will rollout new deployments in a blue-green fashion.
8080
# If you want to disable it and make sure the current running container
8181
# is stopped before the new one is created, set 'recreate: true'.
8282
recreate: false

docs/05-Commands-Reference/0-kool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ kool
2424

2525
### SEE ALSO
2626

27-
* [kool cloud](kool-cloud) - Interact with Kool Cloud and manage your deployments.
27+
* [kool cloud](kool-cloud) - Interact with Kool.dev Cloud and manage your deployments.
2828
* [kool create](kool-create) - Create a new project using a preset
2929
* [kool docker](kool-docker) - Create a new container (a powered up 'docker run')
3030
* [kool exec](kool-exec) - Execute a command inside a running service container

docs/05-Commands-Reference/kool-cloud-deploy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## kool cloud deploy
22

3-
Deploy a local application to a Kool Cloud environment
3+
Deploy a local application to a Kool.dev Cloud environment
44

55
```
66
kool cloud deploy
@@ -19,12 +19,12 @@ kool cloud deploy
1919

2020
```
2121
--domain string Environment domain name to deploy to
22-
--token string Token to authenticate with Kool Cloud API
22+
--token string Token to authenticate with Kool.dev Cloud API
2323
--verbose Increases output verbosity
2424
-w, --working_dir string Changes the working directory for the command
2525
```
2626

2727
### SEE ALSO
2828

29-
* [kool cloud](kool_cloud) - Interact with Kool Cloud and manage your deployments.
29+
* [kool cloud](kool_cloud) - Interact with Kool.dev Cloud and manage your deployments.
3030

0 commit comments

Comments
 (0)