1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

fix: add http/https regex to kyverno CLI

Signed-off-by: DarthBenro008 <hkpdev008@gmail.com>
This commit is contained in:
DarthBenro008 2021-06-22 18:48:23 +05:30
parent 4765d1ccc9
commit c32526f109
No known key found for this signature in database
GPG key ID: 1DC72530D5851D52
3 changed files with 5 additions and 2 deletions

View file

@ -69,7 +69,7 @@ func GetPolicies(paths []string) (policies []*v1.ClusterPolicy, errors []error)
err error
)
isHttpPath := strings.Contains(path, "http")
isHttpPath := IsHttpRegex.MatchString(path)
// path clean and retrieving file info can be possible if it's not an HTTP URL
if !isHttpPath {

View file

@ -219,7 +219,7 @@ func getFileBytes(path string) ([]byte, error) {
err error
)
if strings.Contains(path, "http") {
if IsHttpRegex.MatchString(path) {
resp, err := http.Get(path)
if err != nil {
return nil, err

View file

@ -9,3 +9,6 @@ var RegexVariables = regexp.MustCompile(`\{\{[^{}]*\}\}`)
// AllowedVariables represents regex for {{request.}}, {{serviceAccountName}}, {{serviceAccountNamespace}} and {{@}}
var AllowedVariables = regexp.MustCompile(`\{\{\s*[request\.|serviceAccountName|serviceAccountNamespace|@][^{}]*\}\}`)
// IsHttpRegex represents regex for starts with http:// or https://
var IsHttpRegex = regexp.MustCompile("^(http|https)://")