Compare commits
3 Commits
016-copy-u
...
v1.3.1
| Author | SHA1 | Date | |
|---|---|---|---|
| 87eb2703f5 | |||
| bc0f5173c0 | |||
| 309cfce71c |
@@ -88,7 +88,7 @@ class TagRepository:
|
|||||||
|
|
||||||
query = select(Tag, count_subq.label("image_count"))
|
query = select(Tag, count_subq.label("image_count"))
|
||||||
if prefix:
|
if prefix:
|
||||||
query = query.where(Tag.name.like(f"{prefix}%"))
|
query = query.where(Tag.name.ilike(f"%{prefix}%"))
|
||||||
if min_count > 0:
|
if min_count > 0:
|
||||||
query = query.where(count_subq >= min_count)
|
query = query.where(count_subq >= min_count)
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: migrate
|
- name: migrate
|
||||||
image: git.juggalol.com/juggalol/reactbin-api:v1.2.1
|
image: git.juggalol.com/juggalol/reactbin-api:v1.3.1
|
||||||
command: ["alembic", "upgrade", "head"]
|
command: ["alembic", "upgrade", "head"]
|
||||||
workingDir: /app
|
workingDir: /app
|
||||||
envFrom:
|
envFrom:
|
||||||
@@ -26,7 +26,7 @@ spec:
|
|||||||
runAsUser: 1001
|
runAsUser: 1001
|
||||||
containers:
|
containers:
|
||||||
- name: api
|
- name: api
|
||||||
image: git.juggalol.com/juggalol/reactbin-api:v1.2.1
|
image: git.juggalol.com/juggalol/reactbin-api:v1.3.1
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8000
|
- containerPort: 8000
|
||||||
envFrom:
|
envFrom:
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: ui
|
- name: ui
|
||||||
image: git.juggalol.com/juggalol/reactbin-ui:v1.2.1
|
image: git.juggalol.com/juggalol/reactbin-ui:v1.3.1
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8080
|
- containerPort: 8080
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
|
|||||||
Reference in New Issue
Block a user