diff --git a/charts/applicationset/Chart.yaml b/charts/applicationset/Chart.yaml index cffe39e..12658e9 100644 --- a/charts/applicationset/Chart.yaml +++ b/charts/applicationset/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: argocd-applicationsets-services description: A HELM Chart for ArgoCD ApplicationSets for Kubernetes type: application -version: &version "0.6.7" +version: &version "0.6.8" appVersion: *version kubeVersion: ">= 1.23" home: https://github.com/saidsef/argocd-applicationsets-services @@ -22,7 +22,7 @@ sources: annotations: artifacthub.io/license: "Apache-2.0" artifacthub.io/changes: | - - "Added support for Kustomize variable branch slug and head short sha" + - "Updated default target revision for chart deployments" artifacthub.io/links: | - name: README url: https://raw.githubusercontent.com/saidsef/argocd-applicationsets-services/main/README.md diff --git a/charts/applicationset/README.md b/charts/applicationset/README.md index 390ae5c..bc8bab7 100644 --- a/charts/applicationset/README.md +++ b/charts/applicationset/README.md @@ -1,6 +1,6 @@ # argocd-applicationsets-services -![Version: 0.6.7](https://img.shields.io/badge/Version-0.6.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.7](https://img.shields.io/badge/AppVersion-0.6.7-informational?style=flat-square) +![Version: 0.6.8](https://img.shields.io/badge/Version-0.6.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.8](https://img.shields.io/badge/AppVersion-0.6.8-informational?style=flat-square) A HELM Chart for ArgoCD ApplicationSets for Kubernetes diff --git a/charts/applicationset/templates/github-pr.yml b/charts/applicationset/templates/github-pr.yml index ce3649c..3562305 100644 --- a/charts/applicationset/templates/github-pr.yml +++ b/charts/applicationset/templates/github-pr.yml @@ -65,7 +65,7 @@ spec: parameters: {{ toJson $repo.parameters | indent 0 }} chart: {{ or $repo.chart $repo.name }} - targetRevision: {{ or $repo.targetRevision "0.*" }} + targetRevision: {{ or $repo.targetRevision ">= 0" | quote }} {{- else if and $repo $repo.values }} helm: values: | diff --git a/charts/applicationset/templates/gitlab-pr.yml b/charts/applicationset/templates/gitlab-pr.yml index 0d7ed38..2b40534 100644 --- a/charts/applicationset/templates/gitlab-pr.yml +++ b/charts/applicationset/templates/gitlab-pr.yml @@ -65,7 +65,7 @@ spec: parameters: {{ toJson $repo.parameters | indent 0 }} chart: {{ or $repo.chart $repo.name }} - targetRevision: {{ or $repo.targetRevision "0.*" }} + targetRevision: {{ or $repo.targetRevision ">= 0" | quote }} {{- else if and $repo $repo.values }} helm: values: |