-
Notifications
You must be signed in to change notification settings - Fork 772
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
e095bce
commit df0d061
Showing
24 changed files
with
147 additions
and
37 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
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,42 @@ | ||
# cyctl create module | ||
## cyctl create module | ||
|
||
Create Modules | ||
|
||
### Synopsis | ||
|
||
The create module command allows you to create module from the Cyclops API. | ||
|
||
``` | ||
cyctl create module NAME -f values.yaml --repo=repo --path=path --version=version [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
# Create module with values from a file | ||
cyctl create module NAME -f values.yaml \ | ||
--repo 'github.com/github/demo' \ | ||
--path '/path/to/charts' \ | ||
--version 'main' | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-f, --file string Path to the values.yaml file | ||
-h, --help help for module | ||
-n, --namespace string Namespace where the module will be created (default "cyclops") | ||
-p, --path string Path to the module charts | ||
-r, --repo string Repository URL for the module | ||
-t, --template string Name of the template to use for the module creation | ||
-v, --version string Version of the module | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [cyctl create](cyctl_create.md) - Create custom resources like modules, templates, and templateauthrules | ||
|
||
###### Auto generated by spf13/cobra on 29-Jul-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
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
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,31 @@ | ||
# cyctl update | ||
## cyctl update | ||
|
||
updates cyclops resources (currently supports only Modules) | ||
|
||
### Synopsis | ||
|
||
updates cyclops resources (currently supports only Modules) | ||
|
||
### Examples | ||
|
||
``` | ||
# updates the given module | ||
cyctl update module <module-name> --key=<key> --value=<value> | ||
# to update replicas for a module named test,updates number of replicas to 3 | ||
cyctl update module <module-name> test --key="scaling.replicas" --value=3 | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for update | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [cyctl](cyctl.md) - 👁️ Customizable UI for Kubernetes Workloads | ||
* [cyctl update module](cyctl_update_module.md) - updates module values; takes module name as an argument with flags --key and --value | ||
|
||
###### Auto generated by spf13/cobra on 29-Jul-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,35 @@ | ||
# cyctl update module | ||
## cyctl update module | ||
|
||
updates module values; takes module name as an argument with flags --key and --value | ||
|
||
### Synopsis | ||
|
||
updates module values; takes module name as an argument with flags --key and --value | ||
|
||
``` | ||
cyctl update module [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
# updates module values; takes module name as an argument with flags --key and --value | ||
# to update replicas for a module named test | ||
cyctl update module test --key="scaling.replicas" --value=3 | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for module | ||
-k, --key string the field to update | ||
-v, --value string field value | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [cyctl update](cyctl_update.md) - updates cyclops resources (currently supports only Modules) | ||
|
||
###### Auto generated by spf13/cobra on 29-Jul-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