Add frontmatter to command documentation

Signed-off-by: Hidde Beydals <hello@hidde.co>
pull/1141/head
Hidde Beydals 4 years ago
parent bd41406aaa
commit 998f0c7d53

@ -0,0 +1,71 @@
/*
Copyright 2021 The Flux authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"fmt"
"path"
"path/filepath"
"strings"
"github.com/spf13/cobra"
"github.com/spf13/cobra/doc"
)
const fmTemplate = `---
title: "%s"
---
`
var (
cmdDocPath string
cmdDocURLPath string
)
var docgenCmd = &cobra.Command{
Use: "docgen",
Short: "Generate the documentation for the CLI commands.",
Hidden: true,
RunE: docgenCmdRun,
}
func init() {
docgenCmd.Flags().StringVar(&cmdDocPath, "path", "./docs/cmd", "path to write the generated documentation to")
docgenCmd.Flags().StringVar(&cmdDocURLPath, "url-path", "/cmd/", "URL path the documentation is available at")
rootCmd.AddCommand(docgenCmd)
}
func docgenCmdRun(cmd *cobra.Command, args []string) error {
err := doc.GenMarkdownTreeCustom(rootCmd, cmdDocPath, frontmatterPrepender, linkHandler)
if err != nil {
return err
}
return nil
}
func frontmatterPrepender(filename string) string {
name := filepath.Base(filename)
base := strings.TrimSuffix(name, path.Ext(name))
title := strings.Replace(base, "_", " ", -1) + " command"
return fmt.Sprintf(fmTemplate, title)
}
func linkHandler(name string) string {
base := strings.TrimSuffix(name, path.Ext(name))
return cmdDocURLPath + strings.ToLower(base) + "/"
}

@ -23,7 +23,6 @@ import (
"time" "time"
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/spf13/cobra/doc"
_ "k8s.io/client-go/plugin/pkg/client/auth" _ "k8s.io/client-go/plugin/pkg/client/auth"
"github.com/fluxcd/flux2/pkg/manifestgen/install" "github.com/fluxcd/flux2/pkg/manifestgen/install"
@ -111,7 +110,11 @@ func init() {
rootCmd.PersistentFlags().StringVarP(&rootArgs.namespace, "namespace", "n", rootArgs.defaults.Namespace, "the namespace scope for this operation") rootCmd.PersistentFlags().StringVarP(&rootArgs.namespace, "namespace", "n", rootArgs.defaults.Namespace, "the namespace scope for this operation")
rootCmd.PersistentFlags().DurationVar(&rootArgs.timeout, "timeout", 5*time.Minute, "timeout for this operation") rootCmd.PersistentFlags().DurationVar(&rootArgs.timeout, "timeout", 5*time.Minute, "timeout for this operation")
rootCmd.PersistentFlags().BoolVar(&rootArgs.verbose, "verbose", false, "print generated objects") rootCmd.PersistentFlags().BoolVar(&rootArgs.verbose, "verbose", false, "print generated objects")
rootCmd.PersistentFlags().StringVarP(&rootArgs.kubeconfig, "kubeconfig", "", "",
"absolute path to the kubeconfig file")
rootCmd.PersistentFlags().StringVarP(&rootArgs.kubecontext, "context", "", "", "kubernetes context to use") rootCmd.PersistentFlags().StringVarP(&rootArgs.kubecontext, "context", "", "", "kubernetes context to use")
rootCmd.DisableAutoGenTag = true
} }
func NewRootFlags() rootFlags { func NewRootFlags() rootFlags {
@ -125,39 +128,22 @@ func NewRootFlags() rootFlags {
func main() { func main() {
log.SetFlags(0) log.SetFlags(0)
generateDocs() configureKubeconfig()
kubeconfigFlag()
if err := rootCmd.Execute(); err != nil { if err := rootCmd.Execute(); err != nil {
logger.Failuref("%v", err) logger.Failuref("%v", err)
os.Exit(1) os.Exit(1)
} }
} }
func kubeconfigFlag() { func configureKubeconfig() {
if home := homeDir(); home != "" { switch {
rootCmd.PersistentFlags().StringVarP(&rootArgs.kubeconfig, "kubeconfig", "", filepath.Join(home, ".kube", "config"), case len(rootArgs.kubeconfig) > 0:
"path to the kubeconfig file") case len(os.Getenv("KUBECONFIG")) > 0:
} else {
rootCmd.PersistentFlags().StringVarP(&rootArgs.kubeconfig, "kubeconfig", "", "",
"absolute path to the kubeconfig file")
}
if len(os.Getenv("KUBECONFIG")) > 0 {
rootArgs.kubeconfig = os.Getenv("KUBECONFIG") rootArgs.kubeconfig = os.Getenv("KUBECONFIG")
} default:
} if home := homeDir(); len(home) > 0 {
rootArgs.kubeconfig = filepath.Join(home, ".kube", "config")
func generateDocs() {
args := os.Args[1:]
if len(args) > 0 && args[0] == "docgen" {
rootCmd.PersistentFlags().StringVarP(&rootArgs.kubeconfig, "kubeconfig", "", "~/.kube/config",
"path to the kubeconfig file")
rootCmd.DisableAutoGenTag = true
err := doc.GenMarkdownTree(rootCmd, "./docs/cmd")
if err != nil {
log.Fatal(err)
} }
os.Exit(0)
} }
} }

@ -1,3 +1,6 @@
---
title: "flux command"
---
## flux ## flux
Command line utility for assembling Kubernetes CD pipelines Command line utility for assembling Kubernetes CD pipelines
@ -69,7 +72,7 @@ Command line utility for assembling Kubernetes CD pipelines the GitOps way.
``` ```
--context string kubernetes context to use --context string kubernetes context to use
-h, --help help for flux -h, --help help for flux
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -77,17 +80,17 @@ Command line utility for assembling Kubernetes CD pipelines the GitOps way.
### SEE ALSO ### SEE ALSO
* [flux bootstrap](flux_bootstrap.md) - Bootstrap toolkit components * [flux bootstrap](/cmd/flux_bootstrap/) - Bootstrap toolkit components
* [flux check](flux_check.md) - Check requirements and installation * [flux check](/cmd/flux_check/) - Check requirements and installation
* [flux completion](flux_completion.md) - Generates completion scripts for various shells * [flux completion](/cmd/flux_completion/) - Generates completion scripts for various shells
* [flux create](flux_create.md) - Create or update sources and resources * [flux create](/cmd/flux_create/) - Create or update sources and resources
* [flux delete](flux_delete.md) - Delete sources and resources * [flux delete](/cmd/flux_delete/) - Delete sources and resources
* [flux export](flux_export.md) - Export resources in YAML format * [flux export](/cmd/flux_export/) - Export resources in YAML format
* [flux get](flux_get.md) - Get the resources and their status * [flux get](/cmd/flux_get/) - Get the resources and their status
* [flux install](flux_install.md) - Install or upgrade Flux * [flux install](/cmd/flux_install/) - Install or upgrade Flux
* [flux logs](flux_logs.md) - Display formatted logs for Flux components * [flux logs](/cmd/flux_logs/) - Display formatted logs for Flux components
* [flux reconcile](flux_reconcile.md) - Reconcile sources and resources * [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources
* [flux resume](flux_resume.md) - Resume suspended resources * [flux resume](/cmd/flux_resume/) - Resume suspended resources
* [flux suspend](flux_suspend.md) - Suspend resources * [flux suspend](/cmd/flux_suspend/) - Suspend resources
* [flux uninstall](flux_uninstall.md) - Uninstall Flux and its custom resource definitions * [flux uninstall](/cmd/flux_uninstall/) - Uninstall Flux and its custom resource definitions

@ -1,3 +1,6 @@
---
title: "flux bootstrap command"
---
## flux bootstrap ## flux bootstrap
Bootstrap toolkit components Bootstrap toolkit components
@ -28,7 +31,7 @@ The bootstrap sub-commands bootstrap the toolkit components on the targeted Git
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -36,7 +39,7 @@ The bootstrap sub-commands bootstrap the toolkit components on the targeted Git
### SEE ALSO ### SEE ALSO
* [flux](flux.md) - Command line utility for assembling Kubernetes CD pipelines * [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux bootstrap github](flux_bootstrap_github.md) - Bootstrap toolkit components in a GitHub repository * [flux bootstrap github](/cmd/flux_bootstrap_github/) - Bootstrap toolkit components in a GitHub repository
* [flux bootstrap gitlab](flux_bootstrap_gitlab.md) - Bootstrap toolkit components in a GitLab repository * [flux bootstrap gitlab](/cmd/flux_bootstrap_gitlab/) - Bootstrap toolkit components in a GitLab repository

@ -1,3 +1,6 @@
---
title: "flux bootstrap github command"
---
## flux bootstrap github ## flux bootstrap github
Bootstrap toolkit components in a GitHub repository Bootstrap toolkit components in a GitHub repository
@ -67,7 +70,7 @@ flux bootstrap github [flags]
--components-extra strings list of components in addition to those supplied or defaulted, accepts comma-separated values --components-extra strings list of components in addition to those supplied or defaulted, accepts comma-separated values
--context string kubernetes context to use --context string kubernetes context to use
--image-pull-secret string Kubernetes secret name used for pulling the toolkit images from a private registry --image-pull-secret string Kubernetes secret name used for pulling the toolkit images from a private registry
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--log-level logLevel log level, available options are: (debug, info, error) (default info) --log-level logLevel log level, available options are: (debug, info, error) (default info)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--network-policy deny ingress access to the toolkit controllers from other namespaces using network policies (default true) --network-policy deny ingress access to the toolkit controllers from other namespaces using network policies (default true)
@ -82,5 +85,5 @@ flux bootstrap github [flags]
### SEE ALSO ### SEE ALSO
* [flux bootstrap](flux_bootstrap.md) - Bootstrap toolkit components * [flux bootstrap](/cmd/flux_bootstrap/) - Bootstrap toolkit components

@ -1,3 +1,6 @@
---
title: "flux bootstrap gitlab command"
---
## flux bootstrap gitlab ## flux bootstrap gitlab
Bootstrap toolkit components in a GitLab repository Bootstrap toolkit components in a GitLab repository
@ -63,7 +66,7 @@ flux bootstrap gitlab [flags]
--components-extra strings list of components in addition to those supplied or defaulted, accepts comma-separated values --components-extra strings list of components in addition to those supplied or defaulted, accepts comma-separated values
--context string kubernetes context to use --context string kubernetes context to use
--image-pull-secret string Kubernetes secret name used for pulling the toolkit images from a private registry --image-pull-secret string Kubernetes secret name used for pulling the toolkit images from a private registry
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--log-level logLevel log level, available options are: (debug, info, error) (default info) --log-level logLevel log level, available options are: (debug, info, error) (default info)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--network-policy deny ingress access to the toolkit controllers from other namespaces using network policies (default true) --network-policy deny ingress access to the toolkit controllers from other namespaces using network policies (default true)
@ -78,5 +81,5 @@ flux bootstrap gitlab [flags]
### SEE ALSO ### SEE ALSO
* [flux bootstrap](flux_bootstrap.md) - Bootstrap toolkit components * [flux bootstrap](/cmd/flux_bootstrap/) - Bootstrap toolkit components

@ -1,3 +1,6 @@
---
title: "flux check command"
---
## flux check ## flux check
Check requirements and installation Check requirements and installation
@ -35,7 +38,7 @@ flux check [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -43,5 +46,5 @@ flux check [flags]
### SEE ALSO ### SEE ALSO
* [flux](flux.md) - Command line utility for assembling Kubernetes CD pipelines * [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines

@ -1,3 +1,6 @@
---
title: "flux completion command"
---
## flux completion ## flux completion
Generates completion scripts for various shells Generates completion scripts for various shells
@ -16,7 +19,7 @@ The completion sub-command generates completion scripts for various shells
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -24,9 +27,9 @@ The completion sub-command generates completion scripts for various shells
### SEE ALSO ### SEE ALSO
* [flux](flux.md) - Command line utility for assembling Kubernetes CD pipelines * [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux completion bash](flux_completion_bash.md) - Generates bash completion scripts * [flux completion bash](/cmd/flux_completion_bash/) - Generates bash completion scripts
* [flux completion fish](flux_completion_fish.md) - Generates fish completion scripts * [flux completion fish](/cmd/flux_completion_fish/) - Generates fish completion scripts
* [flux completion powershell](flux_completion_powershell.md) - Generates powershell completion scripts * [flux completion powershell](/cmd/flux_completion_powershell/) - Generates powershell completion scripts
* [flux completion zsh](flux_completion_zsh.md) - Generates zsh completion scripts * [flux completion zsh](/cmd/flux_completion_zsh/) - Generates zsh completion scripts

@ -1,3 +1,6 @@
---
title: "flux completion bash command"
---
## flux completion bash ## flux completion bash
Generates bash completion scripts Generates bash completion scripts
@ -30,7 +33,7 @@ command -v flux >/dev/null && . <(flux completion bash)
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -38,5 +41,5 @@ command -v flux >/dev/null && . <(flux completion bash)
### SEE ALSO ### SEE ALSO
* [flux completion](flux_completion.md) - Generates completion scripts for various shells * [flux completion](/cmd/flux_completion/) - Generates completion scripts for various shells

@ -1,3 +1,6 @@
---
title: "flux completion fish command"
---
## flux completion fish ## flux completion fish
Generates fish completion scripts Generates fish completion scripts
@ -27,7 +30,7 @@ See http://fishshell.com/docs/current/index.html#completion-own for more details
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -35,5 +38,5 @@ See http://fishshell.com/docs/current/index.html#completion-own for more details
### SEE ALSO ### SEE ALSO
* [flux completion](flux_completion.md) - Generates completion scripts for various shells * [flux completion](/cmd/flux_completion/) - Generates completion scripts for various shells

@ -1,3 +1,6 @@
---
title: "flux completion powershell command"
---
## flux completion powershell ## flux completion powershell
Generates powershell completion scripts Generates powershell completion scripts
@ -37,7 +40,7 @@ flux completion >> flux-completions.ps1
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -45,5 +48,5 @@ flux completion >> flux-completions.ps1
### SEE ALSO ### SEE ALSO
* [flux completion](flux_completion.md) - Generates completion scripts for various shells * [flux completion](/cmd/flux_completion/) - Generates completion scripts for various shells

@ -1,3 +1,6 @@
---
title: "flux completion zsh command"
---
## flux completion zsh ## flux completion zsh
Generates zsh completion scripts Generates zsh completion scripts
@ -38,7 +41,7 @@ mv _flux ~/.zprezto/modules/completion/external/src/ # zprezto
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -46,5 +49,5 @@ mv _flux ~/.zprezto/modules/completion/external/src/ # zprezto
### SEE ALSO ### SEE ALSO
* [flux completion](flux_completion.md) - Generates completion scripts for various shells * [flux completion](/cmd/flux_completion/) - Generates completion scripts for various shells

@ -1,3 +1,6 @@
---
title: "flux create command"
---
## flux create ## flux create
Create or update sources and resources Create or update sources and resources
@ -19,7 +22,7 @@ The create sub-commands generate sources and resources.
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -27,14 +30,14 @@ The create sub-commands generate sources and resources.
### SEE ALSO ### SEE ALSO
* [flux](flux.md) - Command line utility for assembling Kubernetes CD pipelines * [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux create alert](flux_create_alert.md) - Create or update a Alert resource * [flux create alert](/cmd/flux_create_alert/) - Create or update a Alert resource
* [flux create alert-provider](flux_create_alert-provider.md) - Create or update a Provider resource * [flux create alert-provider](/cmd/flux_create_alert-provider/) - Create or update a Provider resource
* [flux create helmrelease](flux_create_helmrelease.md) - Create or update a HelmRelease resource * [flux create helmrelease](/cmd/flux_create_helmrelease/) - Create or update a HelmRelease resource
* [flux create image](flux_create_image.md) - Create or update resources dealing with image automation * [flux create image](/cmd/flux_create_image/) - Create or update resources dealing with image automation
* [flux create kustomization](flux_create_kustomization.md) - Create or update a Kustomization resource * [flux create kustomization](/cmd/flux_create_kustomization/) - Create or update a Kustomization resource
* [flux create receiver](flux_create_receiver.md) - Create or update a Receiver resource * [flux create receiver](/cmd/flux_create_receiver/) - Create or update a Receiver resource
* [flux create secret](flux_create_secret.md) - Create or update Kubernetes secrets * [flux create secret](/cmd/flux_create_secret/) - Create or update Kubernetes secrets
* [flux create source](flux_create_source.md) - Create or update sources * [flux create source](/cmd/flux_create_source/) - Create or update sources
* [flux create tenant](flux_create_tenant.md) - Create or update a tenant * [flux create tenant](/cmd/flux_create_tenant/) - Create or update a tenant

@ -1,3 +1,6 @@
---
title: "flux create alert-provider command"
---
## flux create alert-provider ## flux create alert-provider
Create or update a Provider resource Create or update a Provider resource
@ -45,7 +48,7 @@ flux create alert-provider [name] [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -54,5 +57,5 @@ flux create alert-provider [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create](flux_create.md) - Create or update sources and resources * [flux create](/cmd/flux_create/) - Create or update sources and resources

@ -1,3 +1,6 @@
---
title: "flux create alert command"
---
## flux create alert ## flux create alert
Create or update a Alert resource Create or update a Alert resource
@ -37,7 +40,7 @@ flux create alert [name] [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -46,5 +49,5 @@ flux create alert [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create](flux_create.md) - Create or update sources and resources * [flux create](/cmd/flux_create/) - Create or update sources and resources

@ -1,3 +1,6 @@
---
title: "flux create helmrelease command"
---
## flux create helmrelease ## flux create helmrelease
Create or update a HelmRelease resource Create or update a HelmRelease resource
@ -89,7 +92,7 @@ flux create helmrelease [name] [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -98,5 +101,5 @@ flux create helmrelease [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create](flux_create.md) - Create or update sources and resources * [flux create](/cmd/flux_create/) - Create or update sources and resources

@ -1,3 +1,6 @@
---
title: "flux create image command"
---
## flux create image ## flux create image
Create or update resources dealing with image automation Create or update resources dealing with image automation
@ -20,7 +23,7 @@ being available.
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -29,8 +32,8 @@ being available.
### SEE ALSO ### SEE ALSO
* [flux create](flux_create.md) - Create or update sources and resources * [flux create](/cmd/flux_create/) - Create or update sources and resources
* [flux create image policy](flux_create_image_policy.md) - Create or update an ImagePolicy object * [flux create image policy](/cmd/flux_create_image_policy/) - Create or update an ImagePolicy object
* [flux create image repository](flux_create_image_repository.md) - Create or update an ImageRepository object * [flux create image repository](/cmd/flux_create_image_repository/) - Create or update an ImageRepository object
* [flux create image update](flux_create_image_update.md) - Create or update an ImageUpdateAutomation object * [flux create image update](/cmd/flux_create_image_update/) - Create or update an ImageUpdateAutomation object

@ -1,3 +1,6 @@
---
title: "flux create image policy command"
---
## flux create image policy ## flux create image policy
Create or update an ImagePolicy object Create or update an ImagePolicy object
@ -50,7 +53,7 @@ flux create image policy [name] [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -59,5 +62,5 @@ flux create image policy [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create image](flux_create_image.md) - Create or update resources dealing with image automation * [flux create image](/cmd/flux_create_image/) - Create or update resources dealing with image automation

@ -1,3 +1,6 @@
---
title: "flux create image repository command"
---
## flux create image repository ## flux create image repository
Create or update an ImageRepository object Create or update an ImageRepository object
@ -57,7 +60,7 @@ flux create image repository [name] [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -66,5 +69,5 @@ flux create image repository [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create image](flux_create_image.md) - Create or update resources dealing with image automation * [flux create image](/cmd/flux_create_image/) - Create or update resources dealing with image automation

@ -1,3 +1,6 @@
---
title: "flux create image update command"
---
## flux create image update ## flux create image update
Create or update an ImageUpdateAutomation object Create or update an ImageUpdateAutomation object
@ -55,7 +58,7 @@ flux create image update [name] [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -64,5 +67,5 @@ flux create image update [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create image](flux_create_image.md) - Create or update resources dealing with image automation * [flux create image](/cmd/flux_create_image/) - Create or update resources dealing with image automation

@ -1,3 +1,6 @@
---
title: "flux create kustomization command"
---
## flux create kustomization ## flux create kustomization
Create or update a Kustomization resource Create or update a Kustomization resource
@ -64,7 +67,7 @@ flux create kustomization [name] [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -73,5 +76,5 @@ flux create kustomization [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create](flux_create.md) - Create or update sources and resources * [flux create](/cmd/flux_create/) - Create or update sources and resources

@ -1,3 +1,6 @@
---
title: "flux create receiver command"
---
## flux create receiver ## flux create receiver
Create or update a Receiver resource Create or update a Receiver resource
@ -40,7 +43,7 @@ flux create receiver [name] [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -49,5 +52,5 @@ flux create receiver [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create](flux_create.md) - Create or update sources and resources * [flux create](/cmd/flux_create/) - Create or update sources and resources

@ -1,3 +1,6 @@
---
title: "flux create secret command"
---
## flux create secret ## flux create secret
Create or update Kubernetes secrets Create or update Kubernetes secrets
@ -18,7 +21,7 @@ The create source sub-commands generate Kubernetes secrets specific to Flux.
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -27,8 +30,8 @@ The create source sub-commands generate Kubernetes secrets specific to Flux.
### SEE ALSO ### SEE ALSO
* [flux create](flux_create.md) - Create or update sources and resources * [flux create](/cmd/flux_create/) - Create or update sources and resources
* [flux create secret git](flux_create_secret_git.md) - Create or update a Kubernetes secret for Git authentication * [flux create secret git](/cmd/flux_create_secret_git/) - Create or update a Kubernetes secret for Git authentication
* [flux create secret helm](flux_create_secret_helm.md) - Create or update a Kubernetes secret for Helm repository authentication * [flux create secret helm](/cmd/flux_create_secret_helm/) - Create or update a Kubernetes secret for Helm repository authentication
* [flux create secret tls](flux_create_secret_tls.md) - Create or update a Kubernetes secret with TLS certificates * [flux create secret tls](/cmd/flux_create_secret_tls/) - Create or update a Kubernetes secret with TLS certificates

@ -1,3 +1,6 @@
---
title: "flux create secret git command"
---
## flux create secret git ## flux create secret git
Create or update a Kubernetes secret for Git authentication Create or update a Kubernetes secret for Git authentication
@ -66,7 +69,7 @@ flux create secret git [name] [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -75,5 +78,5 @@ flux create secret git [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create secret](flux_create_secret.md) - Create or update Kubernetes secrets * [flux create secret](/cmd/flux_create_secret/) - Create or update Kubernetes secrets

@ -1,3 +1,6 @@
---
title: "flux create secret helm command"
---
## flux create secret helm ## flux create secret helm
Create or update a Kubernetes secret for Helm repository authentication Create or update a Kubernetes secret for Helm repository authentication
@ -52,7 +55,7 @@ flux create secret helm [name] [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -61,5 +64,5 @@ flux create secret helm [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create secret](flux_create_secret.md) - Create or update Kubernetes secrets * [flux create secret](/cmd/flux_create_secret/) - Create or update Kubernetes secrets

@ -1,3 +1,6 @@
---
title: "flux create secret tls command"
---
## flux create secret tls ## flux create secret tls
Create or update a Kubernetes secret with TLS certificates Create or update a Kubernetes secret with TLS certificates
@ -43,7 +46,7 @@ flux create secret tls [name] [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -52,5 +55,5 @@ flux create secret tls [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create secret](flux_create_secret.md) - Create or update Kubernetes secrets * [flux create secret](/cmd/flux_create_secret/) - Create or update Kubernetes secrets

@ -1,3 +1,6 @@
---
title: "flux create source command"
---
## flux create source ## flux create source
Create or update sources Create or update sources
@ -18,7 +21,7 @@ The create source sub-commands generate sources.
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -27,8 +30,8 @@ The create source sub-commands generate sources.
### SEE ALSO ### SEE ALSO
* [flux create](flux_create.md) - Create or update sources and resources * [flux create](/cmd/flux_create/) - Create or update sources and resources
* [flux create source bucket](flux_create_source_bucket.md) - Create or update a Bucket source * [flux create source bucket](/cmd/flux_create_source_bucket/) - Create or update a Bucket source
* [flux create source git](flux_create_source_git.md) - Create or update a GitRepository source * [flux create source git](/cmd/flux_create_source_git/) - Create or update a GitRepository source
* [flux create source helm](flux_create_source_helm.md) - Create or update a HelmRepository source * [flux create source helm](/cmd/flux_create_source_helm/) - Create or update a HelmRepository source

@ -1,3 +1,6 @@
---
title: "flux create source bucket command"
---
## flux create source bucket ## flux create source bucket
Create or update a Bucket source Create or update a Bucket source
@ -54,7 +57,7 @@ flux create source bucket [name] [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -63,5 +66,5 @@ flux create source bucket [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create source](flux_create_source.md) - Create or update sources * [flux create source](/cmd/flux_create_source/) - Create or update sources

@ -1,3 +1,6 @@
---
title: "flux create source git command"
---
## flux create source git ## flux create source git
Create or update a GitRepository source Create or update a GitRepository source
@ -76,7 +79,7 @@ flux create source git [name] [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -85,5 +88,5 @@ flux create source git [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create source](flux_create_source.md) - Create or update sources * [flux create source](/cmd/flux_create_source/) - Create or update sources

@ -1,3 +1,6 @@
---
title: "flux create source helm command"
---
## flux create source helm ## flux create source helm
Create or update a HelmRepository source Create or update a HelmRepository source
@ -54,7 +57,7 @@ flux create source helm [name] [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -63,5 +66,5 @@ flux create source helm [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create source](flux_create_source.md) - Create or update sources * [flux create source](/cmd/flux_create_source/) - Create or update sources

@ -1,3 +1,6 @@
---
title: "flux create tenant command"
---
## flux create tenant ## flux create tenant
Create or update a tenant Create or update a tenant
@ -42,7 +45,7 @@ flux create tenant [flags]
--context string kubernetes context to use --context string kubernetes context to use
--export export in YAML format to stdout --export export in YAML format to stdout
--interval duration source sync interval (default 1m0s) --interval duration source sync interval (default 1m0s)
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
--label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2) --label strings set labels on the resource (can specify multiple labels with commas: label1=value1,label2=value2)
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -51,5 +54,5 @@ flux create tenant [flags]
### SEE ALSO ### SEE ALSO
* [flux create](flux_create.md) - Create or update sources and resources * [flux create](/cmd/flux_create/) - Create or update sources and resources

@ -1,3 +1,6 @@
---
title: "flux delete command"
---
## flux delete ## flux delete
Delete sources and resources Delete sources and resources
@ -17,7 +20,7 @@ The delete sub-commands delete sources and resources.
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -25,12 +28,12 @@ The delete sub-commands delete sources and resources.
### SEE ALSO ### SEE ALSO
* [flux](flux.md) - Command line utility for assembling Kubernetes CD pipelines * [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux delete alert](flux_delete_alert.md) - Delete a Alert resource * [flux delete alert](/cmd/flux_delete_alert/) - Delete a Alert resource
* [flux delete alert-provider](flux_delete_alert-provider.md) - Delete a Provider resource * [flux delete alert-provider](/cmd/flux_delete_alert-provider/) - Delete a Provider resource
* [flux delete helmrelease](flux_delete_helmrelease.md) - Delete a HelmRelease resource * [flux delete helmrelease](/cmd/flux_delete_helmrelease/) - Delete a HelmRelease resource
* [flux delete image](flux_delete_image.md) - Delete image automation objects * [flux delete image](/cmd/flux_delete_image/) - Delete image automation objects
* [flux delete kustomization](flux_delete_kustomization.md) - Delete a Kustomization resource * [flux delete kustomization](/cmd/flux_delete_kustomization/) - Delete a Kustomization resource
* [flux delete receiver](flux_delete_receiver.md) - Delete a Receiver resource * [flux delete receiver](/cmd/flux_delete_receiver/) - Delete a Receiver resource
* [flux delete source](flux_delete_source.md) - Delete sources * [flux delete source](/cmd/flux_delete_source/) - Delete sources

@ -1,3 +1,6 @@
---
title: "flux delete alert-provider command"
---
## flux delete alert-provider ## flux delete alert-provider
Delete a Provider resource Delete a Provider resource
@ -28,7 +31,7 @@ flux delete alert-provider [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
-s, --silent delete resource without asking for confirmation -s, --silent delete resource without asking for confirmation
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -37,5 +40,5 @@ flux delete alert-provider [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete](flux_delete.md) - Delete sources and resources * [flux delete](/cmd/flux_delete/) - Delete sources and resources

@ -1,3 +1,6 @@
---
title: "flux delete alert command"
---
## flux delete alert ## flux delete alert
Delete a Alert resource Delete a Alert resource
@ -28,7 +31,7 @@ flux delete alert [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
-s, --silent delete resource without asking for confirmation -s, --silent delete resource without asking for confirmation
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -37,5 +40,5 @@ flux delete alert [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete](flux_delete.md) - Delete sources and resources * [flux delete](/cmd/flux_delete/) - Delete sources and resources

@ -1,3 +1,6 @@
---
title: "flux delete helmrelease command"
---
## flux delete helmrelease ## flux delete helmrelease
Delete a HelmRelease resource Delete a HelmRelease resource
@ -28,7 +31,7 @@ flux delete helmrelease [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
-s, --silent delete resource without asking for confirmation -s, --silent delete resource without asking for confirmation
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -37,5 +40,5 @@ flux delete helmrelease [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete](flux_delete.md) - Delete sources and resources * [flux delete](/cmd/flux_delete/) - Delete sources and resources

@ -1,3 +1,6 @@
---
title: "flux delete image command"
---
## flux delete image ## flux delete image
Delete image automation objects Delete image automation objects
@ -16,7 +19,7 @@ The delete image sub-commands delete image automation objects.
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
-s, --silent delete resource without asking for confirmation -s, --silent delete resource without asking for confirmation
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -25,8 +28,8 @@ The delete image sub-commands delete image automation objects.
### SEE ALSO ### SEE ALSO
* [flux delete](flux_delete.md) - Delete sources and resources * [flux delete](/cmd/flux_delete/) - Delete sources and resources
* [flux delete image policy](flux_delete_image_policy.md) - Delete an ImagePolicy object * [flux delete image policy](/cmd/flux_delete_image_policy/) - Delete an ImagePolicy object
* [flux delete image repository](flux_delete_image_repository.md) - Delete an ImageRepository object * [flux delete image repository](/cmd/flux_delete_image_repository/) - Delete an ImageRepository object
* [flux delete image update](flux_delete_image_update.md) - Delete an ImageUpdateAutomation object * [flux delete image update](/cmd/flux_delete_image_update/) - Delete an ImageUpdateAutomation object

@ -1,3 +1,6 @@
---
title: "flux delete image policy command"
---
## flux delete image policy ## flux delete image policy
Delete an ImagePolicy object Delete an ImagePolicy object
@ -28,7 +31,7 @@ flux delete image policy [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
-s, --silent delete resource without asking for confirmation -s, --silent delete resource without asking for confirmation
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -37,5 +40,5 @@ flux delete image policy [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete image](flux_delete_image.md) - Delete image automation objects * [flux delete image](/cmd/flux_delete_image/) - Delete image automation objects

@ -1,3 +1,6 @@
---
title: "flux delete image repository command"
---
## flux delete image repository ## flux delete image repository
Delete an ImageRepository object Delete an ImageRepository object
@ -28,7 +31,7 @@ flux delete image repository [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
-s, --silent delete resource without asking for confirmation -s, --silent delete resource without asking for confirmation
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -37,5 +40,5 @@ flux delete image repository [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete image](flux_delete_image.md) - Delete image automation objects * [flux delete image](/cmd/flux_delete_image/) - Delete image automation objects

@ -1,3 +1,6 @@
---
title: "flux delete image update command"
---
## flux delete image update ## flux delete image update
Delete an ImageUpdateAutomation object Delete an ImageUpdateAutomation object
@ -28,7 +31,7 @@ flux delete image update [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
-s, --silent delete resource without asking for confirmation -s, --silent delete resource without asking for confirmation
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -37,5 +40,5 @@ flux delete image update [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete image](flux_delete_image.md) - Delete image automation objects * [flux delete image](/cmd/flux_delete_image/) - Delete image automation objects

@ -1,3 +1,6 @@
---
title: "flux delete kustomization command"
---
## flux delete kustomization ## flux delete kustomization
Delete a Kustomization resource Delete a Kustomization resource
@ -28,7 +31,7 @@ flux delete kustomization [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
-s, --silent delete resource without asking for confirmation -s, --silent delete resource without asking for confirmation
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -37,5 +40,5 @@ flux delete kustomization [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete](flux_delete.md) - Delete sources and resources * [flux delete](/cmd/flux_delete/) - Delete sources and resources

@ -1,3 +1,6 @@
---
title: "flux delete receiver command"
---
## flux delete receiver ## flux delete receiver
Delete a Receiver resource Delete a Receiver resource
@ -28,7 +31,7 @@ flux delete receiver [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
-s, --silent delete resource without asking for confirmation -s, --silent delete resource without asking for confirmation
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -37,5 +40,5 @@ flux delete receiver [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete](flux_delete.md) - Delete sources and resources * [flux delete](/cmd/flux_delete/) - Delete sources and resources

@ -1,3 +1,6 @@
---
title: "flux delete source command"
---
## flux delete source ## flux delete source
Delete sources Delete sources
@ -16,7 +19,7 @@ The delete source sub-commands delete sources.
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
-s, --silent delete resource without asking for confirmation -s, --silent delete resource without asking for confirmation
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -25,8 +28,8 @@ The delete source sub-commands delete sources.
### SEE ALSO ### SEE ALSO
* [flux delete](flux_delete.md) - Delete sources and resources * [flux delete](/cmd/flux_delete/) - Delete sources and resources
* [flux delete source bucket](flux_delete_source_bucket.md) - Delete a Bucket source * [flux delete source bucket](/cmd/flux_delete_source_bucket/) - Delete a Bucket source
* [flux delete source git](flux_delete_source_git.md) - Delete a GitRepository source * [flux delete source git](/cmd/flux_delete_source_git/) - Delete a GitRepository source
* [flux delete source helm](flux_delete_source_helm.md) - Delete a HelmRepository source * [flux delete source helm](/cmd/flux_delete_source_helm/) - Delete a HelmRepository source

@ -1,3 +1,6 @@
---
title: "flux delete source bucket command"
---
## flux delete source bucket ## flux delete source bucket
Delete a Bucket source Delete a Bucket source
@ -28,7 +31,7 @@ flux delete source bucket [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
-s, --silent delete resource without asking for confirmation -s, --silent delete resource without asking for confirmation
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -37,5 +40,5 @@ flux delete source bucket [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete source](flux_delete_source.md) - Delete sources * [flux delete source](/cmd/flux_delete_source/) - Delete sources

@ -1,3 +1,6 @@
---
title: "flux delete source git command"
---
## flux delete source git ## flux delete source git
Delete a GitRepository source Delete a GitRepository source
@ -28,7 +31,7 @@ flux delete source git [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
-s, --silent delete resource without asking for confirmation -s, --silent delete resource without asking for confirmation
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -37,5 +40,5 @@ flux delete source git [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete source](flux_delete_source.md) - Delete sources * [flux delete source](/cmd/flux_delete_source/) - Delete sources

@ -1,3 +1,6 @@
---
title: "flux delete source helm command"
---
## flux delete source helm ## flux delete source helm
Delete a HelmRepository source Delete a HelmRepository source
@ -28,7 +31,7 @@ flux delete source helm [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
-s, --silent delete resource without asking for confirmation -s, --silent delete resource without asking for confirmation
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
@ -37,5 +40,5 @@ flux delete source helm [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete source](flux_delete_source.md) - Delete sources * [flux delete source](/cmd/flux_delete_source/) - Delete sources

@ -1,3 +1,6 @@
---
title: "flux export command"
---
## flux export ## flux export
Export resources in YAML format Export resources in YAML format
@ -17,7 +20,7 @@ The export sub-commands export resources in YAML format.
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -25,12 +28,12 @@ The export sub-commands export resources in YAML format.
### SEE ALSO ### SEE ALSO
* [flux](flux.md) - Command line utility for assembling Kubernetes CD pipelines * [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux export alert](flux_export_alert.md) - Export Alert resources in YAML format * [flux export alert](/cmd/flux_export_alert/) - Export Alert resources in YAML format
* [flux export alert-provider](flux_export_alert-provider.md) - Export Provider resources in YAML format * [flux export alert-provider](/cmd/flux_export_alert-provider/) - Export Provider resources in YAML format
* [flux export helmrelease](flux_export_helmrelease.md) - Export HelmRelease resources in YAML format * [flux export helmrelease](/cmd/flux_export_helmrelease/) - Export HelmRelease resources in YAML format
* [flux export image](flux_export_image.md) - Export image automation objects * [flux export image](/cmd/flux_export_image/) - Export image automation objects
* [flux export kustomization](flux_export_kustomization.md) - Export Kustomization resources in YAML format * [flux export kustomization](/cmd/flux_export_kustomization/) - Export Kustomization resources in YAML format
* [flux export receiver](flux_export_receiver.md) - Export Receiver resources in YAML format * [flux export receiver](/cmd/flux_export_receiver/) - Export Receiver resources in YAML format
* [flux export source](flux_export_source.md) - Export sources * [flux export source](/cmd/flux_export_source/) - Export sources

@ -1,3 +1,6 @@
---
title: "flux export alert-provider command"
---
## flux export alert-provider ## flux export alert-provider
Export Provider resources in YAML format Export Provider resources in YAML format
@ -32,7 +35,7 @@ flux export alert-provider [name] [flags]
``` ```
--all select all resources --all select all resources
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux export alert-provider [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export](flux_export.md) - Export resources in YAML format * [flux export](/cmd/flux_export/) - Export resources in YAML format

@ -1,3 +1,6 @@
---
title: "flux export alert command"
---
## flux export alert ## flux export alert
Export Alert resources in YAML format Export Alert resources in YAML format
@ -32,7 +35,7 @@ flux export alert [name] [flags]
``` ```
--all select all resources --all select all resources
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux export alert [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export](flux_export.md) - Export resources in YAML format * [flux export](/cmd/flux_export/) - Export resources in YAML format

@ -1,3 +1,6 @@
---
title: "flux export helmrelease command"
---
## flux export helmrelease ## flux export helmrelease
Export HelmRelease resources in YAML format Export HelmRelease resources in YAML format
@ -32,7 +35,7 @@ flux export helmrelease [name] [flags]
``` ```
--all select all resources --all select all resources
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux export helmrelease [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export](flux_export.md) - Export resources in YAML format * [flux export](/cmd/flux_export/) - Export resources in YAML format

@ -1,3 +1,6 @@
---
title: "flux export image command"
---
## flux export image ## flux export image
Export image automation objects Export image automation objects
@ -17,7 +20,7 @@ The export image sub-commands export image automation objects in YAML format.
``` ```
--all select all resources --all select all resources
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -25,8 +28,8 @@ The export image sub-commands export image automation objects in YAML format.
### SEE ALSO ### SEE ALSO
* [flux export](flux_export.md) - Export resources in YAML format * [flux export](/cmd/flux_export/) - Export resources in YAML format
* [flux export image policy](flux_export_image_policy.md) - Export ImagePolicy resources in YAML format * [flux export image policy](/cmd/flux_export_image_policy/) - Export ImagePolicy resources in YAML format
* [flux export image repository](flux_export_image_repository.md) - Export ImageRepository resources in YAML format * [flux export image repository](/cmd/flux_export_image_repository/) - Export ImageRepository resources in YAML format
* [flux export image update](flux_export_image_update.md) - Export ImageUpdateAutomation resources in YAML format * [flux export image update](/cmd/flux_export_image_update/) - Export ImageUpdateAutomation resources in YAML format

@ -1,3 +1,6 @@
---
title: "flux export image policy command"
---
## flux export image policy ## flux export image policy
Export ImagePolicy resources in YAML format Export ImagePolicy resources in YAML format
@ -32,7 +35,7 @@ flux export image policy [name] [flags]
``` ```
--all select all resources --all select all resources
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux export image policy [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export image](flux_export_image.md) - Export image automation objects * [flux export image](/cmd/flux_export_image/) - Export image automation objects

@ -1,3 +1,6 @@
---
title: "flux export image repository command"
---
## flux export image repository ## flux export image repository
Export ImageRepository resources in YAML format Export ImageRepository resources in YAML format
@ -32,7 +35,7 @@ flux export image repository [name] [flags]
``` ```
--all select all resources --all select all resources
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux export image repository [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export image](flux_export_image.md) - Export image automation objects * [flux export image](/cmd/flux_export_image/) - Export image automation objects

@ -1,3 +1,6 @@
---
title: "flux export image update command"
---
## flux export image update ## flux export image update
Export ImageUpdateAutomation resources in YAML format Export ImageUpdateAutomation resources in YAML format
@ -32,7 +35,7 @@ flux export image update [name] [flags]
``` ```
--all select all resources --all select all resources
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux export image update [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export image](flux_export_image.md) - Export image automation objects * [flux export image](/cmd/flux_export_image/) - Export image automation objects

@ -1,3 +1,6 @@
---
title: "flux export kustomization command"
---
## flux export kustomization ## flux export kustomization
Export Kustomization resources in YAML format Export Kustomization resources in YAML format
@ -32,7 +35,7 @@ flux export kustomization [name] [flags]
``` ```
--all select all resources --all select all resources
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux export kustomization [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export](flux_export.md) - Export resources in YAML format * [flux export](/cmd/flux_export/) - Export resources in YAML format

@ -1,3 +1,6 @@
---
title: "flux export receiver command"
---
## flux export receiver ## flux export receiver
Export Receiver resources in YAML format Export Receiver resources in YAML format
@ -32,7 +35,7 @@ flux export receiver [name] [flags]
``` ```
--all select all resources --all select all resources
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux export receiver [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export](flux_export.md) - Export resources in YAML format * [flux export](/cmd/flux_export/) - Export resources in YAML format

@ -1,3 +1,6 @@
---
title: "flux export source command"
---
## flux export source ## flux export source
Export sources Export sources
@ -18,7 +21,7 @@ The export source sub-commands export sources in YAML format.
``` ```
--all select all resources --all select all resources
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -26,8 +29,8 @@ The export source sub-commands export sources in YAML format.
### SEE ALSO ### SEE ALSO
* [flux export](flux_export.md) - Export resources in YAML format * [flux export](/cmd/flux_export/) - Export resources in YAML format
* [flux export source bucket](flux_export_source_bucket.md) - Export Bucket sources in YAML format * [flux export source bucket](/cmd/flux_export_source_bucket/) - Export Bucket sources in YAML format
* [flux export source git](flux_export_source_git.md) - Export GitRepository sources in YAML format * [flux export source git](/cmd/flux_export_source_git/) - Export GitRepository sources in YAML format
* [flux export source helm](flux_export_source_helm.md) - Export HelmRepository sources in YAML format * [flux export source helm](/cmd/flux_export_source_helm/) - Export HelmRepository sources in YAML format

@ -1,3 +1,6 @@
---
title: "flux export source bucket command"
---
## flux export source bucket ## flux export source bucket
Export Bucket sources in YAML format Export Bucket sources in YAML format
@ -32,7 +35,7 @@ flux export source bucket [name] [flags]
``` ```
--all select all resources --all select all resources
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -41,5 +44,5 @@ flux export source bucket [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export source](flux_export_source.md) - Export sources * [flux export source](/cmd/flux_export_source/) - Export sources

@ -1,3 +1,6 @@
---
title: "flux export source git command"
---
## flux export source git ## flux export source git
Export GitRepository sources in YAML format Export GitRepository sources in YAML format
@ -32,7 +35,7 @@ flux export source git [name] [flags]
``` ```
--all select all resources --all select all resources
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -41,5 +44,5 @@ flux export source git [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export source](flux_export_source.md) - Export sources * [flux export source](/cmd/flux_export_source/) - Export sources

@ -1,3 +1,6 @@
---
title: "flux export source helm command"
---
## flux export source helm ## flux export source helm
Export HelmRepository sources in YAML format Export HelmRepository sources in YAML format
@ -32,7 +35,7 @@ flux export source helm [name] [flags]
``` ```
--all select all resources --all select all resources
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -41,5 +44,5 @@ flux export source helm [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export source](flux_export_source.md) - Export sources * [flux export source](/cmd/flux_export_source/) - Export sources

@ -1,3 +1,6 @@
---
title: "flux get command"
---
## flux get ## flux get
Get the resources and their status Get the resources and their status
@ -17,7 +20,7 @@ The get sub-commands print the statuses of Flux resources.
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -25,12 +28,12 @@ The get sub-commands print the statuses of Flux resources.
### SEE ALSO ### SEE ALSO
* [flux](flux.md) - Command line utility for assembling Kubernetes CD pipelines * [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux get alert-providers](flux_get_alert-providers.md) - Get Provider statuses * [flux get alert-providers](/cmd/flux_get_alert-providers/) - Get Provider statuses
* [flux get alerts](flux_get_alerts.md) - Get Alert statuses * [flux get alerts](/cmd/flux_get_alerts/) - Get Alert statuses
* [flux get helmreleases](flux_get_helmreleases.md) - Get HelmRelease statuses * [flux get helmreleases](/cmd/flux_get_helmreleases/) - Get HelmRelease statuses
* [flux get images](flux_get_images.md) - Get image automation object status * [flux get images](/cmd/flux_get_images/) - Get image automation object status
* [flux get kustomizations](flux_get_kustomizations.md) - Get Kustomization statuses * [flux get kustomizations](/cmd/flux_get_kustomizations/) - Get Kustomization statuses
* [flux get receivers](flux_get_receivers.md) - Get Receiver statuses * [flux get receivers](/cmd/flux_get_receivers/) - Get Receiver statuses
* [flux get sources](flux_get_sources.md) - Get source statuses * [flux get sources](/cmd/flux_get_sources/) - Get source statuses

@ -1,3 +1,6 @@
---
title: "flux get alert-providers command"
---
## flux get alert-providers ## flux get alert-providers
Get Provider statuses Get Provider statuses
@ -29,7 +32,7 @@ flux get alert-providers [flags]
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -37,5 +40,5 @@ flux get alert-providers [flags]
### SEE ALSO ### SEE ALSO
* [flux get](flux_get.md) - Get the resources and their status * [flux get](/cmd/flux_get/) - Get the resources and their status

@ -1,3 +1,6 @@
---
title: "flux get alerts command"
---
## flux get alerts ## flux get alerts
Get Alert statuses Get Alert statuses
@ -29,7 +32,7 @@ flux get alerts [flags]
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -37,5 +40,5 @@ flux get alerts [flags]
### SEE ALSO ### SEE ALSO
* [flux get](flux_get.md) - Get the resources and their status * [flux get](/cmd/flux_get/) - Get the resources and their status

@ -1,3 +1,6 @@
---
title: "flux get helmreleases command"
---
## flux get helmreleases ## flux get helmreleases
Get HelmRelease statuses Get HelmRelease statuses
@ -29,7 +32,7 @@ flux get helmreleases [flags]
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -37,5 +40,5 @@ flux get helmreleases [flags]
### SEE ALSO ### SEE ALSO
* [flux get](flux_get.md) - Get the resources and their status * [flux get](/cmd/flux_get/) - Get the resources and their status

@ -1,3 +1,6 @@
---
title: "flux get images command"
---
## flux get images ## flux get images
Get image automation object status Get image automation object status
@ -17,7 +20,7 @@ The get image sub-commands print the status of image automation objects.
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -25,9 +28,9 @@ The get image sub-commands print the status of image automation objects.
### SEE ALSO ### SEE ALSO
* [flux get](flux_get.md) - Get the resources and their status * [flux get](/cmd/flux_get/) - Get the resources and their status
* [flux get images all](flux_get_images_all.md) - Get all image statuses * [flux get images all](/cmd/flux_get_images_all/) - Get all image statuses
* [flux get images policy](flux_get_images_policy.md) - Get ImagePolicy status * [flux get images policy](/cmd/flux_get_images_policy/) - Get ImagePolicy status
* [flux get images repository](flux_get_images_repository.md) - Get ImageRepository status * [flux get images repository](/cmd/flux_get_images_repository/) - Get ImageRepository status
* [flux get images update](flux_get_images_update.md) - Get ImageUpdateAutomation status * [flux get images update](/cmd/flux_get_images_update/) - Get ImageUpdateAutomation status

@ -1,3 +1,6 @@
---
title: "flux get images all command"
---
## flux get images all ## flux get images all
Get all image statuses Get all image statuses
@ -32,7 +35,7 @@ flux get images all [flags]
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux get images all [flags]
### SEE ALSO ### SEE ALSO
* [flux get images](flux_get_images.md) - Get image automation object status * [flux get images](/cmd/flux_get_images/) - Get image automation object status

@ -1,3 +1,6 @@
---
title: "flux get images policy command"
---
## flux get images policy ## flux get images policy
Get ImagePolicy status Get ImagePolicy status
@ -32,7 +35,7 @@ flux get images policy [flags]
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux get images policy [flags]
### SEE ALSO ### SEE ALSO
* [flux get images](flux_get_images.md) - Get image automation object status * [flux get images](/cmd/flux_get_images/) - Get image automation object status

@ -1,3 +1,6 @@
---
title: "flux get images repository command"
---
## flux get images repository ## flux get images repository
Get ImageRepository status Get ImageRepository status
@ -32,7 +35,7 @@ flux get images repository [flags]
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux get images repository [flags]
### SEE ALSO ### SEE ALSO
* [flux get images](flux_get_images.md) - Get image automation object status * [flux get images](/cmd/flux_get_images/) - Get image automation object status

@ -1,3 +1,6 @@
---
title: "flux get images update command"
---
## flux get images update ## flux get images update
Get ImageUpdateAutomation status Get ImageUpdateAutomation status
@ -32,7 +35,7 @@ flux get images update [flags]
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux get images update [flags]
### SEE ALSO ### SEE ALSO
* [flux get images](flux_get_images.md) - Get image automation object status * [flux get images](/cmd/flux_get_images/) - Get image automation object status

@ -1,3 +1,6 @@
---
title: "flux get kustomizations command"
---
## flux get kustomizations ## flux get kustomizations
Get Kustomization statuses Get Kustomization statuses
@ -29,7 +32,7 @@ flux get kustomizations [flags]
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -37,5 +40,5 @@ flux get kustomizations [flags]
### SEE ALSO ### SEE ALSO
* [flux get](flux_get.md) - Get the resources and their status * [flux get](/cmd/flux_get/) - Get the resources and their status

@ -1,3 +1,6 @@
---
title: "flux get receivers command"
---
## flux get receivers ## flux get receivers
Get Receiver statuses Get Receiver statuses
@ -29,7 +32,7 @@ flux get receivers [flags]
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -37,5 +40,5 @@ flux get receivers [flags]
### SEE ALSO ### SEE ALSO
* [flux get](flux_get.md) - Get the resources and their status * [flux get](/cmd/flux_get/) - Get the resources and their status

@ -1,3 +1,6 @@
---
title: "flux get sources command"
---
## flux get sources ## flux get sources
Get source statuses Get source statuses
@ -17,7 +20,7 @@ The get source sub-commands print the statuses of the sources.
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -25,10 +28,10 @@ The get source sub-commands print the statuses of the sources.
### SEE ALSO ### SEE ALSO
* [flux get](flux_get.md) - Get the resources and their status * [flux get](/cmd/flux_get/) - Get the resources and their status
* [flux get sources all](flux_get_sources_all.md) - Get all source statuses * [flux get sources all](/cmd/flux_get_sources_all/) - Get all source statuses
* [flux get sources bucket](flux_get_sources_bucket.md) - Get Bucket source statuses * [flux get sources bucket](/cmd/flux_get_sources_bucket/) - Get Bucket source statuses
* [flux get sources chart](flux_get_sources_chart.md) - Get HelmChart statuses * [flux get sources chart](/cmd/flux_get_sources_chart/) - Get HelmChart statuses
* [flux get sources git](flux_get_sources_git.md) - Get GitRepository source statuses * [flux get sources git](/cmd/flux_get_sources_git/) - Get GitRepository source statuses
* [flux get sources helm](flux_get_sources_helm.md) - Get HelmRepository source statuses * [flux get sources helm](/cmd/flux_get_sources_helm/) - Get HelmRepository source statuses

@ -1,3 +1,6 @@
---
title: "flux get sources all command"
---
## flux get sources all ## flux get sources all
Get all source statuses Get all source statuses
@ -32,7 +35,7 @@ flux get sources all [flags]
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux get sources all [flags]
### SEE ALSO ### SEE ALSO
* [flux get sources](flux_get_sources.md) - Get source statuses * [flux get sources](/cmd/flux_get_sources/) - Get source statuses

@ -1,3 +1,6 @@
---
title: "flux get sources bucket command"
---
## flux get sources bucket ## flux get sources bucket
Get Bucket source statuses Get Bucket source statuses
@ -32,7 +35,7 @@ flux get sources bucket [flags]
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux get sources bucket [flags]
### SEE ALSO ### SEE ALSO
* [flux get sources](flux_get_sources.md) - Get source statuses * [flux get sources](/cmd/flux_get_sources/) - Get source statuses

@ -1,3 +1,6 @@
---
title: "flux get sources chart command"
---
## flux get sources chart ## flux get sources chart
Get HelmChart statuses Get HelmChart statuses
@ -32,7 +35,7 @@ flux get sources chart [flags]
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux get sources chart [flags]
### SEE ALSO ### SEE ALSO
* [flux get sources](flux_get_sources.md) - Get source statuses * [flux get sources](/cmd/flux_get_sources/) - Get source statuses

@ -1,3 +1,6 @@
---
title: "flux get sources git command"
---
## flux get sources git ## flux get sources git
Get GitRepository source statuses Get GitRepository source statuses
@ -32,7 +35,7 @@ flux get sources git [flags]
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux get sources git [flags]
### SEE ALSO ### SEE ALSO
* [flux get sources](flux_get_sources.md) - Get source statuses * [flux get sources](/cmd/flux_get_sources/) - Get source statuses

@ -1,3 +1,6 @@
---
title: "flux get sources helm command"
---
## flux get sources helm ## flux get sources helm
Get HelmRepository source statuses Get HelmRepository source statuses
@ -32,7 +35,7 @@ flux get sources helm [flags]
``` ```
-A, --all-namespaces list the requested object(s) across all namespaces -A, --all-namespaces list the requested object(s) across all namespaces
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -40,5 +43,5 @@ flux get sources helm [flags]
### SEE ALSO ### SEE ALSO
* [flux get sources](flux_get_sources.md) - Get source statuses * [flux get sources](/cmd/flux_get_sources/) - Get source statuses

@ -1,3 +1,6 @@
---
title: "flux install command"
---
## flux install ## flux install
Install or upgrade Flux Install or upgrade Flux
@ -53,7 +56,7 @@ flux install [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -61,5 +64,5 @@ flux install [flags]
### SEE ALSO ### SEE ALSO
* [flux](flux.md) - Command line utility for assembling Kubernetes CD pipelines * [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines

@ -1,3 +1,6 @@
---
title: "flux logs command"
---
## flux logs ## flux logs
Display formatted logs for Flux components Display formatted logs for Flux components
@ -44,7 +47,7 @@ flux logs [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -52,5 +55,5 @@ flux logs [flags]
### SEE ALSO ### SEE ALSO
* [flux](flux.md) - Command line utility for assembling Kubernetes CD pipelines * [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines

@ -1,3 +1,6 @@
---
title: "flux reconcile command"
---
## flux reconcile ## flux reconcile
Reconcile sources and resources Reconcile sources and resources
@ -16,7 +19,7 @@ The reconcile sub-commands trigger a reconciliation of sources and resources.
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -24,12 +27,12 @@ The reconcile sub-commands trigger a reconciliation of sources and resources.
### SEE ALSO ### SEE ALSO
* [flux](flux.md) - Command line utility for assembling Kubernetes CD pipelines * [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux reconcile alert](flux_reconcile_alert.md) - Reconcile an Alert * [flux reconcile alert](/cmd/flux_reconcile_alert/) - Reconcile an Alert
* [flux reconcile alert-provider](flux_reconcile_alert-provider.md) - Reconcile a Provider * [flux reconcile alert-provider](/cmd/flux_reconcile_alert-provider/) - Reconcile a Provider
* [flux reconcile helmrelease](flux_reconcile_helmrelease.md) - Reconcile a HelmRelease resource * [flux reconcile helmrelease](/cmd/flux_reconcile_helmrelease/) - Reconcile a HelmRelease resource
* [flux reconcile image](flux_reconcile_image.md) - Reconcile image automation objects * [flux reconcile image](/cmd/flux_reconcile_image/) - Reconcile image automation objects
* [flux reconcile kustomization](flux_reconcile_kustomization.md) - Reconcile a Kustomization resource * [flux reconcile kustomization](/cmd/flux_reconcile_kustomization/) - Reconcile a Kustomization resource
* [flux reconcile receiver](flux_reconcile_receiver.md) - Reconcile a Receiver * [flux reconcile receiver](/cmd/flux_reconcile_receiver/) - Reconcile a Receiver
* [flux reconcile source](flux_reconcile_source.md) - Reconcile sources * [flux reconcile source](/cmd/flux_reconcile_source/) - Reconcile sources

@ -1,3 +1,6 @@
---
title: "flux reconcile alert-provider command"
---
## flux reconcile alert-provider ## flux reconcile alert-provider
Reconcile a Provider Reconcile a Provider
@ -28,7 +31,7 @@ flux reconcile alert-provider [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -36,5 +39,5 @@ flux reconcile alert-provider [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile](flux_reconcile.md) - Reconcile sources and resources * [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources

@ -1,3 +1,6 @@
---
title: "flux reconcile alert command"
---
## flux reconcile alert ## flux reconcile alert
Reconcile an Alert Reconcile an Alert
@ -28,7 +31,7 @@ flux reconcile alert [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -36,5 +39,5 @@ flux reconcile alert [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile](flux_reconcile.md) - Reconcile sources and resources * [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources

@ -1,3 +1,6 @@
---
title: "flux reconcile helmrelease command"
---
## flux reconcile helmrelease ## flux reconcile helmrelease
Reconcile a HelmRelease resource Reconcile a HelmRelease resource
@ -33,7 +36,7 @@ flux reconcile helmrelease [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -41,5 +44,5 @@ flux reconcile helmrelease [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile](flux_reconcile.md) - Reconcile sources and resources * [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources

@ -1,3 +1,6 @@
---
title: "flux reconcile image command"
---
## flux reconcile image ## flux reconcile image
Reconcile image automation objects Reconcile image automation objects
@ -16,7 +19,7 @@ The reconcile sub-commands trigger a reconciliation of image automation objects.
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -24,7 +27,7 @@ The reconcile sub-commands trigger a reconciliation of image automation objects.
### SEE ALSO ### SEE ALSO
* [flux reconcile](flux_reconcile.md) - Reconcile sources and resources * [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources
* [flux reconcile image repository](flux_reconcile_image_repository.md) - Reconcile an ImageRepository * [flux reconcile image repository](/cmd/flux_reconcile_image_repository/) - Reconcile an ImageRepository
* [flux reconcile image update](flux_reconcile_image_update.md) - Reconcile an ImageUpdateAutomation * [flux reconcile image update](/cmd/flux_reconcile_image_update/) - Reconcile an ImageUpdateAutomation

@ -1,3 +1,6 @@
---
title: "flux reconcile image repository command"
---
## flux reconcile image repository ## flux reconcile image repository
Reconcile an ImageRepository Reconcile an ImageRepository
@ -28,7 +31,7 @@ flux reconcile image repository [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -36,5 +39,5 @@ flux reconcile image repository [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile image](flux_reconcile_image.md) - Reconcile image automation objects * [flux reconcile image](/cmd/flux_reconcile_image/) - Reconcile image automation objects

@ -1,3 +1,6 @@
---
title: "flux reconcile image update command"
---
## flux reconcile image update ## flux reconcile image update
Reconcile an ImageUpdateAutomation Reconcile an ImageUpdateAutomation
@ -28,7 +31,7 @@ flux reconcile image update [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -36,5 +39,5 @@ flux reconcile image update [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile image](flux_reconcile_image.md) - Reconcile image automation objects * [flux reconcile image](/cmd/flux_reconcile_image/) - Reconcile image automation objects

@ -1,3 +1,6 @@
---
title: "flux reconcile kustomization command"
---
## flux reconcile kustomization ## flux reconcile kustomization
Reconcile a Kustomization resource Reconcile a Kustomization resource
@ -33,7 +36,7 @@ flux reconcile kustomization [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -41,5 +44,5 @@ flux reconcile kustomization [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile](flux_reconcile.md) - Reconcile sources and resources * [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources

@ -1,3 +1,6 @@
---
title: "flux reconcile receiver command"
---
## flux reconcile receiver ## flux reconcile receiver
Reconcile a Receiver Reconcile a Receiver
@ -28,7 +31,7 @@ flux reconcile receiver [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -36,5 +39,5 @@ flux reconcile receiver [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile](flux_reconcile.md) - Reconcile sources and resources * [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources

@ -1,3 +1,6 @@
---
title: "flux reconcile source command"
---
## flux reconcile source ## flux reconcile source
Reconcile sources Reconcile sources
@ -16,7 +19,7 @@ The reconcile source sub-commands trigger a reconciliation of sources.
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -24,8 +27,8 @@ The reconcile source sub-commands trigger a reconciliation of sources.
### SEE ALSO ### SEE ALSO
* [flux reconcile](flux_reconcile.md) - Reconcile sources and resources * [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources
* [flux reconcile source bucket](flux_reconcile_source_bucket.md) - Reconcile a Bucket source * [flux reconcile source bucket](/cmd/flux_reconcile_source_bucket/) - Reconcile a Bucket source
* [flux reconcile source git](flux_reconcile_source_git.md) - Reconcile a GitRepository source * [flux reconcile source git](/cmd/flux_reconcile_source_git/) - Reconcile a GitRepository source
* [flux reconcile source helm](flux_reconcile_source_helm.md) - Reconcile a HelmRepository source * [flux reconcile source helm](/cmd/flux_reconcile_source_helm/) - Reconcile a HelmRepository source

@ -1,3 +1,6 @@
---
title: "flux reconcile source bucket command"
---
## flux reconcile source bucket ## flux reconcile source bucket
Reconcile a Bucket source Reconcile a Bucket source
@ -28,7 +31,7 @@ flux reconcile source bucket [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -36,5 +39,5 @@ flux reconcile source bucket [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile source](flux_reconcile_source.md) - Reconcile sources * [flux reconcile source](/cmd/flux_reconcile_source/) - Reconcile sources

@ -1,3 +1,6 @@
---
title: "flux reconcile source git command"
---
## flux reconcile source git ## flux reconcile source git
Reconcile a GitRepository source Reconcile a GitRepository source
@ -28,7 +31,7 @@ flux reconcile source git [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -36,5 +39,5 @@ flux reconcile source git [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile source](flux_reconcile_source.md) - Reconcile sources * [flux reconcile source](/cmd/flux_reconcile_source/) - Reconcile sources

@ -1,3 +1,6 @@
---
title: "flux reconcile source helm command"
---
## flux reconcile source helm ## flux reconcile source helm
Reconcile a HelmRepository source Reconcile a HelmRepository source
@ -28,7 +31,7 @@ flux reconcile source helm [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -36,5 +39,5 @@ flux reconcile source helm [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile source](flux_reconcile_source.md) - Reconcile sources * [flux reconcile source](/cmd/flux_reconcile_source/) - Reconcile sources

@ -1,3 +1,6 @@
---
title: "flux resume command"
---
## flux resume ## flux resume
Resume suspended resources Resume suspended resources
@ -16,7 +19,7 @@ The resume sub-commands resume a suspended resource.
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -24,11 +27,11 @@ The resume sub-commands resume a suspended resource.
### SEE ALSO ### SEE ALSO
* [flux](flux.md) - Command line utility for assembling Kubernetes CD pipelines * [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux resume alert](flux_resume_alert.md) - Resume a suspended Alert * [flux resume alert](/cmd/flux_resume_alert/) - Resume a suspended Alert
* [flux resume helmrelease](flux_resume_helmrelease.md) - Resume a suspended HelmRelease * [flux resume helmrelease](/cmd/flux_resume_helmrelease/) - Resume a suspended HelmRelease
* [flux resume image](flux_resume_image.md) - Resume image automation objects * [flux resume image](/cmd/flux_resume_image/) - Resume image automation objects
* [flux resume kustomization](flux_resume_kustomization.md) - Resume a suspended Kustomization * [flux resume kustomization](/cmd/flux_resume_kustomization/) - Resume a suspended Kustomization
* [flux resume receiver](flux_resume_receiver.md) - Resume a suspended Receiver * [flux resume receiver](/cmd/flux_resume_receiver/) - Resume a suspended Receiver
* [flux resume source](flux_resume_source.md) - Resume sources * [flux resume source](/cmd/flux_resume_source/) - Resume sources

@ -1,3 +1,6 @@
---
title: "flux resume alert command"
---
## flux resume alert ## flux resume alert
Resume a suspended Alert Resume a suspended Alert
@ -29,7 +32,7 @@ flux resume alert [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -37,5 +40,5 @@ flux resume alert [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux resume](flux_resume.md) - Resume suspended resources * [flux resume](/cmd/flux_resume/) - Resume suspended resources

@ -1,3 +1,6 @@
---
title: "flux resume helmrelease command"
---
## flux resume helmrelease ## flux resume helmrelease
Resume a suspended HelmRelease Resume a suspended HelmRelease
@ -29,7 +32,7 @@ flux resume helmrelease [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -37,5 +40,5 @@ flux resume helmrelease [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux resume](flux_resume.md) - Resume suspended resources * [flux resume](/cmd/flux_resume/) - Resume suspended resources

@ -1,3 +1,6 @@
---
title: "flux resume image command"
---
## flux resume image ## flux resume image
Resume image automation objects Resume image automation objects
@ -16,7 +19,7 @@ The resume image sub-commands resume suspended image automation objects.
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -24,7 +27,7 @@ The resume image sub-commands resume suspended image automation objects.
### SEE ALSO ### SEE ALSO
* [flux resume](flux_resume.md) - Resume suspended resources * [flux resume](/cmd/flux_resume/) - Resume suspended resources
* [flux resume image repository](flux_resume_image_repository.md) - Resume a suspended ImageRepository * [flux resume image repository](/cmd/flux_resume_image_repository/) - Resume a suspended ImageRepository
* [flux resume image update](flux_resume_image_update.md) - Resume a suspended ImageUpdateAutomation * [flux resume image update](/cmd/flux_resume_image_update/) - Resume a suspended ImageUpdateAutomation

@ -1,3 +1,6 @@
---
title: "flux resume image repository command"
---
## flux resume image repository ## flux resume image repository
Resume a suspended ImageRepository Resume a suspended ImageRepository
@ -28,7 +31,7 @@ flux resume image repository [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -36,5 +39,5 @@ flux resume image repository [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux resume image](flux_resume_image.md) - Resume image automation objects * [flux resume image](/cmd/flux_resume_image/) - Resume image automation objects

@ -1,3 +1,6 @@
---
title: "flux resume image update command"
---
## flux resume image update ## flux resume image update
Resume a suspended ImageUpdateAutomation Resume a suspended ImageUpdateAutomation
@ -28,7 +31,7 @@ flux resume image update [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -36,5 +39,5 @@ flux resume image update [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux resume image](flux_resume_image.md) - Resume image automation objects * [flux resume image](/cmd/flux_resume_image/) - Resume image automation objects

@ -1,3 +1,6 @@
---
title: "flux resume kustomization command"
---
## flux resume kustomization ## flux resume kustomization
Resume a suspended Kustomization Resume a suspended Kustomization
@ -29,7 +32,7 @@ flux resume kustomization [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -37,5 +40,5 @@ flux resume kustomization [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux resume](flux_resume.md) - Resume suspended resources * [flux resume](/cmd/flux_resume/) - Resume suspended resources

@ -1,3 +1,6 @@
---
title: "flux resume receiver command"
---
## flux resume receiver ## flux resume receiver
Resume a suspended Receiver Resume a suspended Receiver
@ -29,7 +32,7 @@ flux resume receiver [name] [flags]
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -37,5 +40,5 @@ flux resume receiver [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux resume](flux_resume.md) - Resume suspended resources * [flux resume](/cmd/flux_resume/) - Resume suspended resources

@ -1,3 +1,6 @@
---
title: "flux resume source command"
---
## flux resume source ## flux resume source
Resume sources Resume sources
@ -16,7 +19,7 @@ The resume sub-commands resume a suspended source.
``` ```
--context string kubernetes context to use --context string kubernetes context to use
--kubeconfig string path to the kubeconfig file (default "~/.kube/config") --kubeconfig string absolute path to the kubeconfig file
-n, --namespace string the namespace scope for this operation (default "flux-system") -n, --namespace string the namespace scope for this operation (default "flux-system")
--timeout duration timeout for this operation (default 5m0s) --timeout duration timeout for this operation (default 5m0s)
--verbose print generated objects --verbose print generated objects
@ -24,9 +27,9 @@ The resume sub-commands resume a suspended source.
### SEE ALSO ### SEE ALSO
* [flux resume](flux_resume.md) - Resume suspended resources * [flux resume](/cmd/flux_resume/) - Resume suspended resources
* [flux resume source bucket](flux_resume_source_bucket.md) - Resume a suspended Bucket * [flux resume source bucket](/cmd/flux_resume_source_bucket/) - Resume a suspended Bucket
* [flux resume source chart](flux_resume_source_chart.md) - Resume a suspended HelmChart * [flux resume source chart](/cmd/flux_resume_source_chart/) - Resume a suspended HelmChart
* [flux resume source git](flux_resume_source_git.md) - Resume a suspended GitRepository * [flux resume source git](/cmd/flux_resume_source_git/) - Resume a suspended GitRepository
* [flux resume source helm](flux_resume_source_helm.md) - Resume a suspended HelmRepository * [flux resume source helm](/cmd/flux_resume_source_helm/) - Resume a suspended HelmRepository

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save