Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit 5f6ae05

Browse files
authored
feat: migrate to community redis image (#53)
Signed-off-by: Tomas Coufal <tcoufal@redhat.com>
1 parent 30c4091 commit 5f6ae05

8 files changed

Lines changed: 5 additions & 20 deletions

File tree

.github/workflows/test.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,6 @@ jobs:
6868
username: ${{ secrets.QUAY_USERNAME }}
6969
password: ${{ secrets.QUAY_PASSWORD }}
7070

71-
- name: login to registry.redhat.io
72-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
73-
with:
74-
registry: registry.redhat.io
75-
username: ${{ secrets.REG_RH_USER }}
76-
password: ${{ secrets.REG_RH_PASS }}
77-
7871
- name: Create KIND Cluster
7972
if: steps.list-changed.outputs.changed == 'true'
8073
uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 # v1.12.0

charts/llm-d/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: llm-d
33
type: application
4-
version: 0.3.0
4+
version: 0.4.0
55
appVersion: "0.0.1"
66
icon: data:null
77
description: A Helm chart for llm-d

charts/llm-d/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# llm-d Helm Chart for OpenShift
33

4-
![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square)
4+
![Version: 0.4.0](https://img.shields.io/badge/Version-0.4.0-informational?style=flat-square)
55
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
66

77
A Helm chart for llm-d

charts/llm-d/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,9 +275,9 @@ redis:
275275
enabled: true
276276
architecture: standalone
277277
image:
278-
registry: registry.redhat.io
279-
repository: rhel9/redis-7
280-
tag: 9.5-1744185101
278+
registry: quay.io
279+
repository: sclorg/redis-7-c9s
280+
tag: c9s
281281
master:
282282
kind: Deployment
283283
resources:

quickstart/README-minikube.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,12 @@ Create with Docker:
7171

7272
```bash
7373
docker --config ~/.config/containers/ login quay.io
74-
docker --config ~/.config/containers/ login registry.redhat.io
7574
```
7675

7776
Create with Podman:
7877

7978
```bash
8079
podman login quay.io --authfile ~/.config/containers/auth.json
81-
podman login registry.redhat.io --authfile ~/.config/containers/auth.json
8280
```
8381

8482
> ⚠️ You may need to visit Hugging Face [meta-llama/Llama-3.2-3B-Instruct](https://huggingface.co/meta-llama/Llama-3.2-3B-Instruct) and

quickstart/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,12 @@ Create with Docker:
104104

105105
```bash
106106
docker --config ~/.config/containers/ login quay.io
107-
docker --config ~/.config/containers/ login registry.redhat.io
108107
```
109108

110109
Create with Podman:
111110

112111
```bash
113112
podman login quay.io --authfile ~/.config/containers/auth.json
114-
podman login registry.redhat.io --authfile ~/.config/containers/auth.json
115113
```
116114

117115
### Target Platforms

quickstart/llmd-installer-minikube.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,11 +134,9 @@ locate_auth_file() {
134134
echo
135135
echo "# Docker"
136136
echo "docker --config ~/.config/containers/ login quay.io"
137-
echo "docker --config ~/.config/containers/ login registry.redhat.io"
138137
echo
139138
echo "# Podman"
140139
echo "podman login quay.io --authfile ~/.config/containers/auth.json"
141-
echo "podman login registry.redhat.io --authfile ~/.config/containers/auth.json"
142140
exit 1
143141
fi
144142
log_success "✅ Auth file: ${AUTH_FILE}"

quickstart/llmd-installer.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,9 @@ locate_auth_file() {
126126
echo
127127
echo "# Docker"
128128
echo "docker --config ~/.config/containers/ login quay.io"
129-
echo "docker --config ~/.config/containers/ login registry.redhat.io"
130129
echo
131130
echo "# Podman"
132131
echo "podman login quay.io --authfile ~/.config/containers/auth.json"
133-
echo "podman login registry.redhat.io --authfile ~/.config/containers/auth.json"
134132
exit 1
135133
fi
136134
log_success "✅ Auth file: ${AUTH_FILE}"

0 commit comments

Comments
 (0)