Skip to content

Commit

Permalink
Fix: Handle http helm repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
Jumanjii committed Oct 7, 2024
1 parent dcfd1c3 commit ee12758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/app/sources/helm/versions/repo_backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func getRepoBackendType(repoUrl string) (RepoBackendType, error) {
switch u.Scheme {
case "s3":
return S3HelmRepo, nil
case "https", "oci":
case "https", "http", "oci":
// determine if GitRepo or HelmRepo
return HelmRepo, nil
case "file":
Expand Down

0 comments on commit ee12758

Please sign in to comment.