mirror of
https://github.com/fluxcd/flux2.git
synced 2026-05-06 01:54:43 +00:00
Add sourcesecret and kustomization manifestgen
This includes a change to the `sync` generator to make the deploy secret name configurable. Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
parent
ff2833c4d1
commit
8a5bba80bf
19 changed files with 690 additions and 495 deletions
|
|
@ -26,6 +26,7 @@ type Options struct {
|
|||
Name string
|
||||
Namespace string
|
||||
Branch string
|
||||
Secret string
|
||||
TargetPath string
|
||||
ManifestFile string
|
||||
GitImplementation string
|
||||
|
|
@ -38,6 +39,7 @@ func MakeDefaultOptions() Options {
|
|||
Name: "flux-system",
|
||||
Namespace: "flux-system",
|
||||
Branch: "main",
|
||||
Secret: "flux-system",
|
||||
ManifestFile: "gotk-sync.yaml",
|
||||
TargetPath: "",
|
||||
GitImplementation: "",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue