Skip to content

Commit 4ea3bca

Browse files
authored
Merge pull request #185 from rh-ai-quickstart/release/v0.2.44
Release v0.2.44
2 parents 16de6d2 + 747d507 commit 4ea3bca

4 files changed

Lines changed: 29 additions & 10 deletions

File tree

.github/workflows/e2e-tests.yaml

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
name: E2E Tests
22

3-
on: [pull_request, push, workflow_dispatch]
3+
on:
4+
pull_request:
5+
branches:
6+
- dev
7+
- main
8+
push:
9+
branches:
10+
- dev
11+
- main
12+
workflow_dispatch:
13+
schedule:
14+
# Daily at 10:00 UTC. GitHub Actions does not support local timezones for cron.
15+
- cron: "0 10 * * *"
416

517
# MaaS configuration - can be overridden with repository secrets for different environments
618
env:
@@ -76,7 +88,7 @@ jobs:
7688
timeout-minutes: 60
7789
needs: unit-tests
7890
# Skip this job for fork PRs since secrets are not available
79-
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
91+
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
8092

8193
steps:
8294
- name: Checkout repository
@@ -511,7 +523,14 @@ jobs:
511523
timeout-minutes: 60
512524
needs: [unit-tests, integration-tests]
513525
# Skip this job for fork PRs since secrets are not available
514-
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
526+
if: |
527+
github.event_name == 'push' ||
528+
github.event_name == 'workflow_dispatch' ||
529+
github.event_name == 'schedule' ||
530+
(
531+
github.event_name == 'pull_request' &&
532+
github.event.pull_request.head.repo.full_name == github.repository
533+
)
515534
516535
steps:
517536
- name: Checkout repository

deploy/helm/rag/Chart.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ dependencies:
1010
version: 0.5.7
1111
- name: ingestion-pipeline
1212
repository: https://rh-ai-quickstart.github.io/ai-architecture-charts
13-
version: 0.7.3
13+
version: 0.7.4
1414
- name: llama-stack
1515
repository: https://rh-ai-quickstart.github.io/ai-architecture-charts
1616
version: 0.7.3
1717
- name: mcp-servers
1818
repository: https://rh-ai-quickstart.github.io/ai-architecture-charts
1919
version: 0.5.15
20-
digest: sha256:91ce7975cc61f2fdfcde4a7b5743eb3496d9017638e2c7e127cc538f408283bb
21-
generated: "2026-04-07T11:02:05.071841-04:00"
20+
digest: sha256:58ad2663a8435d7d29b67670dd0deb209508a31020333b7be9501a515580f458
21+
generated: "2026-04-22T09:51:53.961068-04:00"

deploy/helm/rag/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: rag
33
description: A Helm chart for Kubernetes
44
type: application
5-
version: 0.2.43
6-
appVersion: "0.2.43"
5+
version: 0.2.44
6+
appVersion: "0.2.44"
77

88
dependencies:
99
- name: pgvector
@@ -19,7 +19,7 @@ dependencies:
1919
repository: https://rh-ai-quickstart.github.io/ai-architecture-charts
2020
condition: configure-pipeline.enabled
2121
- name: ingestion-pipeline
22-
version: 0.7.3
22+
version: 0.7.4
2323
repository: https://rh-ai-quickstart.github.io/ai-architecture-charts
2424
condition: ingestion-pipeline.enabled
2525
- name: llama-stack

deploy/helm/rag/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ replicaCount: 1
33
image:
44
repository: quay.io/rh-ai-quickstart/llamastack-dist-ui
55
pullPolicy: Always
6-
tag: 0.2.43
6+
tag: 0.2.44
77

88
service:
99
type: ClusterIP

0 commit comments

Comments
 (0)