From 0fe831e1c5171dd0217e1f543d40798f473a561f Mon Sep 17 00:00:00 2001 From: kahirokunn Date: Mon, 8 Apr 2024 20:13:29 +0900 Subject: [PATCH] [charts/redis-ha] Add AWS ECR Public repo to prevent rate-limiting * fix(redis-ha): redis image was migrated from docker hub to public ecr for docker hub rate limit Signed-off-by: kahirokunn * fix(redis-ha): haproxy image was migrated from docker hub to public ecr for docker hub rate limit Signed-off-by: kahirokunn * fix(redis-ha): busybox image was migrated from docker hub to public ecr for docker hub rate limit Signed-off-by: kahirokunn * Update values.yaml --------- Signed-off-by: kahirokunn Co-authored-by: Aaron Layfield --- charts/redis-ha/Chart.yaml | 2 +- charts/redis-ha/values.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/redis-ha/Chart.yaml b/charts/redis-ha/Chart.yaml index 241c065..9d356b6 100644 --- a/charts/redis-ha/Chart.yaml +++ b/charts/redis-ha/Chart.yaml @@ -5,7 +5,7 @@ keywords: - redis - keyvalue - database -version: 4.26.5 +version: 4.26.6 appVersion: 7.2.4 description: This Helm chart provides a highly available Redis implementation with a master/slave configuration and uses Sentinel sidecars for failover management icon: https://upload.wikimedia.org/wikipedia/en/thumb/6/6b/Redis_Logo.svg/1200px-Redis_Logo.svg.png diff --git a/charts/redis-ha/values.yaml b/charts/redis-ha/values.yaml index 671a37e..a063ba1 100644 --- a/charts/redis-ha/values.yaml +++ b/charts/redis-ha/values.yaml @@ -2,7 +2,7 @@ ## ref: http://kubernetes.io/docs/user-guide/compute-resources/ ## image: - repository: redis + repository: public.ecr.aws/docker/library/redis tag: 7.2.4-alpine pullPolicy: IfNotPresent @@ -86,7 +86,7 @@ haproxy: # maxSurge: 25% # maxUnavailable: 25% image: - repository: haproxy + repository: public.ecr.aws/docker/library/haproxy tag: 2.9.4-alpine pullPolicy: IfNotPresent @@ -247,7 +247,7 @@ rbac: sysctlImage: enabled: false command: [] - registry: docker.io + registry: public.ecr.aws/docker/library repository: busybox tag: 1.34.1 pullPolicy: Always