Commit da6a5cf
committed
LCORE-1872: Fix llama-stack container startup issues
Fixes two issues preventing llama-stack container from starting:
1. SQLite compatibility error - Switch base image from ubi9/ubi-minimal to
ubi9/python-312. The minimal image ships with SQLite < 3.30.0 which lacks
sqlite3_deserialize support required by Python 3.12's _sqlite3 module. The
python-312 base image includes a compatible SQLite version and properly
configured Python dependencies.
2. Read-only filesystem error - Config enrichment script now writes to
/tmp/enriched-run.yaml instead of /opt/app-root/run.yaml. The latter is
mounted read-only from the host, causing OSError when the enrichment script
attempts to write the enriched configuration.
Signed-off-by: Anik Bhattacharjee <anbhatta@redhat.com>1 parent bd6e112 commit da6a5cf
4 files changed
Lines changed: 9 additions & 8 deletions
File tree
- deploy/llama-stack
- scripts
- tests/e2e-prow/rhoai/manifests/lightspeed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
2 | | - | |
| 1 | + | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
7 | | - | |
8 | | - | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
| 8 | + | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
152 | 152 | | |
153 | 153 | | |
154 | 154 | | |
155 | | - | |
| 155 | + | |
156 | 156 | | |
157 | 157 | | |
158 | 158 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
142 | 142 | | |
143 | 143 | | |
144 | 144 | | |
145 | | - | |
| 145 | + | |
146 | 146 | | |
147 | 147 | | |
148 | 148 | | |
| |||
0 commit comments