From a5a1b19c544c21bc64b0e5a1a2de67f56f6b30a6 Mon Sep 17 00:00:00 2001 From: Mike Camp Date: Wed, 26 Aug 2026 11:48:19 -0400 Subject: [PATCH] fix(admin-token-issuer-proxy): separate readiness from liveness Signed-off-by: Mike Camp --- deploy/helm/admin-token-issuer-proxy/chart/Chart.yaml | 2 +- deploy/helm/admin-token-issuer-proxy/chart/values.yaml | 6 +++--- deploy/helm/admin-token-issuer-proxy/values.local.yaml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/deploy/helm/admin-token-issuer-proxy/chart/Chart.yaml b/deploy/helm/admin-token-issuer-proxy/chart/Chart.yaml index e6f928612..623ddff42 100644 --- a/deploy/helm/admin-token-issuer-proxy/chart/Chart.yaml +++ b/deploy/helm/admin-token-issuer-proxy/chart/Chart.yaml @@ -18,4 +18,4 @@ name: helm-admin-token-issuer-proxy description: Admin Issuer Proxy service for minting admin-scoped JWTs from Vault/OpenBao type: application version: 0.0.0 # Chart version is managed by semantic-release -appVersion: "1.0.2" +appVersion: "1.1.0" diff --git a/deploy/helm/admin-token-issuer-proxy/chart/values.yaml b/deploy/helm/admin-token-issuer-proxy/chart/values.yaml index da5d0b4da..23ac92965 100644 --- a/deploy/helm/admin-token-issuer-proxy/chart/values.yaml +++ b/deploy/helm/admin-token-issuer-proxy/chart/values.yaml @@ -39,7 +39,7 @@ adminIssuerProxy: pullPolicy: IfNotPresent # Image tag to use. Defaults to the appVersion from Chart.yaml if not specified. - tag: "1.0.2" + tag: "1.1.0" # List of image pull secrets for accessing private container registries. # Example: @@ -182,10 +182,10 @@ adminIssuerProxy: periodSeconds: 30 # Readiness probe configuration. Kubernetes uses this to determine if the pod should receive traffic. - # The probe checks the /healthz endpoint to verify the service is ready to handle requests. + # The probe checks /readyz so metadata initialization remains distinct from liveness. readinessProbe: httpGet: - path: /healthz + path: /readyz port: 8080 # Wait time before the first probe is executed after container start initialDelaySeconds: 5 diff --git a/deploy/helm/admin-token-issuer-proxy/values.local.yaml b/deploy/helm/admin-token-issuer-proxy/values.local.yaml index 44eb05b80..570fabfb0 100644 --- a/deploy/helm/admin-token-issuer-proxy/values.local.yaml +++ b/deploy/helm/admin-token-issuer-proxy/values.local.yaml @@ -17,4 +17,4 @@ adminIssuerProxy: image: registry: "" repository: "" - tag: "1.0.2" + tag: "1.1.0"