Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a98c6f1
fix(update): preserve Kptfile formatting during upgrades
Jaisheesh-2006 Mar 6, 2026
a11d4ec
fix(kptfile): validate and sanitize Kptfile updates
Jaisheesh-2006 Mar 12, 2026
4f23c69
fix(update) : implement copilot suggestions
Jaisheesh-2006 Apr 8, 2026
e4d4596
fix : explicitly treat maps and slices
Jaisheesh-2006 Apr 8, 2026
0698950
fix: harden kptfile writes, stabilize tests, and relax flaky live-app…
Jaisheesh-2006 Apr 8, 2026
438eb16
fix(e2e): quote reconcile summary optional output in crd-and-cr config
Jaisheesh-2006 Apr 8, 2026
60e265d
fix(kptfileutil): harden write/update paths and recover from invalid …
Jaisheesh-2006 Apr 8, 2026
62d3f41
test: centralize normalization helpers and clean up kptfile test asse…
Jaisheesh-2006 Apr 10, 2026
d5a1545
fix: preserve kptfile handling semantics and tighten related test hyg…
Jaisheesh-2006 Apr 10, 2026
6369b09
fix(kptfileutil): extend format preservation to WriteKptfileToFS and …
Jaisheesh-2006 Apr 15, 2026
81c062e
fix :
Jaisheesh-2006 Apr 15, 2026
1e51565
fix(test): normalize e2e diffs and align Kptfile comment-preservation…
Jaisheesh-2006 Apr 17, 2026
c3d287c
test(e2e): stabilize fn-render golden diffs for Kptfile status ordering
Jaisheesh-2006 Apr 19, 2026
bd59e1f
test(runner): make Kptfile diff normalization robust for fn-render sn…
Jaisheesh-2006 Apr 19, 2026
8b791e8
test(runner): harden Kptfile diff normalization for podman fn-render …
Jaisheesh-2006 Apr 19, 2026
0cdb0be
test(runner): stabilize Kptfile diff normalization for e2e comparisons
Jaisheesh-2006 Apr 22, 2026
27d7ada
test: fix linting failures in test runner utility
Jaisheesh-2006 Apr 22, 2026
800068b
test: sync fn-render expected diffs with kptfileko Kptfile output format
Jaisheesh-2006 Apr 22, 2026
554461f
test(e2e): sync fn-render goldens and keep runner diff normalization …
Jaisheesh-2006 Apr 23, 2026
16a7a35
test(runner): strip indent drift in non-Kptfile diff hunks
Jaisheesh-2006 Apr 23, 2026
e85afda
fix(kptfileutil): satisfy ST1005 + gofmt on Kptfile decode guard
Jaisheesh-2006 Apr 23, 2026
52280fd
fix(e2e): restore lost golden content + ST1005 fixes for Kptfile decode
Jaisheesh-2006 Apr 23, 2026
c189eb4
fix(test): make Test_GitParseArgs hermetic
Jaisheesh-2006 Apr 23, 2026
4286ebf
fix(e2e/test): stderr stripRE + race-free resolver injection
Jaisheesh-2006 Apr 24, 2026
027731d
fix: address copilot review findings on decode/normalizer paths
Jaisheesh-2006 Apr 24, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
* text=auto eol=lf

*.go text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
*.sh text eol=lf
*.patch text eol=lf
*.txt text eol=lf
Makefile text eol=lf
4 changes: 2 additions & 2 deletions commands/live/migrate/migratecmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,8 @@ func (mr *Runner) migrateKptfileToRG(args []string) error {
switch {
case rgFileErr == nil:
return errors.E(op, errors.IO, types.UniquePath(dir), "the resourcegroup file already exists and inventory information cannot be migrated")
case err != nil && !goerrors.Is(err, os.ErrNotExist):
return errors.E(op, errors.IO, types.UniquePath(dir), err)
case rgFileErr != nil && !goerrors.Is(rgFileErr, os.ErrNotExist):
return errors.E(op, errors.IO, types.UniquePath(dir), rgFileErr)
}

err = (&initialization.ConfigureInventoryInfo{
Expand Down
Loading
Loading