Skip to content

feat(helm): support namespaced RBAC for MCP controller (#127) #469

feat(helm): support namespaced RBAC for MCP controller (#127)

feat(helm): support namespaced RBAC for MCP controller (#127) #469

Workflow file for this run

name: E2E Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-e2e:
name: Run on Ubuntu
runs-on: ubuntu-latest
steps:
- name: Clone the code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1
with:
cluster_name: kind
- name: Build controller image
run: make docker-build CONTROLLER_IMG=ghcr.io/kagent-dev/kmcp/controller:e2e-test
timeout-minutes: 15
- name: Run e2e tests
run: |
go mod tidy
make test-e2e
timeout-minutes: 20