Skip to content

Commit

Permalink
fix(argo-cd): Adding conditionals around argocd-tls-cert-cm.yaml helm…
Browse files Browse the repository at this point in the history
… creation (#3124)

* chore(argo-events): Update dependency argoproj/argo-events to v1.9.5 (#3121)

Signed-off-by: nhershman <[email protected]>

* chore(deps): bump the dependencies group with 2 updates (#3122)

Signed-off-by: nhershman <[email protected]>

* adding conditional for argocd-tls-certs-cm.yaml to be created by Helm

Signed-off-by: nhershman <[email protected]>

* adding changelog

Signed-off-by: nhershman <[email protected]>

---------

Signed-off-by: nhershman <[email protected]>
Co-authored-by: argoproj-renovate[bot] <161757507+argoproj-renovate[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nicole Hershman <[email protected]>
  • Loading branch information
4 people authored Jan 14, 2025
1 parent 191e768 commit b0578c4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts/argo-cd/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ appVersion: v2.13.3
kubeVersion: ">=1.25.0-0"
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd
version: 7.7.15
version: 7.7.16
home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
sources:
Expand All @@ -26,5 +26,5 @@ annotations:
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
artifacthub.io/changes: |
- kind: fixed
description: Correct ingress listen-ports example
- kind: added
description: Added conditional around argocd-tls-certs-cm.yaml helm creation
1 change: 1 addition & 0 deletions charts/argo-cd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -789,6 +789,7 @@ NAME: my-release
| configs.styles | string | `""` (See [values.yaml]) | Define custom [CSS styles] for your argo instance. This setting will automatically mount the provided CSS and reference it in the argo configuration. |
| configs.tls.annotations | object | `{}` | Annotations to be added to argocd-tls-certs-cm configmap |
| configs.tls.certificates | object | `{}` (See [values.yaml]) | TLS certificates for Git repositories |
| configs.tls.create | bool | `true` | Specifies if the argocd-tls-certs-cm configmap should be created by Helm. |

## Argo CD Controller

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{- if .Values.configs.tls.create }}
apiVersion: v1
kind: ConfigMap
metadata:
Expand All @@ -15,3 +16,4 @@ metadata:
data:
{{- toYaml . | nindent 2 }}
{{- end }}
{{- end }}
3 changes: 3 additions & 0 deletions charts/argo-cd/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,9 @@ configs:
# ...
# -----END CERTIFICATE-----

# -- Specifies if the argocd-tls-certs-cm configmap should be created by Helm.
create: true

# ConfigMap for Config Management Plugins
# Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/config-management-plugins/
cmp:
Expand Down

0 comments on commit b0578c4

Please sign in to comment.