Skip to content

Commit 0888994

Browse files
committed
fix(standalone): restore top-level database.postgres.url in valuesObject
The standalone chart's validate.yaml requires database.postgres.url whenever mode: database, but a prior fix (12044a2) dropped this field believing it invalid, leaving only config.config.database.url set. Since then every ArgoCD resync of the generated agentgateway-standalone Application has failed manifest generation with: mode=database requires database.postgres.url to start with postgres:// or postgresql:// (got "") The live Deployment kept running on its last successfully synced manifest, masking the break until the next resync. Re-add the top-level field alongside the existing config.config.database.url.
1 parent b0db631 commit 0888994

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

charts/agentgateway-bootstrap/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: agentgateway-bootstrap
33
description: A Helm chart for bootstrapping agentgateway with Amazon Bedrock LLM support
44
type: application
5-
version: 0.7.18
5+
version: 0.7.19
66
appVersion: "1.4.1"
77
keywords:
88
- agentgateway

charts/agentgateway-bootstrap/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# agentgateway-bootstrap
22

3-
![Version: 0.7.18](https://img.shields.io/badge/Version-0.7.18-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.4.1](https://img.shields.io/badge/AppVersion-1.4.1-informational?style=flat-square)
3+
![Version: 0.7.19](https://img.shields.io/badge/Version-0.7.19-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.4.1](https://img.shields.io/badge/AppVersion-1.4.1-informational?style=flat-square)
44

55
A Helm chart for bootstrapping agentgateway with Amazon Bedrock support on Kubernetes via ArgoCD Applications.
66

charts/agentgateway-bootstrap/templates/agentgateway-standalone-helm.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ spec:
5454
gateway:
5555
service:
5656
type: {{ .Values.standalone.service.type | default "ClusterIP" }}
57+
database:
58+
postgres:
59+
url: {{ printf "postgresql://%s:${DB_PASSWORD}@%s-rw:5432/%s" (.Values.database.databaseName | default "agentgateway") (include "agentgateway-bootstrap.postgresClusterName" .) (.Values.database.databaseName | default "agentgateway") | quote }}
5760
ignoreDifferences:
5861
- group: ""
5962
kind: ConfigMap

0 commit comments

Comments
 (0)