Skip to content

Replace bitnami repo with bitnamilegacy#73

Merged
ffilippopoulos merged 1 commit intomainfrom
bitnamilegacy
Jul 23, 2025
Merged

Replace bitnami repo with bitnamilegacy#73
ffilippopoulos merged 1 commit intomainfrom
bitnamilegacy

Conversation

@ffilippopoulos
Copy link
Member

Replace bitnami repo with bitnamilegacy to make sure images can be pulled after the 28th of August.

@ffilippopoulos ffilippopoulos requested a review from a team as a code owner July 23, 2025 06:39
@github-actions
Copy link
Contributor

Post kustomize build diff:

diff --git a/root-manifests/elasticsearch/example/manifests.yaml b/built-manifests/elasticsearch/example/manifests.yaml
index de90630..a0157bb 100644
--- a/root-manifests/elasticsearch/example/manifests.yaml
+++ b/built-manifests/elasticsearch/example/manifests.yaml
@@ -270,7 +270,7 @@ spec:
         - name: KIBANA_ELASTICSEARCH_TLS_VERIFICATION_MODE
           value: full
         envFrom: null
-        image: docker.io/bitnami/kibana:8.11.4-debian-11-r0
+        image: docker.io/bitnamilegacy/kibana:8.11.4-debian-11-r0
         imagePullPolicy: IfNotPresent
         livenessProbe:
           failureThreshold: 6
@@ -321,7 +321,7 @@ spec:
           name: kibana-data
         - mountPath: /bitnami/kibana/conf
           name: kibana-config
-      initContainers: null
+      initContainers: []
       securityContext:
         fsGroup: 1001
         fsGroupChangePolicy: Always
@@ -386,7 +386,7 @@ spec:
         command: []
         env: null
         envFrom: null
-        image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r1
+        image: docker.io/bitnamilegacy/elasticsearch-exporter:1.7.0-debian-11-r1
         imagePullPolicy: IfNotPresent
         livenessProbe:
           failureThreshold: 5
@@ -526,7 +526,7 @@ spec:
           value: elasticsearch-master-0 elasticsearch-master-1 elasticsearch-master-2
         - name: ELASTICSEARCH_MINIMUM_MASTER_NODES
           value: "2"
-        image: docker.io/bitnami/elasticsearch:8.11.4-debian-11-r1
+        image: docker.io/bitnamilegacy/elasticsearch:8.11.4-debian-11-r1
         imagePullPolicy: IfNotPresent
         livenessProbe:
           failureThreshold: 5
diff --git a/root-manifests/elasticsearch/manifests/manifests.yaml b/built-manifests/elasticsearch/manifests/manifests.yaml
index bb734f9..df089d9 100644
--- a/root-manifests/elasticsearch/manifests/manifests.yaml
+++ b/built-manifests/elasticsearch/manifests/manifests.yaml
@@ -235,7 +235,7 @@ spec:
         - name: KIBANA_ELASTICSEARCH_TLS_VERIFICATION_MODE
           value: full
         envFrom: null
-        image: docker.io/bitnami/kibana:8.11.4-debian-11-r0
+        image: docker.io/bitnamilegacy/kibana:8.11.4-debian-11-r0
         imagePullPolicy: IfNotPresent
         livenessProbe:
           failureThreshold: 6
@@ -286,7 +286,7 @@ spec:
           name: kibana-data
         - mountPath: /bitnami/kibana/conf
           name: kibana-config
-      initContainers: null
+      initContainers: []
       securityContext:
         fsGroup: 1001
         fsGroupChangePolicy: Always
@@ -347,7 +347,7 @@ spec:
         command: []
         env: null
         envFrom: null
-        image: docker.io/bitnami/elasticsearch-exporter:1.7.0-debian-11-r1
+        image: docker.io/bitnamilegacy/elasticsearch-exporter:1.7.0-debian-11-r1
         imagePullPolicy: IfNotPresent
         livenessProbe:
           failureThreshold: 5
@@ -461,7 +461,7 @@ spec:
           value: "2"
         - name: ELASTICSEARCH_HEAP_SIZE
           value: 4g
-        image: docker.io/bitnami/elasticsearch:8.11.4-debian-11-r1
+        image: docker.io/bitnamilegacy/elasticsearch:8.11.4-debian-11-r1
         imagePullPolicy: IfNotPresent
         livenessProbe:
           failureThreshold: 5
diff --git a/root-manifests/redis/example/manifests.yaml b/built-manifests/redis/example/manifests.yaml
index 0b4cbef..493b753 100644
--- a/root-manifests/redis/example/manifests.yaml
+++ b/built-manifests/redis/example/manifests.yaml
@@ -349,7 +349,7 @@ spec:
           value: "no"
         - name: REDIS_PORT
           value: "6379"
-        image: docker.io/bitnami/redis:7.2.2-debian-11-r0
+        image: docker.io/bitnamilegacy/redis:7.2.2-debian-11-r0
         imagePullPolicy: IfNotPresent
         livenessProbe:
           exec:
@@ -425,7 +425,7 @@ spec:
             secretKeyRef:
               key: redis-password
               name: service-cache-redis
-        image: docker.io/bitnami/redis-exporter:1.55.0-debian-11-r0
+        image: docker.io/bitnamilegacy/redis-exporter:1.55.0-debian-11-r0
         imagePullPolicy: IfNotPresent
         livenessProbe:
           failureThreshold: 5
diff --git a/root-manifests/redis/manifests/manifests.yaml b/built-manifests/redis/manifests/manifests.yaml
index 041890f..6b6cc01 100644
--- a/root-manifests/redis/manifests/manifests.yaml
+++ b/built-manifests/redis/manifests/manifests.yaml
@@ -320,7 +320,7 @@ spec:
           value: "no"
         - name: REDIS_PORT
           value: "6379"
-        image: docker.io/bitnami/redis:7.2.2-debian-11-r0
+        image: docker.io/bitnamilegacy/redis:7.2.2-debian-11-r0
         imagePullPolicy: IfNotPresent
         livenessProbe:
           exec:
@@ -396,7 +396,7 @@ spec:
             secretKeyRef:
               key: redis-password
               name: redis
-        image: docker.io/bitnami/redis-exporter:1.55.0-debian-11-r0
+        image: docker.io/bitnamilegacy/redis-exporter:1.55.0-debian-11-r0
         imagePullPolicy: IfNotPresent
         livenessProbe:
           failureThreshold: 5

=============================================
k8s objects: 0 to add, 0 to destroy
12 changed hunks

@ffilippopoulos ffilippopoulos changed the title sed 's|docker\.io/bitnami|docker.io/bitnamilegacy|g' Replace bitnami repo with bitnamilegacy Jul 23, 2025
@ffilippopoulos ffilippopoulos merged commit 0a449be into main Jul 23, 2025
2 checks passed
@ffilippopoulos ffilippopoulos deleted the bitnamilegacy branch July 23, 2025 07:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants