fix links

- change links in cli docs to be relative (making mkdocs AND hugo happy)
	- run 'make docs'
	- fix other links

Signed-off-by: Daniel Holbach <daniel@weave.works>
pull/1163/head
Daniel Holbach 4 years ago
parent dea4a67639
commit 32f94bab97

@ -32,8 +32,7 @@ title: "%s"
` `
var ( var (
cmdDocPath string cmdDocPath string
cmdDocURLPath string
) )
var docgenCmd = &cobra.Command{ var docgenCmd = &cobra.Command{
@ -45,7 +44,6 @@ var docgenCmd = &cobra.Command{
func init() { func init() {
docgenCmd.Flags().StringVar(&cmdDocPath, "path", "./docs/cmd", "path to write the generated documentation to") 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) rootCmd.AddCommand(docgenCmd)
} }
@ -67,5 +65,5 @@ func frontmatterPrepender(filename string) string {
func linkHandler(name string) string { func linkHandler(name string) string {
base := strings.TrimSuffix(name, path.Ext(name)) base := strings.TrimSuffix(name, path.Ext(name))
return cmdDocURLPath + strings.ToLower(base) + "/" return "../" + strings.ToLower(base) + "/"
} }

@ -80,17 +80,17 @@ Command line utility for assembling Kubernetes CD pipelines the GitOps way.
### SEE ALSO ### SEE ALSO
* [flux bootstrap](/cmd/flux_bootstrap/) - Bootstrap toolkit components * [flux bootstrap](../flux_bootstrap/) - Bootstrap toolkit components
* [flux check](/cmd/flux_check/) - Check requirements and installation * [flux check](../flux_check/) - Check requirements and installation
* [flux completion](/cmd/flux_completion/) - Generates completion scripts for various shells * [flux completion](../flux_completion/) - Generates completion scripts for various shells
* [flux create](/cmd/flux_create/) - Create or update sources and resources * [flux create](../flux_create/) - Create or update sources and resources
* [flux delete](/cmd/flux_delete/) - Delete sources and resources * [flux delete](../flux_delete/) - Delete sources and resources
* [flux export](/cmd/flux_export/) - Export resources in YAML format * [flux export](../flux_export/) - Export resources in YAML format
* [flux get](/cmd/flux_get/) - Get the resources and their status * [flux get](../flux_get/) - Get the resources and their status
* [flux install](/cmd/flux_install/) - Install or upgrade Flux * [flux install](../flux_install/) - Install or upgrade Flux
* [flux logs](/cmd/flux_logs/) - Display formatted logs for Flux components * [flux logs](../flux_logs/) - Display formatted logs for Flux components
* [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources * [flux reconcile](../flux_reconcile/) - Reconcile sources and resources
* [flux resume](/cmd/flux_resume/) - Resume suspended resources * [flux resume](../flux_resume/) - Resume suspended resources
* [flux suspend](/cmd/flux_suspend/) - Suspend resources * [flux suspend](../flux_suspend/) - Suspend resources
* [flux uninstall](/cmd/flux_uninstall/) - Uninstall Flux and its custom resource definitions * [flux uninstall](../flux_uninstall/) - Uninstall Flux and its custom resource definitions

@ -39,7 +39,7 @@ The bootstrap sub-commands bootstrap the toolkit components on the targeted Git
### SEE ALSO ### SEE ALSO
* [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines * [flux](../flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux bootstrap github](/cmd/flux_bootstrap_github/) - Bootstrap toolkit components in a GitHub repository * [flux bootstrap github](../flux_bootstrap_github/) - Bootstrap toolkit components in a GitHub repository
* [flux bootstrap gitlab](/cmd/flux_bootstrap_gitlab/) - Bootstrap toolkit components in a GitLab repository * [flux bootstrap gitlab](../flux_bootstrap_gitlab/) - Bootstrap toolkit components in a GitLab repository

@ -84,5 +84,5 @@ flux bootstrap github [flags]
### SEE ALSO ### SEE ALSO
* [flux bootstrap](/cmd/flux_bootstrap/) - Bootstrap toolkit components * [flux bootstrap](../flux_bootstrap/) - Bootstrap toolkit components

@ -80,5 +80,5 @@ flux bootstrap gitlab [flags]
### SEE ALSO ### SEE ALSO
* [flux bootstrap](/cmd/flux_bootstrap/) - Bootstrap toolkit components * [flux bootstrap](../flux_bootstrap/) - Bootstrap toolkit components

@ -45,5 +45,5 @@ flux check [flags]
### SEE ALSO ### SEE ALSO
* [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines * [flux](../flux/) - Command line utility for assembling Kubernetes CD pipelines

@ -27,9 +27,9 @@ The completion sub-command generates completion scripts for various shells
### SEE ALSO ### SEE ALSO
* [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines * [flux](../flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux completion bash](/cmd/flux_completion_bash/) - Generates bash completion scripts * [flux completion bash](../flux_completion_bash/) - Generates bash completion scripts
* [flux completion fish](/cmd/flux_completion_fish/) - Generates fish completion scripts * [flux completion fish](../flux_completion_fish/) - Generates fish completion scripts
* [flux completion powershell](/cmd/flux_completion_powershell/) - Generates powershell completion scripts * [flux completion powershell](../flux_completion_powershell/) - Generates powershell completion scripts
* [flux completion zsh](/cmd/flux_completion_zsh/) - Generates zsh completion scripts * [flux completion zsh](../flux_completion_zsh/) - Generates zsh completion scripts

@ -40,5 +40,5 @@ command -v flux >/dev/null && . <(flux completion bash)
### SEE ALSO ### SEE ALSO
* [flux completion](/cmd/flux_completion/) - Generates completion scripts for various shells * [flux completion](../flux_completion/) - Generates completion scripts for various shells

@ -37,5 +37,5 @@ See http://fishshell.com/docs/current/index.html#completion-own for more details
### SEE ALSO ### SEE ALSO
* [flux completion](/cmd/flux_completion/) - Generates completion scripts for various shells * [flux completion](../flux_completion/) - Generates completion scripts for various shells

@ -47,5 +47,5 @@ flux completion >> flux-completions.ps1
### SEE ALSO ### SEE ALSO
* [flux completion](/cmd/flux_completion/) - Generates completion scripts for various shells * [flux completion](../flux_completion/) - Generates completion scripts for various shells

@ -48,5 +48,5 @@ mv _flux ~/.zprezto/modules/completion/external/src/ # zprezto
### SEE ALSO ### SEE ALSO
* [flux completion](/cmd/flux_completion/) - Generates completion scripts for various shells * [flux completion](../flux_completion/) - Generates completion scripts for various shells

@ -30,14 +30,14 @@ The create sub-commands generate sources and resources.
### SEE ALSO ### SEE ALSO
* [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines * [flux](../flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux create alert](/cmd/flux_create_alert/) - Create or update a Alert resource * [flux create alert](../flux_create_alert/) - Create or update a Alert resource
* [flux create alert-provider](/cmd/flux_create_alert-provider/) - Create or update a Provider resource * [flux create alert-provider](../flux_create_alert-provider/) - Create or update a Provider resource
* [flux create helmrelease](/cmd/flux_create_helmrelease/) - Create or update a HelmRelease resource * [flux create helmrelease](../flux_create_helmrelease/) - Create or update a HelmRelease resource
* [flux create image](/cmd/flux_create_image/) - Create or update resources dealing with image automation * [flux create image](../flux_create_image/) - Create or update resources dealing with image automation
* [flux create kustomization](/cmd/flux_create_kustomization/) - Create or update a Kustomization resource * [flux create kustomization](../flux_create_kustomization/) - Create or update a Kustomization resource
* [flux create receiver](/cmd/flux_create_receiver/) - Create or update a Receiver resource * [flux create receiver](../flux_create_receiver/) - Create or update a Receiver resource
* [flux create secret](/cmd/flux_create_secret/) - Create or update Kubernetes secrets * [flux create secret](../flux_create_secret/) - Create or update Kubernetes secrets
* [flux create source](/cmd/flux_create_source/) - Create or update sources * [flux create source](../flux_create_source/) - Create or update sources
* [flux create tenant](/cmd/flux_create_tenant/) - Create or update a tenant * [flux create tenant](../flux_create_tenant/) - Create or update a tenant

@ -56,5 +56,5 @@ flux create alert-provider [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create](/cmd/flux_create/) - Create or update sources and resources * [flux create](../flux_create/) - Create or update sources and resources

@ -48,5 +48,5 @@ flux create alert [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create](/cmd/flux_create/) - Create or update sources and resources * [flux create](../flux_create/) - Create or update sources and resources

@ -100,5 +100,5 @@ flux create helmrelease [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create](/cmd/flux_create/) - Create or update sources and resources * [flux create](../flux_create/) - Create or update sources and resources

@ -32,8 +32,8 @@ being available.
### SEE ALSO ### SEE ALSO
* [flux create](/cmd/flux_create/) - Create or update sources and resources * [flux create](../flux_create/) - Create or update sources and resources
* [flux create image policy](/cmd/flux_create_image_policy/) - Create or update an ImagePolicy object * [flux create image policy](../flux_create_image_policy/) - Create or update an ImagePolicy object
* [flux create image repository](/cmd/flux_create_image_repository/) - Create or update an ImageRepository object * [flux create image repository](../flux_create_image_repository/) - Create or update an ImageRepository object
* [flux create image update](/cmd/flux_create_image_update/) - Create or update an ImageUpdateAutomation object * [flux create image update](../flux_create_image_update/) - Create or update an ImageUpdateAutomation object

@ -61,5 +61,5 @@ flux create image policy [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create image](/cmd/flux_create_image/) - Create or update resources dealing with image automation * [flux create image](../flux_create_image/) - Create or update resources dealing with image automation

@ -68,5 +68,5 @@ flux create image repository [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create image](/cmd/flux_create_image/) - Create or update resources dealing with image automation * [flux create image](../flux_create_image/) - Create or update resources dealing with image automation

@ -66,5 +66,5 @@ flux create image update [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create image](/cmd/flux_create_image/) - Create or update resources dealing with image automation * [flux create image](../flux_create_image/) - Create or update resources dealing with image automation

@ -75,5 +75,5 @@ flux create kustomization [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create](/cmd/flux_create/) - Create or update sources and resources * [flux create](../flux_create/) - Create or update sources and resources

@ -51,5 +51,5 @@ flux create receiver [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create](/cmd/flux_create/) - Create or update sources and resources * [flux create](../flux_create/) - Create or update sources and resources

@ -30,8 +30,8 @@ The create source sub-commands generate Kubernetes secrets specific to Flux.
### SEE ALSO ### SEE ALSO
* [flux create](/cmd/flux_create/) - Create or update sources and resources * [flux create](../flux_create/) - Create or update sources and resources
* [flux create secret git](/cmd/flux_create_secret_git/) - Create or update a Kubernetes secret for Git authentication * [flux create secret git](../flux_create_secret_git/) - Create or update a Kubernetes secret for Git authentication
* [flux create secret helm](/cmd/flux_create_secret_helm/) - Create or update a Kubernetes secret for Helm repository authentication * [flux create secret helm](../flux_create_secret_helm/) - Create or update a Kubernetes secret for Helm repository authentication
* [flux create secret tls](/cmd/flux_create_secret_tls/) - Create or update a Kubernetes secret with TLS certificates * [flux create secret tls](../flux_create_secret_tls/) - Create or update a Kubernetes secret with TLS certificates

@ -83,5 +83,5 @@ flux create secret git [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create secret](/cmd/flux_create_secret/) - Create or update Kubernetes secrets * [flux create secret](../flux_create_secret/) - Create or update Kubernetes secrets

@ -61,5 +61,5 @@ flux create secret helm [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create secret](/cmd/flux_create_secret/) - Create or update Kubernetes secrets * [flux create secret](../flux_create_secret/) - Create or update Kubernetes secrets

@ -52,5 +52,5 @@ flux create secret tls [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create secret](/cmd/flux_create_secret/) - Create or update Kubernetes secrets * [flux create secret](../flux_create_secret/) - Create or update Kubernetes secrets

@ -30,8 +30,8 @@ The create source sub-commands generate sources.
### SEE ALSO ### SEE ALSO
* [flux create](/cmd/flux_create/) - Create or update sources and resources * [flux create](../flux_create/) - Create or update sources and resources
* [flux create source bucket](/cmd/flux_create_source_bucket/) - Create or update a Bucket source * [flux create source bucket](../flux_create_source_bucket/) - Create or update a Bucket source
* [flux create source git](/cmd/flux_create_source_git/) - Create or update a GitRepository source * [flux create source git](../flux_create_source_git/) - Create or update a GitRepository source
* [flux create source helm](/cmd/flux_create_source_helm/) - Create or update a HelmRepository source * [flux create source helm](../flux_create_source_helm/) - Create or update a HelmRepository source

@ -64,5 +64,5 @@ flux create source bucket [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create source](/cmd/flux_create_source/) - Create or update sources * [flux create source](../flux_create_source/) - Create or update sources

@ -95,5 +95,5 @@ flux create source git [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create source](/cmd/flux_create_source/) - Create or update sources * [flux create source](../flux_create_source/) - Create or update sources

@ -64,5 +64,5 @@ flux create source helm [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux create source](/cmd/flux_create_source/) - Create or update sources * [flux create source](../flux_create_source/) - Create or update sources

@ -52,5 +52,5 @@ flux create tenant [flags]
### SEE ALSO ### SEE ALSO
* [flux create](/cmd/flux_create/) - Create or update sources and resources * [flux create](../flux_create/) - Create or update sources and resources

@ -28,12 +28,12 @@ The delete sub-commands delete sources and resources.
### SEE ALSO ### SEE ALSO
* [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines * [flux](../flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux delete alert](/cmd/flux_delete_alert/) - Delete a Alert resource * [flux delete alert](../flux_delete_alert/) - Delete a Alert resource
* [flux delete alert-provider](/cmd/flux_delete_alert-provider/) - Delete a Provider resource * [flux delete alert-provider](../flux_delete_alert-provider/) - Delete a Provider resource
* [flux delete helmrelease](/cmd/flux_delete_helmrelease/) - Delete a HelmRelease resource * [flux delete helmrelease](../flux_delete_helmrelease/) - Delete a HelmRelease resource
* [flux delete image](/cmd/flux_delete_image/) - Delete image automation objects * [flux delete image](../flux_delete_image/) - Delete image automation objects
* [flux delete kustomization](/cmd/flux_delete_kustomization/) - Delete a Kustomization resource * [flux delete kustomization](../flux_delete_kustomization/) - Delete a Kustomization resource
* [flux delete receiver](/cmd/flux_delete_receiver/) - Delete a Receiver resource * [flux delete receiver](../flux_delete_receiver/) - Delete a Receiver resource
* [flux delete source](/cmd/flux_delete_source/) - Delete sources * [flux delete source](../flux_delete_source/) - Delete sources

@ -39,5 +39,5 @@ flux delete alert-provider [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete](/cmd/flux_delete/) - Delete sources and resources * [flux delete](../flux_delete/) - Delete sources and resources

@ -39,5 +39,5 @@ flux delete alert [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete](/cmd/flux_delete/) - Delete sources and resources * [flux delete](../flux_delete/) - Delete sources and resources

@ -39,5 +39,5 @@ flux delete helmrelease [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete](/cmd/flux_delete/) - Delete sources and resources * [flux delete](../flux_delete/) - Delete sources and resources

@ -28,8 +28,8 @@ The delete image sub-commands delete image automation objects.
### SEE ALSO ### SEE ALSO
* [flux delete](/cmd/flux_delete/) - Delete sources and resources * [flux delete](../flux_delete/) - Delete sources and resources
* [flux delete image policy](/cmd/flux_delete_image_policy/) - Delete an ImagePolicy object * [flux delete image policy](../flux_delete_image_policy/) - Delete an ImagePolicy object
* [flux delete image repository](/cmd/flux_delete_image_repository/) - Delete an ImageRepository object * [flux delete image repository](../flux_delete_image_repository/) - Delete an ImageRepository object
* [flux delete image update](/cmd/flux_delete_image_update/) - Delete an ImageUpdateAutomation object * [flux delete image update](../flux_delete_image_update/) - Delete an ImageUpdateAutomation object

@ -39,5 +39,5 @@ flux delete image policy [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete image](/cmd/flux_delete_image/) - Delete image automation objects * [flux delete image](../flux_delete_image/) - Delete image automation objects

@ -39,5 +39,5 @@ flux delete image repository [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete image](/cmd/flux_delete_image/) - Delete image automation objects * [flux delete image](../flux_delete_image/) - Delete image automation objects

@ -39,5 +39,5 @@ flux delete image update [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete image](/cmd/flux_delete_image/) - Delete image automation objects * [flux delete image](../flux_delete_image/) - Delete image automation objects

@ -39,5 +39,5 @@ flux delete kustomization [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete](/cmd/flux_delete/) - Delete sources and resources * [flux delete](../flux_delete/) - Delete sources and resources

@ -39,5 +39,5 @@ flux delete receiver [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete](/cmd/flux_delete/) - Delete sources and resources * [flux delete](../flux_delete/) - Delete sources and resources

@ -28,8 +28,8 @@ The delete source sub-commands delete sources.
### SEE ALSO ### SEE ALSO
* [flux delete](/cmd/flux_delete/) - Delete sources and resources * [flux delete](../flux_delete/) - Delete sources and resources
* [flux delete source bucket](/cmd/flux_delete_source_bucket/) - Delete a Bucket source * [flux delete source bucket](../flux_delete_source_bucket/) - Delete a Bucket source
* [flux delete source git](/cmd/flux_delete_source_git/) - Delete a GitRepository source * [flux delete source git](../flux_delete_source_git/) - Delete a GitRepository source
* [flux delete source helm](/cmd/flux_delete_source_helm/) - Delete a HelmRepository source * [flux delete source helm](../flux_delete_source_helm/) - Delete a HelmRepository source

@ -39,5 +39,5 @@ flux delete source bucket [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete source](/cmd/flux_delete_source/) - Delete sources * [flux delete source](../flux_delete_source/) - Delete sources

@ -39,5 +39,5 @@ flux delete source git [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete source](/cmd/flux_delete_source/) - Delete sources * [flux delete source](../flux_delete_source/) - Delete sources

@ -39,5 +39,5 @@ flux delete source helm [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux delete source](/cmd/flux_delete_source/) - Delete sources * [flux delete source](../flux_delete_source/) - Delete sources

@ -28,12 +28,12 @@ The export sub-commands export resources in YAML format.
### SEE ALSO ### SEE ALSO
* [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines * [flux](../flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux export alert](/cmd/flux_export_alert/) - Export Alert resources in YAML format * [flux export alert](../flux_export_alert/) - Export Alert resources in YAML format
* [flux export alert-provider](/cmd/flux_export_alert-provider/) - Export Provider resources in YAML format * [flux export alert-provider](../flux_export_alert-provider/) - Export Provider resources in YAML format
* [flux export helmrelease](/cmd/flux_export_helmrelease/) - Export HelmRelease resources in YAML format * [flux export helmrelease](../flux_export_helmrelease/) - Export HelmRelease resources in YAML format
* [flux export image](/cmd/flux_export_image/) - Export image automation objects * [flux export image](../flux_export_image/) - Export image automation objects
* [flux export kustomization](/cmd/flux_export_kustomization/) - Export Kustomization resources in YAML format * [flux export kustomization](../flux_export_kustomization/) - Export Kustomization resources in YAML format
* [flux export receiver](/cmd/flux_export_receiver/) - Export Receiver resources in YAML format * [flux export receiver](../flux_export_receiver/) - Export Receiver resources in YAML format
* [flux export source](/cmd/flux_export_source/) - Export sources * [flux export source](../flux_export_source/) - Export sources

@ -42,5 +42,5 @@ flux export alert-provider [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export](/cmd/flux_export/) - Export resources in YAML format * [flux export](../flux_export/) - Export resources in YAML format

@ -42,5 +42,5 @@ flux export alert [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export](/cmd/flux_export/) - Export resources in YAML format * [flux export](../flux_export/) - Export resources in YAML format

@ -42,5 +42,5 @@ flux export helmrelease [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export](/cmd/flux_export/) - Export resources in YAML format * [flux export](../flux_export/) - Export resources in YAML format

@ -28,8 +28,8 @@ The export image sub-commands export image automation objects in YAML format.
### SEE ALSO ### SEE ALSO
* [flux export](/cmd/flux_export/) - Export resources in YAML format * [flux export](../flux_export/) - Export resources in YAML format
* [flux export image policy](/cmd/flux_export_image_policy/) - Export ImagePolicy resources in YAML format * [flux export image policy](../flux_export_image_policy/) - Export ImagePolicy resources in YAML format
* [flux export image repository](/cmd/flux_export_image_repository/) - Export ImageRepository resources in YAML format * [flux export image repository](../flux_export_image_repository/) - Export ImageRepository resources in YAML format
* [flux export image update](/cmd/flux_export_image_update/) - Export ImageUpdateAutomation resources in YAML format * [flux export image update](../flux_export_image_update/) - Export ImageUpdateAutomation resources in YAML format

@ -42,5 +42,5 @@ flux export image policy [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export image](/cmd/flux_export_image/) - Export image automation objects * [flux export image](../flux_export_image/) - Export image automation objects

@ -42,5 +42,5 @@ flux export image repository [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export image](/cmd/flux_export_image/) - Export image automation objects * [flux export image](../flux_export_image/) - Export image automation objects

@ -42,5 +42,5 @@ flux export image update [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export image](/cmd/flux_export_image/) - Export image automation objects * [flux export image](../flux_export_image/) - Export image automation objects

@ -42,5 +42,5 @@ flux export kustomization [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export](/cmd/flux_export/) - Export resources in YAML format * [flux export](../flux_export/) - Export resources in YAML format

@ -42,5 +42,5 @@ flux export receiver [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export](/cmd/flux_export/) - Export resources in YAML format * [flux export](../flux_export/) - Export resources in YAML format

@ -29,8 +29,8 @@ The export source sub-commands export sources in YAML format.
### SEE ALSO ### SEE ALSO
* [flux export](/cmd/flux_export/) - Export resources in YAML format * [flux export](../flux_export/) - Export resources in YAML format
* [flux export source bucket](/cmd/flux_export_source_bucket/) - Export Bucket sources in YAML format * [flux export source bucket](../flux_export_source_bucket/) - Export Bucket sources in YAML format
* [flux export source git](/cmd/flux_export_source_git/) - Export GitRepository sources in YAML format * [flux export source git](../flux_export_source_git/) - Export GitRepository sources in YAML format
* [flux export source helm](/cmd/flux_export_source_helm/) - Export HelmRepository sources in YAML format * [flux export source helm](../flux_export_source_helm/) - Export HelmRepository sources in YAML format

@ -43,5 +43,5 @@ flux export source bucket [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export source](/cmd/flux_export_source/) - Export sources * [flux export source](../flux_export_source/) - Export sources

@ -43,5 +43,5 @@ flux export source git [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export source](/cmd/flux_export_source/) - Export sources * [flux export source](../flux_export_source/) - Export sources

@ -43,5 +43,5 @@ flux export source helm [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux export source](/cmd/flux_export_source/) - Export sources * [flux export source](../flux_export_source/) - Export sources

@ -28,12 +28,12 @@ The get sub-commands print the statuses of Flux resources.
### SEE ALSO ### SEE ALSO
* [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines * [flux](../flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux get alert-providers](/cmd/flux_get_alert-providers/) - Get Provider statuses * [flux get alert-providers](../flux_get_alert-providers/) - Get Provider statuses
* [flux get alerts](/cmd/flux_get_alerts/) - Get Alert statuses * [flux get alerts](../flux_get_alerts/) - Get Alert statuses
* [flux get helmreleases](/cmd/flux_get_helmreleases/) - Get HelmRelease statuses * [flux get helmreleases](../flux_get_helmreleases/) - Get HelmRelease statuses
* [flux get images](/cmd/flux_get_images/) - Get image automation object status * [flux get images](../flux_get_images/) - Get image automation object status
* [flux get kustomizations](/cmd/flux_get_kustomizations/) - Get Kustomization statuses * [flux get kustomizations](../flux_get_kustomizations/) - Get Kustomization statuses
* [flux get receivers](/cmd/flux_get_receivers/) - Get Receiver statuses * [flux get receivers](../flux_get_receivers/) - Get Receiver statuses
* [flux get sources](/cmd/flux_get_sources/) - Get source statuses * [flux get sources](../flux_get_sources/) - Get source statuses

@ -39,5 +39,5 @@ flux get alert-providers [flags]
### SEE ALSO ### SEE ALSO
* [flux get](/cmd/flux_get/) - Get the resources and their status * [flux get](../flux_get/) - Get the resources and their status

@ -39,5 +39,5 @@ flux get alerts [flags]
### SEE ALSO ### SEE ALSO
* [flux get](/cmd/flux_get/) - Get the resources and their status * [flux get](../flux_get/) - Get the resources and their status

@ -39,5 +39,5 @@ flux get helmreleases [flags]
### SEE ALSO ### SEE ALSO
* [flux get](/cmd/flux_get/) - Get the resources and their status * [flux get](../flux_get/) - Get the resources and their status

@ -28,9 +28,9 @@ The get image sub-commands print the status of image automation objects.
### SEE ALSO ### SEE ALSO
* [flux get](/cmd/flux_get/) - Get the resources and their status * [flux get](../flux_get/) - Get the resources and their status
* [flux get images all](/cmd/flux_get_images_all/) - Get all image statuses * [flux get images all](../flux_get_images_all/) - Get all image statuses
* [flux get images policy](/cmd/flux_get_images_policy/) - Get ImagePolicy status * [flux get images policy](../flux_get_images_policy/) - Get ImagePolicy status
* [flux get images repository](/cmd/flux_get_images_repository/) - Get ImageRepository status * [flux get images repository](../flux_get_images_repository/) - Get ImageRepository status
* [flux get images update](/cmd/flux_get_images_update/) - Get ImageUpdateAutomation status * [flux get images update](../flux_get_images_update/) - Get ImageUpdateAutomation status

@ -42,5 +42,5 @@ flux get images all [flags]
### SEE ALSO ### SEE ALSO
* [flux get images](/cmd/flux_get_images/) - Get image automation object status * [flux get images](../flux_get_images/) - Get image automation object status

@ -42,5 +42,5 @@ flux get images policy [flags]
### SEE ALSO ### SEE ALSO
* [flux get images](/cmd/flux_get_images/) - Get image automation object status * [flux get images](../flux_get_images/) - Get image automation object status

@ -42,5 +42,5 @@ flux get images repository [flags]
### SEE ALSO ### SEE ALSO
* [flux get images](/cmd/flux_get_images/) - Get image automation object status * [flux get images](../flux_get_images/) - Get image automation object status

@ -42,5 +42,5 @@ flux get images update [flags]
### SEE ALSO ### SEE ALSO
* [flux get images](/cmd/flux_get_images/) - Get image automation object status * [flux get images](../flux_get_images/) - Get image automation object status

@ -39,5 +39,5 @@ flux get kustomizations [flags]
### SEE ALSO ### SEE ALSO
* [flux get](/cmd/flux_get/) - Get the resources and their status * [flux get](../flux_get/) - Get the resources and their status

@ -39,5 +39,5 @@ flux get receivers [flags]
### SEE ALSO ### SEE ALSO
* [flux get](/cmd/flux_get/) - Get the resources and their status * [flux get](../flux_get/) - Get the resources and their status

@ -28,10 +28,10 @@ The get source sub-commands print the statuses of the sources.
### SEE ALSO ### SEE ALSO
* [flux get](/cmd/flux_get/) - Get the resources and their status * [flux get](../flux_get/) - Get the resources and their status
* [flux get sources all](/cmd/flux_get_sources_all/) - Get all source statuses * [flux get sources all](../flux_get_sources_all/) - Get all source statuses
* [flux get sources bucket](/cmd/flux_get_sources_bucket/) - Get Bucket source statuses * [flux get sources bucket](../flux_get_sources_bucket/) - Get Bucket source statuses
* [flux get sources chart](/cmd/flux_get_sources_chart/) - Get HelmChart statuses * [flux get sources chart](../flux_get_sources_chart/) - Get HelmChart statuses
* [flux get sources git](/cmd/flux_get_sources_git/) - Get GitRepository source statuses * [flux get sources git](../flux_get_sources_git/) - Get GitRepository source statuses
* [flux get sources helm](/cmd/flux_get_sources_helm/) - Get HelmRepository source statuses * [flux get sources helm](../flux_get_sources_helm/) - Get HelmRepository source statuses

@ -42,5 +42,5 @@ flux get sources all [flags]
### SEE ALSO ### SEE ALSO
* [flux get sources](/cmd/flux_get_sources/) - Get source statuses * [flux get sources](../flux_get_sources/) - Get source statuses

@ -42,5 +42,5 @@ flux get sources bucket [flags]
### SEE ALSO ### SEE ALSO
* [flux get sources](/cmd/flux_get_sources/) - Get source statuses * [flux get sources](../flux_get_sources/) - Get source statuses

@ -42,5 +42,5 @@ flux get sources chart [flags]
### SEE ALSO ### SEE ALSO
* [flux get sources](/cmd/flux_get_sources/) - Get source statuses * [flux get sources](../flux_get_sources/) - Get source statuses

@ -42,5 +42,5 @@ flux get sources git [flags]
### SEE ALSO ### SEE ALSO
* [flux get sources](/cmd/flux_get_sources/) - Get source statuses * [flux get sources](../flux_get_sources/) - Get source statuses

@ -42,5 +42,5 @@ flux get sources helm [flags]
### SEE ALSO ### SEE ALSO
* [flux get sources](/cmd/flux_get_sources/) - Get source statuses * [flux get sources](../flux_get_sources/) - Get source statuses

@ -63,5 +63,5 @@ flux install [flags]
### SEE ALSO ### SEE ALSO
* [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines * [flux](../flux/) - Command line utility for assembling Kubernetes CD pipelines

@ -55,5 +55,5 @@ flux logs [flags]
### SEE ALSO ### SEE ALSO
* [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines * [flux](../flux/) - Command line utility for assembling Kubernetes CD pipelines

@ -27,12 +27,12 @@ The reconcile sub-commands trigger a reconciliation of sources and resources.
### SEE ALSO ### SEE ALSO
* [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines * [flux](../flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux reconcile alert](/cmd/flux_reconcile_alert/) - Reconcile an Alert * [flux reconcile alert](../flux_reconcile_alert/) - Reconcile an Alert
* [flux reconcile alert-provider](/cmd/flux_reconcile_alert-provider/) - Reconcile a Provider * [flux reconcile alert-provider](../flux_reconcile_alert-provider/) - Reconcile a Provider
* [flux reconcile helmrelease](/cmd/flux_reconcile_helmrelease/) - Reconcile a HelmRelease resource * [flux reconcile helmrelease](../flux_reconcile_helmrelease/) - Reconcile a HelmRelease resource
* [flux reconcile image](/cmd/flux_reconcile_image/) - Reconcile image automation objects * [flux reconcile image](../flux_reconcile_image/) - Reconcile image automation objects
* [flux reconcile kustomization](/cmd/flux_reconcile_kustomization/) - Reconcile a Kustomization resource * [flux reconcile kustomization](../flux_reconcile_kustomization/) - Reconcile a Kustomization resource
* [flux reconcile receiver](/cmd/flux_reconcile_receiver/) - Reconcile a Receiver * [flux reconcile receiver](../flux_reconcile_receiver/) - Reconcile a Receiver
* [flux reconcile source](/cmd/flux_reconcile_source/) - Reconcile sources * [flux reconcile source](../flux_reconcile_source/) - Reconcile sources

@ -38,5 +38,5 @@ flux reconcile alert-provider [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources * [flux reconcile](../flux_reconcile/) - Reconcile sources and resources

@ -38,5 +38,5 @@ flux reconcile alert [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources * [flux reconcile](../flux_reconcile/) - Reconcile sources and resources

@ -43,5 +43,5 @@ flux reconcile helmrelease [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources * [flux reconcile](../flux_reconcile/) - Reconcile sources and resources

@ -27,7 +27,7 @@ The reconcile sub-commands trigger a reconciliation of image automation objects.
### SEE ALSO ### SEE ALSO
* [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources * [flux reconcile](../flux_reconcile/) - Reconcile sources and resources
* [flux reconcile image repository](/cmd/flux_reconcile_image_repository/) - Reconcile an ImageRepository * [flux reconcile image repository](../flux_reconcile_image_repository/) - Reconcile an ImageRepository
* [flux reconcile image update](/cmd/flux_reconcile_image_update/) - Reconcile an ImageUpdateAutomation * [flux reconcile image update](../flux_reconcile_image_update/) - Reconcile an ImageUpdateAutomation

@ -38,5 +38,5 @@ flux reconcile image repository [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile image](/cmd/flux_reconcile_image/) - Reconcile image automation objects * [flux reconcile image](../flux_reconcile_image/) - Reconcile image automation objects

@ -38,5 +38,5 @@ flux reconcile image update [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile image](/cmd/flux_reconcile_image/) - Reconcile image automation objects * [flux reconcile image](../flux_reconcile_image/) - Reconcile image automation objects

@ -43,5 +43,5 @@ flux reconcile kustomization [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources * [flux reconcile](../flux_reconcile/) - Reconcile sources and resources

@ -38,5 +38,5 @@ flux reconcile receiver [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources * [flux reconcile](../flux_reconcile/) - Reconcile sources and resources

@ -27,8 +27,8 @@ The reconcile source sub-commands trigger a reconciliation of sources.
### SEE ALSO ### SEE ALSO
* [flux reconcile](/cmd/flux_reconcile/) - Reconcile sources and resources * [flux reconcile](../flux_reconcile/) - Reconcile sources and resources
* [flux reconcile source bucket](/cmd/flux_reconcile_source_bucket/) - Reconcile a Bucket source * [flux reconcile source bucket](../flux_reconcile_source_bucket/) - Reconcile a Bucket source
* [flux reconcile source git](/cmd/flux_reconcile_source_git/) - Reconcile a GitRepository source * [flux reconcile source git](../flux_reconcile_source_git/) - Reconcile a GitRepository source
* [flux reconcile source helm](/cmd/flux_reconcile_source_helm/) - Reconcile a HelmRepository source * [flux reconcile source helm](../flux_reconcile_source_helm/) - Reconcile a HelmRepository source

@ -38,5 +38,5 @@ flux reconcile source bucket [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile source](/cmd/flux_reconcile_source/) - Reconcile sources * [flux reconcile source](../flux_reconcile_source/) - Reconcile sources

@ -38,5 +38,5 @@ flux reconcile source git [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile source](/cmd/flux_reconcile_source/) - Reconcile sources * [flux reconcile source](../flux_reconcile_source/) - Reconcile sources

@ -38,5 +38,5 @@ flux reconcile source helm [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux reconcile source](/cmd/flux_reconcile_source/) - Reconcile sources * [flux reconcile source](../flux_reconcile_source/) - Reconcile sources

@ -27,11 +27,11 @@ The resume sub-commands resume a suspended resource.
### SEE ALSO ### SEE ALSO
* [flux](/cmd/flux/) - Command line utility for assembling Kubernetes CD pipelines * [flux](../flux/) - Command line utility for assembling Kubernetes CD pipelines
* [flux resume alert](/cmd/flux_resume_alert/) - Resume a suspended Alert * [flux resume alert](../flux_resume_alert/) - Resume a suspended Alert
* [flux resume helmrelease](/cmd/flux_resume_helmrelease/) - Resume a suspended HelmRelease * [flux resume helmrelease](../flux_resume_helmrelease/) - Resume a suspended HelmRelease
* [flux resume image](/cmd/flux_resume_image/) - Resume image automation objects * [flux resume image](../flux_resume_image/) - Resume image automation objects
* [flux resume kustomization](/cmd/flux_resume_kustomization/) - Resume a suspended Kustomization * [flux resume kustomization](../flux_resume_kustomization/) - Resume a suspended Kustomization
* [flux resume receiver](/cmd/flux_resume_receiver/) - Resume a suspended Receiver * [flux resume receiver](../flux_resume_receiver/) - Resume a suspended Receiver
* [flux resume source](/cmd/flux_resume_source/) - Resume sources * [flux resume source](../flux_resume_source/) - Resume sources

@ -39,5 +39,5 @@ flux resume alert [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux resume](/cmd/flux_resume/) - Resume suspended resources * [flux resume](../flux_resume/) - Resume suspended resources

@ -39,5 +39,5 @@ flux resume helmrelease [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux resume](/cmd/flux_resume/) - Resume suspended resources * [flux resume](../flux_resume/) - Resume suspended resources

@ -27,7 +27,7 @@ The resume image sub-commands resume suspended image automation objects.
### SEE ALSO ### SEE ALSO
* [flux resume](/cmd/flux_resume/) - Resume suspended resources * [flux resume](../flux_resume/) - Resume suspended resources
* [flux resume image repository](/cmd/flux_resume_image_repository/) - Resume a suspended ImageRepository * [flux resume image repository](../flux_resume_image_repository/) - Resume a suspended ImageRepository
* [flux resume image update](/cmd/flux_resume_image_update/) - Resume a suspended ImageUpdateAutomation * [flux resume image update](../flux_resume_image_update/) - Resume a suspended ImageUpdateAutomation

@ -38,5 +38,5 @@ flux resume image repository [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux resume image](/cmd/flux_resume_image/) - Resume image automation objects * [flux resume image](../flux_resume_image/) - Resume image automation objects

@ -38,5 +38,5 @@ flux resume image update [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux resume image](/cmd/flux_resume_image/) - Resume image automation objects * [flux resume image](../flux_resume_image/) - Resume image automation objects

@ -39,5 +39,5 @@ flux resume kustomization [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux resume](/cmd/flux_resume/) - Resume suspended resources * [flux resume](../flux_resume/) - Resume suspended resources

@ -39,5 +39,5 @@ flux resume receiver [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux resume](/cmd/flux_resume/) - Resume suspended resources * [flux resume](../flux_resume/) - Resume suspended resources

@ -27,9 +27,9 @@ The resume sub-commands resume a suspended source.
### SEE ALSO ### SEE ALSO
* [flux resume](/cmd/flux_resume/) - Resume suspended resources * [flux resume](../flux_resume/) - Resume suspended resources
* [flux resume source bucket](/cmd/flux_resume_source_bucket/) - Resume a suspended Bucket * [flux resume source bucket](../flux_resume_source_bucket/) - Resume a suspended Bucket
* [flux resume source chart](/cmd/flux_resume_source_chart/) - Resume a suspended HelmChart * [flux resume source chart](../flux_resume_source_chart/) - Resume a suspended HelmChart
* [flux resume source git](/cmd/flux_resume_source_git/) - Resume a suspended GitRepository * [flux resume source git](../flux_resume_source_git/) - Resume a suspended GitRepository
* [flux resume source helm](/cmd/flux_resume_source_helm/) - Resume a suspended HelmRepository * [flux resume source helm](../flux_resume_source_helm/) - Resume a suspended HelmRepository

@ -38,5 +38,5 @@ flux resume source bucket [name] [flags]
### SEE ALSO ### SEE ALSO
* [flux resume source](/cmd/flux_resume_source/) - Resume sources * [flux resume source](../flux_resume_source/) - Resume sources

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

Loading…
Cancel
Save