Fix bootstrap path check
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
@@ -159,6 +159,10 @@ func kustomizationPathDiffers(ctx context.Context, kube client.Client, objKey cl
|
|||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
normalizePath := func(p string) string {
|
normalizePath := func(p string) string {
|
||||||
|
// remove the trailing '/' if the path is not './'
|
||||||
|
if len(p) > 2 {
|
||||||
|
p = strings.TrimSuffix(p, "/")
|
||||||
|
}
|
||||||
return fmt.Sprintf("./%s", strings.TrimPrefix(p, "./"))
|
return fmt.Sprintf("./%s", strings.TrimPrefix(p, "./"))
|
||||||
}
|
}
|
||||||
if normalizePath(path) == normalizePath(k.Spec.Path) {
|
if normalizePath(path) == normalizePath(k.Spec.Path) {
|
||||||
|
|||||||
Reference in New Issue
Block a user