Skip to content
Open
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
27c1163
fix(update): preserve Kptfile formatting during upgrades
Jaisheesh-2006 Mar 6, 2026
5ddeb30
fix(kptfile): validate and sanitize Kptfile updates
Jaisheesh-2006 Mar 12, 2026
b09c388
fix(update) : implement copilot suggestions
Jaisheesh-2006 Apr 8, 2026
7844fa7
fix : explicitly treat maps and slices
Jaisheesh-2006 Apr 8, 2026
b3ac9f9
fix: harden kptfile writes, stabilize tests, and relax flaky live-app…
Jaisheesh-2006 Apr 8, 2026
5850c8e
fix(e2e): quote reconcile summary optional output in crd-and-cr config
Jaisheesh-2006 Apr 8, 2026
110714e
fix(kptfileutil): harden write/update paths and recover from invalid …
Jaisheesh-2006 Apr 8, 2026
9767334
test: centralize normalization helpers and clean up kptfile test asse…
Jaisheesh-2006 Apr 10, 2026
32bed42
fix: preserve kptfile handling semantics and tighten related test hyg…
Jaisheesh-2006 Apr 10, 2026
55d1f06
fix(kptfileutil): extend format preservation to WriteKptfileToFS and …
Jaisheesh-2006 Apr 15, 2026
bab95f7
fix :
Jaisheesh-2006 Apr 15, 2026
ea54beb
fix(test): normalize e2e diffs and align Kptfile comment-preservation…
Jaisheesh-2006 Apr 17, 2026
0327186
test(e2e): stabilize fn-render golden diffs for Kptfile status ordering
Jaisheesh-2006 Apr 19, 2026
3c856c7
test(runner): make Kptfile diff normalization robust for fn-render sn…
Jaisheesh-2006 Apr 19, 2026
435818a
test(runner): harden Kptfile diff normalization for podman fn-render …
Jaisheesh-2006 Apr 19, 2026
05120f1
test(runner): stabilize Kptfile diff normalization for e2e comparisons
Jaisheesh-2006 Apr 22, 2026
a49cc92
test: fix linting failures in test runner utility
Jaisheesh-2006 Apr 22, 2026
8c30a66
test: sync fn-render expected diffs with kptfileko Kptfile output format
Jaisheesh-2006 Apr 22, 2026
a4297f2
test(e2e): sync fn-render goldens and keep runner diff normalization …
Jaisheesh-2006 Apr 23, 2026
c70cb07
test(runner): strip indent drift in non-Kptfile diff hunks
Jaisheesh-2006 Apr 23, 2026
b0fc0ad
fix(kptfileutil): satisfy ST1005 + gofmt on Kptfile decode guard
Jaisheesh-2006 Apr 23, 2026
8210460
fix(e2e): restore lost golden content + ST1005 fixes for Kptfile decode
Jaisheesh-2006 Apr 23, 2026
a1d209b
fix(test): make Test_GitParseArgs hermetic
Jaisheesh-2006 Apr 23, 2026
13934f3
fix(e2e/test): stderr stripRE + race-free resolver injection
Jaisheesh-2006 Apr 24, 2026
6cbbf8a
fix: address copilot review findings on decode/normalizer paths
Jaisheesh-2006 Apr 24, 2026
422d9a5
Preserve indentation in diff normalization
Jaisheesh-2006 May 15, 2026
fa0d6d4
Fix: Conflict resolution during rebase
Jaisheesh-2006 May 15, 2026
4fbe9d5
Fix : Lint check
Jaisheesh-2006 May 15, 2026
e511c42
test(e2e): align fn-render expectations after diff normalization
Jaisheesh-2006 May 18, 2026
acb599a
Fix: wasm test errors
Jaisheesh-2006 May 18, 2026
4aa3640
Fix: rerun kind test
Jaisheesh-2006 May 22, 2026
5aae698
Fix:import error of utilstrings
Jaisheesh-2006 May 22, 2026
f2ef4f3
Fix: no-op function input
Jaisheesh-2006 May 22, 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