forked from argoproj/argo-helm
chore(argo-cd): Updated Redis to 7.0.5 for fixing CVE-2022-35951. (#1523)
Signed-off-by: yu-croco <yu.croco@gmail.com>main argo-cd-5.5.13
parent
fb7b59e481
commit
18dfcc1053
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v2.4.14
|
appVersion: v2.4.14
|
||||||
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: 5.5.12
|
version: 5.5.13
|
||||||
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
|
||||||
sources:
|
sources:
|
||||||
|
@ -22,5 +22,4 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Added]: Added `envFrom` field to the notifications-controller."
|
- "[Changed]: Updated Redis to 7.0.5 for fixing CVE-2022-35951."
|
||||||
- "[Changed]: Templating the `env` field in the same way as in the argocd-server."
|
|
||||||
|
|
|
@ -771,7 +771,7 @@ NAME: my-release
|
||||||
| redis.extraContainers | list | `[]` | Additional containers to be added to the redis pod |
|
| redis.extraContainers | list | `[]` | Additional containers to be added to the redis pod |
|
||||||
| redis.image.imagePullPolicy | string | `"IfNotPresent"` | Redis imagePullPolicy |
|
| redis.image.imagePullPolicy | string | `"IfNotPresent"` | Redis imagePullPolicy |
|
||||||
| redis.image.repository | string | `"public.ecr.aws/docker/library/redis"` | Redis repository |
|
| redis.image.repository | string | `"public.ecr.aws/docker/library/redis"` | Redis repository |
|
||||||
| redis.image.tag | string | `"7.0.4-alpine"` | Redis tag |
|
| redis.image.tag | string | `"7.0.5-alpine"` | Redis tag |
|
||||||
| redis.imagePullSecrets | list | `[]` | Secrets with credentials to pull images from a private registry |
|
| redis.imagePullSecrets | list | `[]` | Secrets with credentials to pull images from a private registry |
|
||||||
| redis.initContainers | list | `[]` | Init containers to add to the redis pod |
|
| redis.initContainers | list | `[]` | Init containers to add to the redis pod |
|
||||||
| redis.metrics.containerPort | int | `9121` | Port to use for redis-exporter sidecar |
|
| redis.metrics.containerPort | int | `9121` | Port to use for redis-exporter sidecar |
|
||||||
|
@ -829,7 +829,7 @@ The main options are listed here:
|
||||||
| redis-ha.exporter.enabled | bool | `true` | If `true`, the prometheus exporter sidecar is enabled |
|
| redis-ha.exporter.enabled | bool | `true` | If `true`, the prometheus exporter sidecar is enabled |
|
||||||
| redis-ha.haproxy.enabled | bool | `true` | Enabled HAProxy LoadBalancing/Proxy |
|
| redis-ha.haproxy.enabled | bool | `true` | Enabled HAProxy LoadBalancing/Proxy |
|
||||||
| redis-ha.haproxy.metrics.enabled | bool | `true` | HAProxy enable prometheus metric scraping |
|
| redis-ha.haproxy.metrics.enabled | bool | `true` | HAProxy enable prometheus metric scraping |
|
||||||
| redis-ha.image.tag | string | `"7.0.4-alpine"` | Redis tag |
|
| redis-ha.image.tag | string | `"7.0.5-alpine"` | Redis tag |
|
||||||
| redis-ha.persistentVolume.enabled | bool | `false` | Configures persistency on Redis nodes |
|
| redis-ha.persistentVolume.enabled | bool | `false` | Configures persistency 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 | 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 |
|
| 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 |
|
||||||
|
|
|
@ -862,7 +862,7 @@ redis:
|
||||||
# -- Redis repository
|
# -- Redis repository
|
||||||
repository: public.ecr.aws/docker/library/redis
|
repository: public.ecr.aws/docker/library/redis
|
||||||
# -- Redis tag
|
# -- Redis tag
|
||||||
tag: 7.0.4-alpine
|
tag: 7.0.5-alpine
|
||||||
# -- Redis imagePullPolicy
|
# -- Redis imagePullPolicy
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
@ -1071,7 +1071,7 @@ redis-ha:
|
||||||
enabled: true
|
enabled: true
|
||||||
image:
|
image:
|
||||||
# -- Redis tag
|
# -- Redis tag
|
||||||
tag: 7.0.4-alpine
|
tag: 7.0.5-alpine
|
||||||
|
|
||||||
## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
|
## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
|
||||||
topologySpreadConstraints:
|
topologySpreadConstraints:
|
||||||
|
|
Loading…
Reference in New Issue