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
4 changes: 2 additions & 2 deletions charts/aisix-cp/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: aisix-cp
description: Helm chart for AISIX control plane (cp-api, dp-manager, dashboard)
type: application
version: 0.7.0
appVersion: "0.7.0"
version: 0.7.1
appVersion: "0.7.1"

maintainers:
- name: API7
Expand Down
2 changes: 1 addition & 1 deletion charts/aisix-cp/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# aisix-cp

![Version: 0.7.0](https://img.shields.io/badge/Version-0.7.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.7.0](https://img.shields.io/badge/AppVersion-0.7.0-informational?style=flat-square)
![Version: 0.7.1](https://img.shields.io/badge/Version-0.7.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.7.1](https://img.shields.io/badge/AppVersion-0.7.1-informational?style=flat-square)

Helm chart for AISIX control plane (cp-api, dp-manager, dashboard)

Expand Down
7 changes: 7 additions & 0 deletions charts/aisix-cp/templates/dpm-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ spec:
value: ":7944"
- name: AISIX_DPMGR_HEALTH_LISTEN
value: {{ .Values.dpm.service.healthListen | quote }}
{{- if .Values.api.dpmgrBaseURL }}
# Same value cp-api bakes into the install snippet: dp-manager
# seeds its TLS server cert SANs from this host, so a DP that
# dials the CP by IP can complete the handshake (#1216).
- name: AISIX_DPMGR_BASE_URL
value: {{ .Values.api.dpmgrBaseURL | quote }}
{{- end }}
- name: AISIX_DPMGR_DATABASE_URL
value: {{ include "aisix-cp.databaseURL" . }}
- name: AISIX_DPMGR_MASTER_KEY
Expand Down
4 changes: 4 additions & 0 deletions charts/aisix-cp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ api:
affinity: {}
extraEnvVars: []
publicBaseURL: "http://localhost:8080"
## dp-manager /dp/* mTLS endpoint that data-plane hosts dial, as baked
## into the generated install snippets. Also passed to the dpm
## deployment, which seeds this host into the TLS server certificate it
## presents — so an IP address works here, not only a DNS name.
dpmgrBaseURL: ""
oauthEnabled: false
dpImage: "" # empty -> docker.io/api7/aisix:<appVersion>
Expand Down
4 changes: 2 additions & 2 deletions charts/aisix/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: aisix
description: Helm chart for the AISIX AI gateway data plane
type: application
version: 0.7.0
appVersion: "0.7.0"
version: 0.7.1
appVersion: "0.7.1"

keywords:
- ai-gateway
Expand Down
2 changes: 1 addition & 1 deletion charts/aisix/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# aisix

![Version: 0.7.0](https://img.shields.io/badge/Version-0.7.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.7.0](https://img.shields.io/badge/AppVersion-0.7.0-informational?style=flat-square)
![Version: 0.7.1](https://img.shields.io/badge/Version-0.7.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.7.1](https://img.shields.io/badge/AppVersion-0.7.1-informational?style=flat-square)

Helm chart for the AISIX AI gateway data plane

Expand Down
Loading