nutritious-flower-51098
09/08/2020, 1:48 PMconst argocd = new kubernetes.helm.v3.Chart("argo", {
repo: "argo",
chart: "argo-cd",
fetchOpts: {
repo: "<https://argoproj.github.io/argo-helm>",
},
namespace: argoNamespace.metadata.name,
}, {
provider: kubernetesProvider,
dependsOn: [argoNamespace]
})
Error: invocation of kubernetes:helm:template returned an error: failed to generate YAML for specified Helm chart: failed to pull chart: chart "argo/argo-cd" not found in <https://argoproj.github.io/argo-helm> repository
helm repo list | grep argo
argo <https://argoproj.github.io/argo-helm>
helm install argo/argo-cd -n argocd --generate-name
gentle-diamond-70147
09/08/2020, 6:39 PM