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:
parent
4765d1ccc9
commit
c32526f109
3 changed files with 5 additions and 2 deletions
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)://")
|
Loading…
Add table
Reference in a new issue