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.6.0
appVersion: "0.6.0"
version: 0.7.0
appVersion: "0.7.0"

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.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.0](https://img.shields.io/badge/AppVersion-0.6.0-informational?style=flat-square)
![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)

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

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.6.0
appVersion: "0.6.0"
version: 0.7.0
appVersion: "0.7.0"

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.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.0](https://img.shields.io/badge/AppVersion-0.6.0-informational?style=flat-square)
![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)

Helm chart for the AISIX AI gateway data plane

Expand Down
24 changes: 12 additions & 12 deletions charts/aisix/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,21 +123,21 @@ spec:
failureThreshold: {{ .Values.startupProbe.failureThreshold }}
{{- end }}
{{- if .Values.readinessProbe.enabled }}
# /status/ready on the metrics listener is the configuration-source
# readiness gate: 503 until the control plane's configuration has
# been applied, 200 from then on. A replica the autoscaler adds
# therefore joins the Service only once it can actually serve.
# /readyz answers 503 while the instance is draining or before the
# control plane's configuration has been applied, 200 from then on.
# A replica the autoscaler adds therefore joins the Service only
# once it can actually serve, and leaves it as soon as it starts
# draining — both measured on the listener that carries the traffic.
#
# Not the proxy listener's /readyz: up to and including the
# appVersion this chart pins, that one also withdraws an instance
# whose configuration watch has gone five minutes without an event,
# which an idle environment does routinely — every replica leaves
# the Service while perfectly healthy. Fixed in api7/aisix#841;
# switch this probe to /readyz once appVersion carries that fix.
# It no longer withdraws an instance whose configuration watch has
# merely gone quiet, which an idle environment does routinely and
# which used to empty the Service of every healthy replica at once
# (api7/aisix#841, shipped in appVersion 0.7.0). Configuration
# freshness stays visible on /status/config and aisix_config_*.
readinessProbe:
httpGet:
path: /status/ready
port: metrics
path: /readyz
port: proxy
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
failureThreshold: {{ .Values.readinessProbe.failureThreshold }}
{{- end }}
Expand Down
Loading