Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 22 additions & 3 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
name: E2E Tests

on: [pull_request, push, workflow_dispatch]
on:
pull_request:
branches:
- dev
- main
push:
branches:
- dev
- main
workflow_dispatch:
schedule:
# Daily at 10:00 UTC. GitHub Actions does not support local timezones for cron.
- cron: "0 10 * * *"

# MaaS configuration - can be overridden with repository secrets for different environments
env:
Expand Down Expand Up @@ -76,7 +88,7 @@ jobs:
timeout-minutes: 60
needs: unit-tests
# Skip this job for fork PRs since secrets are not available
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)
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)

steps:
- name: Checkout repository
Expand Down Expand Up @@ -511,7 +523,14 @@ jobs:
timeout-minutes: 60
needs: [unit-tests, integration-tests]
# Skip this job for fork PRs since secrets are not available
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)
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
)

steps:
- name: Checkout repository
Expand Down
6 changes: 3 additions & 3 deletions deploy/helm/rag/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ dependencies:
version: 0.5.7
- name: ingestion-pipeline
repository: https://rh-ai-quickstart.github.io/ai-architecture-charts
version: 0.7.3
version: 0.7.4
- name: llama-stack
repository: https://rh-ai-quickstart.github.io/ai-architecture-charts
version: 0.7.3
- name: mcp-servers
repository: https://rh-ai-quickstart.github.io/ai-architecture-charts
version: 0.5.15
digest: sha256:91ce7975cc61f2fdfcde4a7b5743eb3496d9017638e2c7e127cc538f408283bb
generated: "2026-04-07T11:02:05.071841-04:00"
digest: sha256:58ad2663a8435d7d29b67670dd0deb209508a31020333b7be9501a515580f458
generated: "2026-04-22T09:51:53.961068-04:00"
6 changes: 3 additions & 3 deletions deploy/helm/rag/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: rag
description: A Helm chart for Kubernetes
type: application
version: 0.2.43
appVersion: "0.2.43"
version: 0.2.44
appVersion: "0.2.44"

dependencies:
- name: pgvector
Expand All @@ -19,7 +19,7 @@ dependencies:
repository: https://rh-ai-quickstart.github.io/ai-architecture-charts
condition: configure-pipeline.enabled
- name: ingestion-pipeline
version: 0.7.3
version: 0.7.4
repository: https://rh-ai-quickstart.github.io/ai-architecture-charts
condition: ingestion-pipeline.enabled
- name: llama-stack
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/rag/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ replicaCount: 1
image:
repository: quay.io/rh-ai-quickstart/llamastack-dist-ui
pullPolicy: Always
tag: 0.2.43
tag: 0.2.44

service:
type: ClusterIP
Expand Down
Loading