Skip to content

Commit

Permalink
fix: resolve issue where skaffold filter command did not properly con…
Browse files Browse the repository at this point in the history
…figure the filter allow & deny lists (#8085)
  • Loading branch information
aaron-prindle authored Nov 14, 2022
1 parent 1356b3a commit d25a9bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/skaffold/app/cmd/filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func getTransformList(configs []util.VersionedConfig) (map[apim.GroupKind]latest
}
for _, rf := range manifest.TransformDenylist {
groupKind := apim.ParseGroupKind(rf.GroupKind)
allow[groupKind] = rUtil.ConvertJSONPathIndex(rf)
deny[groupKind] = rUtil.ConvertJSONPathIndex(rf)
}

for _, cfg := range configs {
Expand Down

0 comments on commit d25a9bb

Please sign in to comment.