Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
17 changes: 17 additions & 0 deletions agentgateway/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# agentgateway Stack

This stack contains installation of agentgateway https://agentgateway.dev/


Use the following command to deploy agentgateway using `idpbuilder`:

`idpbuilder create -p https://github.com/cnoe-io/stacks//agentgateway`


## What is installed?
- Gateway API
- agentgateway CRDS
Comment thread
jaypz marked this conversation as resolved.
Outdated
- agentgateway Control Plane


Gateway setup: https://agentgateway.dev/docs/kubernetes/latest/setup/
38 changes: 38 additions & 0 deletions agentgateway/agentgateway.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: agentgateway
namespace: argocd
spec:
project: default
sources:
- repoURL: ghcr.io/kgateway-dev/charts
chart: agentgateway-crds
targetRevision: v2.2.0-main
helm:
valuesObject:
controller:
image:
pullPolicy: "Always"
- repoURL: ghcr.io/kgateway-dev/charts
chart: agentgateway
targetRevision: v2.2.0-main
helm:
valuesObject:
controller:
image:
pullPolicy: "Always"
extraEnv:
KGW_ENABLE_GATEWAY_API_EXPERIMENTAL_FEATURES: true
- repoURL: 'https://github.com/kubernetes-sigs/gateway-api/'
targetRevision: v1.4.0
path: ./config/crd
destination:
server: 'https://kubernetes.default.svc'
namespace: agentgateway-system
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
Loading