Skip to content
Open
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
91986dd
fix(update): preserve Kptfile formatting during upgrades
Jaisheesh-2006 Mar 6, 2026
05b2f78
fix(kptfile): validate and sanitize Kptfile updates
Jaisheesh-2006 Mar 12, 2026
4eb6bd8
fix(update) : implement copilot suggestions
Jaisheesh-2006 Apr 8, 2026
c23ccf1
fix : explicitly treat maps and slices
Jaisheesh-2006 Apr 8, 2026
2fddd8e
fix: harden kptfile writes, stabilize tests, and relax flaky live-app…
Jaisheesh-2006 Apr 8, 2026
9902c47
fix(e2e): quote reconcile summary optional output in crd-and-cr config
Jaisheesh-2006 Apr 8, 2026
57ea406
fix(kptfileutil): harden write/update paths and recover from invalid …
Jaisheesh-2006 Apr 8, 2026
1d8a87b
test: centralize normalization helpers and clean up kptfile test asse…
Jaisheesh-2006 Apr 10, 2026
89859d0
fix: preserve kptfile handling semantics and tighten related test hyg…
Jaisheesh-2006 Apr 10, 2026
dba5281
fix(kptfileutil): extend format preservation to WriteKptfileToFS and …
Jaisheesh-2006 Apr 15, 2026
cfddae5
fix :
Jaisheesh-2006 Apr 15, 2026
f5d778a
fix(test): normalize e2e diffs and align Kptfile comment-preservation…
Jaisheesh-2006 Apr 17, 2026
fb3e4dd
test(e2e): stabilize fn-render golden diffs for Kptfile status ordering
Jaisheesh-2006 Apr 19, 2026
99effdf
test(runner): make Kptfile diff normalization robust for fn-render sn…
Jaisheesh-2006 Apr 19, 2026
8346cdf
test(runner): harden Kptfile diff normalization for podman fn-render …
Jaisheesh-2006 Apr 19, 2026
bf04b67
test(runner): stabilize Kptfile diff normalization for e2e comparisons
Jaisheesh-2006 Apr 22, 2026
40a9152
test: fix linting failures in test runner utility
Jaisheesh-2006 Apr 22, 2026
29821a5
test: sync fn-render expected diffs with kptfileko Kptfile output format
Jaisheesh-2006 Apr 22, 2026
f44a4b9
test(e2e): sync fn-render goldens and keep runner diff normalization …
Jaisheesh-2006 Apr 23, 2026
181fafb
test(runner): strip indent drift in non-Kptfile diff hunks
Jaisheesh-2006 Apr 23, 2026
a308354
fix(kptfileutil): satisfy ST1005 + gofmt on Kptfile decode guard
Jaisheesh-2006 Apr 23, 2026
61c17bc
fix(e2e): restore lost golden content + ST1005 fixes for Kptfile decode
Jaisheesh-2006 Apr 23, 2026
f0fb6a5
fix(test): make Test_GitParseArgs hermetic
Jaisheesh-2006 Apr 23, 2026
5e352f1
fix(e2e/test): stderr stripRE + race-free resolver injection
Jaisheesh-2006 Apr 24, 2026
4560791
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