-
Notifications
You must be signed in to change notification settings - Fork 1.1k
fluxctl install does not know about --manifest-generation flag #2557
Comments
This is not a bug, $ fluxctl install --help
Print and tweak Kubernetes manifests needed to install Flux in a Cluster
Usage:
fluxctl install [flags]
Examples:
# Install Flux and make it use Git repository [email protected]:<your username>/flux-get-started
fluxctl install --git-url '[email protected]:<your username>/flux-get-started' | kubectl -f -
Flags:
--git-branch string Git branch to be used by Flux (default "master")
--git-email string Email to use as git committer
--git-label string Git label to keep track of Flux's sync progress; overrides both --git-sync-tag and --git-notes-ref (default "flux")
--git-path strings Relative paths within the Git repo for Flux to locate Kubernetes manifests
--git-url string URL of the Git repository to be used by Flux, e.g. [email protected]:<your username>/flux-get-started
--git-user string Username to use as git committer (default "Flux")
-h, --help help for install
--namespace string Cluster namespace where to install flux (default "default")
-o, --output-dir string a directory in which to write individual manifests, rather than printing to stdout If you need to set any additional arguments on the daemon container, you need to modify the YAML output the command generates before applying it the cluster. |
Fair enough. It would be good to indicate it somewhere in the documentation, though. The getting started tutorial https://docs.fluxcd.io/en/stable/tutorials/get-started.html gives the impression that The manifest factorization section https://docs.fluxcd.io/en/stable/references/fluxyaml-config-files.html just mentions that you need to give fluxd the |
#2558 will both make it easier to provide additional arguments to |
Great, that seems to do exactly what I'd hope. I'll close this issue. |
Describe the bug
Documentation at https://docs.fluxcd.io/en/stable/references/fluxyaml-config-files.html mentions that manifest generation needs to be explicitly enabled. However,
fluxctl install
does not recognize it:It is not entirely clear to me whether the flag is really needed or not.
The text was updated successfully, but these errors were encountered: