From 0a28b48f95e4aabfeb4120530baaf639c5945d67 Mon Sep 17 00:00:00 2001 From: kahirokunn Date: Fri, 29 Jul 2022 23:40:11 +0900 Subject: [PATCH] fix(argo-cd): redis and redis-exporter image was migrated from docker hub to public ecr for docker hub rate limit (#1386) * fix(argo-cd): redis image was migrated from docker hub to public ecr for docker hub rate limit Signed-off-by: kahirokunn * fix(argo-cd): redis-exporter image was migrated from docker hub to public ecr for docker hub rate limit Signed-off-by: kahirokunn --- charts/argo-cd/Chart.yaml | 5 +++-- charts/argo-cd/README.md | 4 ++-- charts/argo-cd/values.yaml | 4 ++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/charts/argo-cd/Chart.yaml b/charts/argo-cd/Chart.yaml index 42ebfaab..f548d0df 100644 --- a/charts/argo-cd/Chart.yaml +++ b/charts/argo-cd/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v2.4.7 description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. name: argo-cd -version: 4.10.0 +version: 4.10.1 home: https://github.com/argoproj/argo-helm icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png keywords: @@ -21,4 +21,5 @@ dependencies: condition: redis-ha.enabled annotations: artifacthub.io/changes: | - - [Changed]: Truncate version labels to 63 characters" + - [Changed]: redis image was migrated from docker hub to public ecr for docker hub rate limit + - [Changed]: redis-exporter image was migrated from docker hub to public ecr for docker hub rate limit diff --git a/charts/argo-cd/README.md b/charts/argo-cd/README.md index 475bf8c1..590d372d 100644 --- a/charts/argo-cd/README.md +++ b/charts/argo-cd/README.md @@ -639,14 +639,14 @@ NAME: my-release | redis.extraArgs | list | `[]` | Additional command line arguments to pass to redis-server | | redis.extraContainers | list | `[]` | Additional containers to be added to the redis pod | | redis.image.imagePullPolicy | string | `"IfNotPresent"` | Redis imagePullPolicy | -| redis.image.repository | string | `"redis"` | Redis repository | +| redis.image.repository | string | `"public.ecr.aws/docker/library/redis"` | Redis repository | | redis.image.tag | string | `"7.0.0-alpine"` | Redis tag | | 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.metrics.containerPort | int | `9121` | Port to use for redis-exporter sidecar | | redis.metrics.enabled | bool | `false` | Deploy metrics service and redis-exporter sidecar | | redis.metrics.image.imagePullPolicy | string | `"IfNotPresent"` | redis-exporter image PullPolicy | -| redis.metrics.image.repository | string | `"bitnami/redis-exporter"` | redis-exporter image repository | +| redis.metrics.image.repository | string | `"public.ecr.aws/bitnami/redis-exporter"` | redis-exporter image repository | | redis.metrics.image.tag | string | `"1.26.0-debian-10-r2"` | redis-exporter image tag | | redis.metrics.resources | object | `{}` | Resource limits and requests for redis-exporter sidecar | | redis.metrics.service.annotations | object | `{}` | Metrics service annotations | diff --git a/charts/argo-cd/values.yaml b/charts/argo-cd/values.yaml index 541586ec..7bf92d94 100755 --- a/charts/argo-cd/values.yaml +++ b/charts/argo-cd/values.yaml @@ -593,7 +593,7 @@ redis: image: # -- Redis repository - repository: redis + repository: public.ecr.aws/docker/library/redis # -- Redis tag tag: 7.0.0-alpine # -- Redis imagePullPolicy @@ -711,7 +711,7 @@ redis: enabled: false image: # -- redis-exporter image repository - repository: bitnami/redis-exporter + repository: public.ecr.aws/bitnami/redis-exporter # -- redis-exporter image tag tag: 1.26.0-debian-10-r2 # -- redis-exporter image PullPolicy