Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Make manifest generation opt-in
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfonso Acosta authored and squaremo committed May 30, 2019
1 parent efb5fe8 commit b55d0ff
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cmd/fluxd/main.go
Expand Up @@ -160,9 +160,8 @@ func main() {
sshKeyType = optionalVar(fs, &ssh.KeyTypeValue{}, "ssh-keygen-type", "-t argument to ssh-keygen (default unspecified)")
sshKeygenDir = fs.String("ssh-keygen-dir", "", "directory, ideally on a tmpfs volume, in which to generate new SSH keys when necessary")

// manifest regeration
// TODO(fons): make false by default before merging
manifestGeneration = fs.Bool("manifest-generation", true, "experimental; search for .flux.yaml files for manifest generation")
// manifest generation
manifestGeneration = fs.Bool("manifest-generation", false, "experimental; search for .flux.yaml files to generate manifests")

upstreamURL = fs.String("connect", "", "connect to an upstream service e.g., Weave Cloud, at this base address")
token = fs.String("token", "", "authentication token for upstream service")
Expand Down

0 comments on commit b55d0ff

Please sign in to comment.