Add func to append to ignorelist.

This allows those using Kaniko as a library to add ignored dirs and
files without needs to modify /proc/self/mountinfo or doing other
strange things with mount -t tmpfs
This commit is contained in:
Joe Kutner 2020-08-25 16:49:48 -05:00
parent 146ec6a9cd
commit 0a0b4f1583
No known key found for this signature in database
GPG Key ID: 737562890DC0512A
2 changed files with 15 additions and 0 deletions

View File

@ -90,6 +90,10 @@ func IgnoreList() []IgnoreListEntry {
return ignorelist
}
func AddToIgnoreList(entry IgnoreListEntry) {
ignorelist = append(ignorelist, entry)
}
func IncludeWhiteout() FSOpt {
return func(opts *FSConfig) {
opts.includeWhiteout = true

View File

@ -78,6 +78,17 @@ func Test_DetectFilesystemSkiplist(t *testing.T) {
testutil.CheckErrorAndDeepEqual(t, false, err, expectedSkiplist, actualSkiplist)
}
func Test_AddToIgnoreList(t *testing.T) {
AddToIgnoreList(IgnoreListEntry{
Path: "/tmp",
PrefixMatchOnly: false,
})
if !CheckIgnoreList("/tmp") {
t.Errorf("CheckIgnoreList() = %v, want %v", false, true)
}
}
var tests = []struct {
files map[string]string
directory string