fix(argo-cd): Fix indent on Argo CD applications and projects (#1283)
* fix(argo-cd): Fix indent on Argo CD application creation Signed-off-by: Alex Sears <me@alexsears.com> * Version bump Signed-off-by: Alex Sears <me@alexsears.com> * Add ArtifactHub change annotation Signed-off-by: Alex Sears <me@alexsears.com> * Helm docs run Signed-off-by: Alex Sears <me@alexsears.com> * Fix indent also on 'server.additionalProjects' Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Reword changelog Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Restore README (use helm-docs v1.9.1 Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
20924aced3
commit
ec31320b2e
3 changed files with 21 additions and 22 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v2.3.3
|
appVersion: v2.3.3
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 4.6.0
|
version: 4.6.1
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -21,6 +21,5 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Added]: Metrics service name can now be changed"
|
- "[Fixed]: Fix indent on 'additionalApplications'"
|
||||||
- "[Added]: ServiceMonitor now support tlsConfig"
|
- "[Fixed]: Fix indent on 'additionalProjects'"
|
||||||
- "[Changed]: All metrics Service ports were renamed from 'metrics' to 'http-metrics' (istio compatibility)"
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ metadata:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .additionalLabels }}
|
{{- with .additionalLabels }}
|
||||||
labels:
|
labels:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
name: {{ .name }}
|
name: {{ .name }}
|
||||||
{{- with .namespace }}
|
{{- with .namespace }}
|
||||||
|
@ -19,24 +19,24 @@ metadata:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .finalizers }}
|
{{- with .finalizers }}
|
||||||
finalizers:
|
finalizers:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
project: {{ tpl .project $ }}
|
project: {{ tpl .project $ }}
|
||||||
source:
|
source:
|
||||||
{{- toYaml .source | nindent 8 }}
|
{{- toYaml .source | nindent 4 }}
|
||||||
destination:
|
destination:
|
||||||
{{- toYaml .destination | nindent 8 }}
|
{{- toYaml .destination | nindent 4 }}
|
||||||
{{- with .syncPolicy }}
|
{{- with .syncPolicy }}
|
||||||
syncPolicy:
|
syncPolicy:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .ignoreDifferences }}
|
{{- with .ignoreDifferences }}
|
||||||
ignoreDifferences:
|
ignoreDifferences:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .info }}
|
{{- with .info }}
|
||||||
info:
|
info:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -11,7 +11,7 @@ metadata:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .additionalLabels }}
|
{{- with .additionalLabels }}
|
||||||
labels:
|
labels:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
name: {{ .name }}
|
name: {{ .name }}
|
||||||
{{- with .namespace }}
|
{{- with .namespace }}
|
||||||
|
@ -19,40 +19,40 @@ metadata:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .finalizers }}
|
{{- with .finalizers }}
|
||||||
finalizers:
|
finalizers:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
description: {{ .description }}
|
description: {{ .description }}
|
||||||
sourceRepos:
|
sourceRepos:
|
||||||
{{- toYaml .sourceRepos | nindent 8 }}
|
{{- toYaml .sourceRepos | nindent 4 }}
|
||||||
destinations:
|
destinations:
|
||||||
{{- toYaml .destinations | nindent 8 }}
|
{{- toYaml .destinations | nindent 4 }}
|
||||||
{{- with .clusterResourceWhitelist }}
|
{{- with .clusterResourceWhitelist }}
|
||||||
clusterResourceWhitelist:
|
clusterResourceWhitelist:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .namespaceResourceBlacklist }}
|
{{- with .namespaceResourceBlacklist }}
|
||||||
namespaceResourceBlacklist:
|
namespaceResourceBlacklist:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .namespaceResourceWhitelist }}
|
{{- with .namespaceResourceWhitelist }}
|
||||||
namespaceResourceWhitelist:
|
namespaceResourceWhitelist:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .orphanedResources }}
|
{{- with .orphanedResources }}
|
||||||
orphanedResources:
|
orphanedResources:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .roles }}
|
{{- with .roles }}
|
||||||
roles:
|
roles:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .syncWindows }}
|
{{- with .syncWindows }}
|
||||||
syncWindows:
|
syncWindows:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .signatureKeys }}
|
{{- with .signatureKeys }}
|
||||||
signatureKeys:
|
signatureKeys:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
Loading…
Reference in a new issue