-
Notifications
You must be signed in to change notification settings - Fork 38
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
1 parent
4c90f4b
commit 73b6290
Showing
33 changed files
with
214 additions
and
143 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## runpodctl project | ||
|
||
Manage RunPod projects | ||
|
||
### Synopsis | ||
|
||
Develop and deploy projects entirely on RunPod's infrastructure | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for project | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [runpodctl](runpodctl.md) - CLI for runpod.io | ||
* [runpodctl project build](runpodctl_project_build.md) - builds Dockerfile for current project | ||
* [runpodctl project create](runpodctl_project_create.md) - creates a new project | ||
* [runpodctl project deploy](runpodctl_project_deploy.md) - deploys your project as an endpoint | ||
* [runpodctl project dev](runpodctl_project_dev.md) - starts a development session for the current project | ||
|
||
###### Auto generated by spf13/cobra on 6-Feb-2024 |
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,24 @@ | ||
## runpodctl project build | ||
|
||
builds Dockerfile for current project | ||
|
||
### Synopsis | ||
|
||
builds a local Dockerfile for the project in the current folder. You can use this Dockerfile to build an image and deploy it to any API server. | ||
|
||
``` | ||
runpodctl project build [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for build | ||
--include-env include environment variables from runpod.toml in generated Dockerfile | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [runpodctl project](runpodctl_project.md) - Manage RunPod projects | ||
|
||
###### Auto generated by spf13/cobra on 6-Feb-2024 |
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,25 @@ | ||
## runpodctl project create | ||
|
||
creates a new project | ||
|
||
### Synopsis | ||
|
||
creates a new RunPod project folder on your local machine | ||
|
||
``` | ||
runpodctl project create [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for create | ||
-i, --init use the current directory as the project directory | ||
-n, --name string project name | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [runpodctl project](runpodctl_project.md) - Manage RunPod projects | ||
|
||
###### Auto generated by spf13/cobra on 6-Feb-2024 |
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 @@ | ||
## runpodctl project deploy | ||
|
||
deploys your project as an endpoint | ||
|
||
### Synopsis | ||
|
||
deploys a serverless endpoint for the RunPod project in the current folder | ||
|
||
``` | ||
runpodctl project deploy [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for deploy | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [runpodctl project](runpodctl_project.md) - Manage RunPod projects | ||
|
||
###### Auto generated by spf13/cobra on 6-Feb-2024 |
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,25 @@ | ||
## runpodctl project dev | ||
|
||
starts a development session for the current project | ||
|
||
### Synopsis | ||
|
||
connects your local environment and the project environment on your Pod. Changes propagate to the project environment in real time. | ||
|
||
``` | ||
runpodctl project dev [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for dev | ||
--prefix-pod-logs prefix logs from project Pod with Pod ID (default true) | ||
--select-volume select a new default network volume for current project | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [runpodctl project](runpodctl_project.md) - Manage RunPod projects | ||
|
||
###### Auto generated by spf13/cobra on 6-Feb-2024 |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## runpodctl ssh | ||
|
||
SSH keys and commands | ||
|
||
### Synopsis | ||
|
||
SSH key management and connection to pods | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for ssh | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [runpodctl](runpodctl.md) - CLI for runpod.io | ||
* [runpodctl ssh add-key](runpodctl_ssh_add-key.md) - Adds an SSH key to the current user account | ||
* [runpodctl ssh list-keys](runpodctl_ssh_list-keys.md) - List all SSH keys | ||
|
||
###### Auto generated by spf13/cobra on 6-Feb-2024 |
Oops, something went wrong.