mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-17 21:21:51 +00:00
Use path rel to working dir for kustomize build
Work around for a bug in kustomize causing it to not properly handle absolute paths on Windows. Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
parent
adc3d17eab
commit
ee1f70841c
1 changed files with 16 additions and 0 deletions
|
|
@ -105,6 +105,22 @@ func build(base, output string) error {
|
||||||
return fmt.Errorf("%s not found", kfile)
|
return fmt.Errorf("%s not found", kfile)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO(hidde): work around for a bug in kustomize causing it to
|
||||||
|
// not properly handle absolute paths on Windows.
|
||||||
|
// Convert the path to a relative path to the working directory
|
||||||
|
// as a temporary fix:
|
||||||
|
// https://github.com/kubernetes-sigs/kustomize/issues/2789
|
||||||
|
if filepath.IsAbs(base) {
|
||||||
|
wd, err := os.Getwd()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
base, err = filepath.Rel(wd, base)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
opt := krusty.MakeDefaultOptions()
|
opt := krusty.MakeDefaultOptions()
|
||||||
k := krusty.MakeKustomizer(fs, opt)
|
k := krusty.MakeKustomizer(fs, opt)
|
||||||
m, err := k.Run(base)
|
m, err := k.Run(base)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue