Skip to content

Commit

Permalink
go validation checks
Browse files Browse the repository at this point in the history
  • Loading branch information
sachinchauhan23 committed Oct 23, 2024
1 parent f50aea0 commit b91d329
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions argocd.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,10 @@ func listArgoCDDeployments() error {
}

func validateKyvernoPolicies(apps []ArgoCDApp) error {
policyUrl := "https://github.com/coopnorge/kubernetes-base-manifests/"
policyURL := "https://github.com/coopnorge/kubernetes-base-manifests/"

// Download all policy files
err := downloadPolicyFiles(policyUrl)
err := downloadPolicyFiles(policyURL)
if err != nil {
return fmt.Errorf("failed to download policy files: %w", err)
}
Expand Down

0 comments on commit b91d329

Please sign in to comment.