You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There does not seem to be an option to pull directly from a Helm repo. It's only git repo with Helm chart.
I need something like chart = "elasticsearch" instead of path and it does not seem possible with the current templates. The below example will not work in ArgoCD with the error rpc error: code = Unknown desc = repository not found:
Here is a part of the default example of an ArgoCD application where you use path for git repos and chart for Helm repos:
source:
repoURL: https://github.com/argoproj/argocd-example-apps.git # Can point to either a Helm chart repo or a git repo.
targetRevision: HEAD # For Helm, this refers to the chart version.
path: guestbook # This has no meaning for Helm charts pulled directly from a Helm repo instead of git.
# helm specific config
chart: chart-name # Set this when pulling directly from a Helm repo. DO NOT set for git-hosted Helm charts.
The text was updated successfully, but these errors were encountered:
closing this issue for now - please see aws-ia/terraform-aws-eks-blueprints-addons#114 where we are collecting feedback on how to improve the integration between Terraform and GitOps providers
I'm looking through these parameters:
https://github.com/aws-ia/terraform-aws-eks-blueprints/blob/main/modules/kubernetes-addons/argocd/main.tf#L28
There does not seem to be an option to pull directly from a Helm repo. It's only git repo with Helm chart.
I need something like
chart = "elasticsearch"
instead ofpath
and it does not seem possible with the current templates. The below example will not work in ArgoCD with the errorrpc error: code = Unknown desc = repository not found
:Here is a part of the default example of an ArgoCD application where you use
path
for git repos andchart
for Helm repos:The text was updated successfully, but these errors were encountered: