Move api/internal/git
to api/git
.
#4231
Labels
kind/feature
Categorizes issue or PR as related to a new feature.
triage/needs-information
Indicates an issue needs more information in order to work on it.
Is your feature request related to a problem? Please describe.
I am implementing some code to prefetch all used images referenced from
kustomize.yaml
before processingkubectl apply -k
- it is needed to improve tests stability. To work with remote bases I am currently using https://github.com/kubernetes-sigs/kustomize/blob/master/api/internal/git/repospec.go for extracting git repo spec from URL and further processing it, and it is very helpful.Unfortunately it is located in
api/internal/git
package, so it cannot be imported and can only be copy-pasted and so it probably will need to be manually updated in some future.Describe the solution you'd like
Can it be moved from
api/internal/git
package to justapi/git
?The text was updated successfully, but these errors were encountered: