diff --git a/internal/cmd/local/local/locate.go b/internal/cmd/local/local/locate.go index 3330d9e..8550db9 100644 --- a/internal/cmd/local/local/locate.go +++ b/internal/cmd/local/local/locate.go @@ -42,12 +42,12 @@ func getLatestAirbyteChartUrlFromRepoIndex(repoName, repoUrl string) (string, er idxPath, err := chartRepo.DownloadIndexFile() if err != nil { - return "", fmt.Errorf("unable to access repo index: %w", err) + return "", fmt.Errorf("unable to download index file: %w", err) } idx, err := repo.LoadIndexFile(idxPath) if err != nil { - return "", fmt.Errorf("unable to access repo index: %w", err) + return "", fmt.Errorf("unable to load index file (%s): %w", idxPath, err) } airbyteEntry, ok := idx.Entries["airbyte"] diff --git a/internal/cmd/local/local/specs.go b/internal/cmd/local/local/specs.go index 9772628..c30fb42 100644 --- a/internal/cmd/local/local/specs.go +++ b/internal/cmd/local/local/specs.go @@ -39,7 +39,7 @@ func ingressRule(host string) networkingv1.IngressRule { var pathType = networkingv1.PathType("Prefix") return networkingv1.IngressRule{ - Host: host, + // Host: host, IngressRuleValue: networkingv1.IngressRuleValue{ HTTP: &networkingv1.HTTPIngressRuleValue{ Paths: []networkingv1.HTTPIngressPath{