diff --git a/README.md b/README.md index 1be07ab..fb2cdb1 100644 --- a/README.md +++ b/README.md @@ -17,3 +17,4 @@ to explore ArgoCD and GitOps! | [plugins](plugins/) | Applications which demonstrate config management plugins usage | | [blue-green](blue-green/) | Demonstrates how to implement blue-green deployment using [Argo Rollouts](https://github.com/argoproj/argo-rollouts) | [applications](applications/) | An application composed of other applications | +| [applications-helm](applications-helm/) | Demonstrates application composed of other applications using Helm chart and value files | diff --git a/application-of-applications-helm/Chart.yaml b/applications-helm/Chart.yaml similarity index 100% rename from application-of-applications-helm/Chart.yaml rename to applications-helm/Chart.yaml diff --git a/application-of-applications-helm/templates/_helpers.tpl b/applications-helm/templates/_helpers.tpl similarity index 100% rename from application-of-applications-helm/templates/_helpers.tpl rename to applications-helm/templates/_helpers.tpl diff --git a/application-of-applications-helm/templates/applications.yaml b/applications-helm/templates/applications.yaml similarity index 100% rename from application-of-applications-helm/templates/applications.yaml rename to applications-helm/templates/applications.yaml diff --git a/application-of-applications-helm/templates/argocd-cm.yaml b/applications-helm/templates/argocd-cm.yaml similarity index 100% rename from application-of-applications-helm/templates/argocd-cm.yaml rename to applications-helm/templates/argocd-cm.yaml diff --git a/application-of-applications-helm/templates/argocd-rbac-cm.yaml b/applications-helm/templates/argocd-rbac-cm.yaml similarity index 100% rename from application-of-applications-helm/templates/argocd-rbac-cm.yaml rename to applications-helm/templates/argocd-rbac-cm.yaml diff --git a/application-of-applications-helm/templates/project.yaml b/applications-helm/templates/project.yaml similarity index 100% rename from application-of-applications-helm/templates/project.yaml rename to applications-helm/templates/project.yaml diff --git a/application-of-applications-helm/values-global.yaml b/applications-helm/values-global.yaml similarity index 100% rename from application-of-applications-helm/values-global.yaml rename to applications-helm/values-global.yaml diff --git a/application-of-applications-helm/values-production.yaml b/applications-helm/values-production.yaml similarity index 100% rename from application-of-applications-helm/values-production.yaml rename to applications-helm/values-production.yaml diff --git a/application-of-applications-helm/values-staging.yaml b/applications-helm/values-staging.yaml similarity index 100% rename from application-of-applications-helm/values-staging.yaml rename to applications-helm/values-staging.yaml