Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ appsInfo:
integration: Alertmanager can be activated to send alerts to configured receivers. It is configured by App Platform to use the global values found under settings/alerts. A team can override global settings to send alerts to their own endpoints.
argocd:
title: Argo CD
appVersion: 3.2.6
appVersion: 3.3.0
repo: https://github.com/argoproj/argo-helm
maintainers: Argo Project
relatedLinks:
Expand Down
2 changes: 1 addition & 1 deletion chart/chart-index/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: 0.1.0
dependencies:
- name: argo-cd
alias: argocd
version: 9.3.7
version: 9.4.1
repository: https://argoproj.github.io/argo-helm
- name: argocd-image-updater
version: 1.0.1
Expand Down
8 changes: 4 additions & 4 deletions charts/argocd/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
annotations:
artifacthub.io/changes: |
- kind: changed
description: Bump redis_exporter to v1.80.2
- kind: fixed
description: Use ln -sf in copyutil init container for idempotency after node reboot
artifacthub.io/signKey: |
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
apiVersion: v2
appVersion: v3.2.6
appVersion: v3.3.0
dependencies:
- condition: redis-ha.enabled
name: redis-ha
Expand All @@ -28,4 +28,4 @@ name: argo-cd
sources:
- https://github.com/argoproj/argo-helm/tree/main/charts/argo-cd
- https://github.com/argoproj/argo-cd
version: 9.3.7
version: 9.4.1
4 changes: 2 additions & 2 deletions charts/argocd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1491,7 +1491,7 @@ NAME: my-release
| redis.extraContainers | list | `[]` | Additional containers to be added to the redis pod |
| redis.image.imagePullPolicy | string | `""` (defaults to global.image.imagePullPolicy) | Redis image pull policy |
| redis.image.repository | string | `"ecr-public.aws.com/docker/library/redis"` | Redis repository |
| redis.image.tag | string | `"8.2.2-alpine"` | Redis tag |
| redis.image.tag | string | `"8.2.3-alpine"` | Redis tag |
| redis.imagePullSecrets | list | `[]` (defaults to global.imagePullSecrets) | Secrets with credentials to pull images from a private registry |
| redis.initContainers | list | `[]` | Init containers to add to the redis pod |
| redis.livenessProbe.enabled | bool | `false` | Enable Kubernetes liveness probe for Redis server |
Expand Down Expand Up @@ -1579,7 +1579,7 @@ The main options are listed here:
| redis-ha.haproxy.tolerations | list | `[]` | [Tolerations] for use with node taints for haproxy pods. |
| redis-ha.hardAntiAffinity | bool | `true` | Whether the Redis server pods should be forced to run on separate nodes. |
| redis-ha.image.repository | string | `"ecr-public.aws.com/docker/library/redis"` | Redis repository |
| redis-ha.image.tag | string | `"8.2.2-alpine"` | Redis tag |
| redis-ha.image.tag | string | `"8.2.3-alpine"` | Redis tag |
| redis-ha.persistentVolume.enabled | bool | `false` | Configures persistence on Redis nodes |
| redis-ha.redis.config | object | See [values.yaml] | Any valid redis config options in this section will be applied to each server (see `redis-ha` chart) |
| redis-ha.redis.config.save | string | `'""'` | Will save the DB if both the given number of seconds and the given number of write operations against the DB occurred. `""` is disabled |
Expand Down
8 changes: 4 additions & 4 deletions charts/argocd/templates/argocd-repo-server/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -420,10 +420,10 @@ spec:
{{- end }}
initContainers:
- command:
- /bin/cp
- --update=none
- /usr/local/bin/argocd
- /var/run/argocd/argocd-cmp-server
- sh
- '-c'
args:
- /bin/cp --update=none /usr/local/bin/argocd /var/run/argocd/argocd && /bin/ln -sf /var/run/argocd/argocd /var/run/argocd/argocd-cmp-server
image: {{ default .Values.global.image.repository .Values.repoServer.image.repository }}:{{ default (include "argo-cd.defaultTag" .) .Values.repoServer.image.tag }}
imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.repoServer.image.imagePullPolicy }}
name: copyutil
Expand Down
1,087 changes: 1,087 additions & 0 deletions charts/argocd/templates/crds/crd-application.yaml

Large diffs are not rendered by default.

5,886 changes: 5,607 additions & 279 deletions charts/argocd/templates/crds/crd-applicationset.yaml

Large diffs are not rendered by default.

20 changes: 14 additions & 6 deletions charts/argocd/templates/crds/crd-project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,18 @@ spec:
description: ClusterResourceBlacklist contains list of blacklisted
cluster level resources
items:
description: |-
GroupKind specifies a Group and a Kind, but does not force a version. This is useful for identifying
concepts during lookup stages without having partially valid types
description: ClusterResourceRestrictionItem is a cluster resource
that is restricted by the project's whitelist or blacklist
properties:
group:
type: string
kind:
type: string
name:
description: |-
Name is the name of the restricted resource. Glob patterns using Go's filepath.Match syntax are supported.
Unlike the group and kind fields, if no name is specified, all resources of the specified group/kind are matched.
type: string
required:
- group
- kind
Expand All @@ -80,14 +84,18 @@ spec:
description: ClusterResourceWhitelist contains list of whitelisted
cluster level resources
items:
description: |-
GroupKind specifies a Group and a Kind, but does not force a version. This is useful for identifying
concepts during lookup stages without having partially valid types
description: ClusterResourceRestrictionItem is a cluster resource
that is restricted by the project's whitelist or blacklist
properties:
group:
type: string
kind:
type: string
name:
description: |-
Name is the name of the restricted resource. Glob patterns using Go's filepath.Match syntax are supported.
Unlike the group and kind fields, if no name is specified, all resources of the specified group/kind are matched.
type: string
required:
- group
- kind
Expand Down
4 changes: 2 additions & 2 deletions charts/argocd/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1454,7 +1454,7 @@ redis:
repository: ecr-public.aws.com/docker/library/redis
# -- Redis tag
## Do not use 7.4.0 <= v < 8.0.0, otherwise you are no longer using an open source version of Redis
tag: 8.2.2-alpine
tag: 8.2.3-alpine
# -- Redis image pull policy
# @default -- `""` (defaults to global.image.imagePullPolicy)
imagePullPolicy: ""
Expand Down Expand Up @@ -1750,7 +1750,7 @@ redis-ha:
repository: ecr-public.aws.com/docker/library/redis
# -- Redis tag
## Do not upgrade to >= 7.4.0, otherwise you are no longer using an open source version of Redis
tag: 8.2.2-alpine
tag: 8.2.3-alpine
## Prometheus redis-exporter sidecar
exporter:
# -- Enable Prometheus redis-exporter sidecar
Expand Down