-
Notifications
You must be signed in to change notification settings - Fork 155
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
weave-gitops-bot
committed
Jan 4, 2023
1 parent
317e7b7
commit 2a3c0ce
Showing
172 changed files
with
13,795 additions
and
17 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
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
52 changes: 52 additions & 0 deletions
52
website/docs/references/cli-reference/gitops_create_terraform.md
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,52 @@ | ||
## gitops create terraform | ||
|
||
Create a Terraform object | ||
|
||
### Synopsis | ||
|
||
Create a Terraform object | ||
|
||
``` | ||
gitops create terraform [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
# Create a Terraform resource in the default namespace | ||
gitops create terraform -n default my-resource --source GitRepository/my-project --path ./terraform --interval 15m | ||
# Create and export a Terraform resource manifest to the standard output | ||
gitops create terraform -n default my-resource --source GitRepository/my-project --path ./terraform --interval 15m --export | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
--context string The name of the kubeconfig context to use | ||
-h, --help help for terraform | ||
--interval string Interval at which the Terraform configuration should be applied | ||
--path string Path to the Terraform configuration | ||
--source string Source of the Terraform configuration | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-e, --endpoint WEAVE_GITOPS_ENTERPRISE_API_URL The Weave GitOps Enterprise HTTP API endpoint can be set with WEAVE_GITOPS_ENTERPRISE_API_URL environment variable | ||
--export Export in YAML format to stdout. | ||
--insecure-skip-tls-verify If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure | ||
--kubeconfig string Paths to a kubeconfig. Only required if out-of-cluster. | ||
-n, --namespace string The namespace scope for this operation (default "flux-system") | ||
-p, --password WEAVE_GITOPS_PASSWORD The Weave GitOps Enterprise password for authentication can be set with WEAVE_GITOPS_PASSWORD environment variable | ||
--timeout duration The timeout for operations during resource creation. (default 3m0s) | ||
-u, --username WEAVE_GITOPS_USERNAME The Weave GitOps Enterprise username for authentication can be set with WEAVE_GITOPS_USERNAME environment variable | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [gitops create](gitops_create.md) - Creates a resource | ||
|
||
###### Auto generated by spf13/cobra on 4-Jan-2023 |
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,27 @@ | ||
## gitops delete | ||
|
||
Delete a resource | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for delete | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-e, --endpoint WEAVE_GITOPS_ENTERPRISE_API_URL The Weave GitOps Enterprise HTTP API endpoint can be set with WEAVE_GITOPS_ENTERPRISE_API_URL environment variable | ||
--insecure-skip-tls-verify If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure | ||
--kubeconfig string Paths to a kubeconfig. Only required if out-of-cluster. | ||
-n, --namespace string The namespace scope for this operation (default "flux-system") | ||
-p, --password WEAVE_GITOPS_PASSWORD The Weave GitOps Enterprise password for authentication can be set with WEAVE_GITOPS_PASSWORD environment variable | ||
-u, --username WEAVE_GITOPS_USERNAME The Weave GitOps Enterprise username for authentication can be set with WEAVE_GITOPS_USERNAME environment variable | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [gitops](gitops.md) - Weave GitOps | ||
* [gitops delete terraform](gitops_delete_terraform.md) - Delete a Terraform object | ||
|
||
###### Auto generated by spf13/cobra on 4-Jan-2023 |
40 changes: 40 additions & 0 deletions
40
website/docs/references/cli-reference/gitops_delete_terraform.md
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,40 @@ | ||
## gitops delete terraform | ||
|
||
Delete a Terraform object | ||
|
||
``` | ||
gitops delete terraform [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
# Delete a Terraform resource in the default namespace | ||
gitops delete terraform -n default my-resource | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
--context string The name of the kubeconfig context to use | ||
-h, --help help for terraform | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-e, --endpoint WEAVE_GITOPS_ENTERPRISE_API_URL The Weave GitOps Enterprise HTTP API endpoint can be set with WEAVE_GITOPS_ENTERPRISE_API_URL environment variable | ||
--insecure-skip-tls-verify If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure | ||
--kubeconfig string Paths to a kubeconfig. Only required if out-of-cluster. | ||
-n, --namespace string The namespace scope for this operation (default "flux-system") | ||
-p, --password WEAVE_GITOPS_PASSWORD The Weave GitOps Enterprise password for authentication can be set with WEAVE_GITOPS_PASSWORD environment variable | ||
-u, --username WEAVE_GITOPS_USERNAME The Weave GitOps Enterprise username for authentication can be set with WEAVE_GITOPS_USERNAME environment variable | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [gitops delete](gitops_delete.md) - Delete a resource | ||
|
||
###### Auto generated by spf13/cobra on 4-Jan-2023 |
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,27 @@ | ||
## gitops logs | ||
|
||
Get logs for a resource | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for logs | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-e, --endpoint WEAVE_GITOPS_ENTERPRISE_API_URL The Weave GitOps Enterprise HTTP API endpoint can be set with WEAVE_GITOPS_ENTERPRISE_API_URL environment variable | ||
--insecure-skip-tls-verify If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure | ||
--kubeconfig string Paths to a kubeconfig. Only required if out-of-cluster. | ||
-n, --namespace string The namespace scope for this operation (default "flux-system") | ||
-p, --password WEAVE_GITOPS_PASSWORD The Weave GitOps Enterprise password for authentication can be set with WEAVE_GITOPS_PASSWORD environment variable | ||
-u, --username WEAVE_GITOPS_USERNAME The Weave GitOps Enterprise username for authentication can be set with WEAVE_GITOPS_USERNAME environment variable | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [gitops](gitops.md) - Weave GitOps | ||
* [gitops logs terraform](gitops_logs_terraform.md) - Get the runner logs of a Terraform object | ||
|
||
###### Auto generated by spf13/cobra on 4-Jan-2023 |
40 changes: 40 additions & 0 deletions
40
website/docs/references/cli-reference/gitops_logs_terraform.md
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,40 @@ | ||
## gitops logs terraform | ||
|
||
Get the runner logs of a Terraform object | ||
|
||
``` | ||
gitops logs terraform [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
# Get the runner logs of a Terraform object in the "flux-system" namespace | ||
gitops logs terraform --namespace flux-system my-resource | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
--context string The name of the kubeconfig context to use | ||
-h, --help help for terraform | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-e, --endpoint WEAVE_GITOPS_ENTERPRISE_API_URL The Weave GitOps Enterprise HTTP API endpoint can be set with WEAVE_GITOPS_ENTERPRISE_API_URL environment variable | ||
--insecure-skip-tls-verify If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure | ||
--kubeconfig string Paths to a kubeconfig. Only required if out-of-cluster. | ||
-n, --namespace string The namespace scope for this operation (default "flux-system") | ||
-p, --password WEAVE_GITOPS_PASSWORD The Weave GitOps Enterprise password for authentication can be set with WEAVE_GITOPS_PASSWORD environment variable | ||
-u, --username WEAVE_GITOPS_USERNAME The Weave GitOps Enterprise username for authentication can be set with WEAVE_GITOPS_USERNAME environment variable | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [gitops logs](gitops_logs.md) - Get logs for a resource | ||
|
||
###### Auto generated by spf13/cobra on 4-Jan-2023 |
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,36 @@ | ||
## gitops replan | ||
|
||
Replan a resource | ||
|
||
### Examples | ||
|
||
``` | ||
# Replan the Terraform plan of a Terraform object from the "flux-system" namespace | ||
gitops replan terraform --namespace flux-system my-resource | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for replan | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-e, --endpoint WEAVE_GITOPS_ENTERPRISE_API_URL The Weave GitOps Enterprise HTTP API endpoint can be set with WEAVE_GITOPS_ENTERPRISE_API_URL environment variable | ||
--insecure-skip-tls-verify If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure | ||
--kubeconfig string Paths to a kubeconfig. Only required if out-of-cluster. | ||
-n, --namespace string The namespace scope for this operation (default "flux-system") | ||
-p, --password WEAVE_GITOPS_PASSWORD The Weave GitOps Enterprise password for authentication can be set with WEAVE_GITOPS_PASSWORD environment variable | ||
-u, --username WEAVE_GITOPS_USERNAME The Weave GitOps Enterprise username for authentication can be set with WEAVE_GITOPS_USERNAME environment variable | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [gitops](gitops.md) - Weave GitOps | ||
* [gitops replan terraform](gitops_replan_terraform.md) - Trigger replan for a Terraform object | ||
|
||
###### Auto generated by spf13/cobra on 4-Jan-2023 |
Oops, something went wrong.