From 4a6595c6ed04ce8d91910635dcbe5ee8faa34c4c Mon Sep 17 00:00:00 2001 From: Fred Fettinger Date: Thu, 23 Oct 2025 19:45:21 -0500 Subject: [PATCH 1/4] update livenessProbe/readinessProbe path to /api/healthz Matches documentation at: https://tinyauth.app/docs/breaking-updates/3-to-4#api-changes Updated chart README.md and schema using commands in main README.md --- charts/tinyauth/README.md | 4 ++-- charts/tinyauth/ci/all-features-values.yaml | 4 ++-- charts/tinyauth/values.schema.json | 4 ++-- charts/tinyauth/values.yaml | 8 ++++---- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/charts/tinyauth/README.md b/charts/tinyauth/README.md index 10c4def..8be86e9 100644 --- a/charts/tinyauth/README.md +++ b/charts/tinyauth/README.md @@ -33,7 +33,7 @@ The simplest way to protect your apps with a login screen. | ingress.hosts[0].paths[0].path | string | `"/"` | | | ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | | | ingress.tls | list | `[]` | | -| livenessProbe.httpGet.path | string | `"/api/health"` | | +| livenessProbe.httpGet.path | string | `"/api/healthz"` | | | livenessProbe.httpGet.port | string | `"http"` | | | nameOverride | string | `""` | | | nodeSelector | object | `{}` | | @@ -46,7 +46,7 @@ The simplest way to protect your apps with a login screen. | podAnnotations | object | `{}` | | | podLabels | object | `{}` | | | podSecurityContext | object | `{}` | | -| readinessProbe.httpGet.path | string | `"/api/health"` | | +| readinessProbe.httpGet.path | string | `"/api/healthz"` | | | readinessProbe.httpGet.port | string | `"http"` | | | replicaCount | int | `1` | | | resources | object | `{}` | | diff --git a/charts/tinyauth/ci/all-features-values.yaml b/charts/tinyauth/ci/all-features-values.yaml index 88df77e..d1498cb 100644 --- a/charts/tinyauth/ci/all-features-values.yaml +++ b/charts/tinyauth/ci/all-features-values.yaml @@ -93,14 +93,14 @@ ingress: livenessProbe: httpGet: - path: /api/health + path: /api/healthz port: http initialDelaySeconds: 30 periodSeconds: 10 readinessProbe: httpGet: - path: /api/health + path: /api/healthz port: http initialDelaySeconds: 5 periodSeconds: 5 diff --git a/charts/tinyauth/values.schema.json b/charts/tinyauth/values.schema.json index 00491f5..f53e2bc 100644 --- a/charts/tinyauth/values.schema.json +++ b/charts/tinyauth/values.schema.json @@ -194,7 +194,7 @@ "livenessProbe": { "default": { "httpGet": { - "path": "/api/health", + "path": "/api/healthz", "port": "http" } }, @@ -266,7 +266,7 @@ "readinessProbe": { "default": { "httpGet": { - "path": "/api/health", + "path": "/api/healthz", "port": "http" } }, diff --git a/charts/tinyauth/values.yaml b/charts/tinyauth/values.yaml index b15d1e8..12dc4c3 100644 --- a/charts/tinyauth/values.yaml +++ b/charts/tinyauth/values.yaml @@ -142,13 +142,13 @@ resources: {} # cpu: 100m # memory: 128Mi -livenessProbe: # @schema default: {"httpGet": {"path": "/api/health", "port": "http"}} +livenessProbe: # @schema default: {"httpGet": {"path": "/api/healthz", "port": "http"}} httpGet: - path: /api/health + path: /api/healthz port: http -readinessProbe: # @schema default: {"httpGet": {"path": "/api/health", "port": "http"}} +readinessProbe: # @schema default: {"httpGet": {"path": "/api/healthz", "port": "http"}} httpGet: - path: /api/health + path: /api/healthz port: http autoscaling: From 34e57e38c96aed2c792a79222bd04d8cd3d4650b Mon Sep 17 00:00:00 2001 From: Fred Fettinger Date: Thu, 23 Oct 2025 20:45:07 -0500 Subject: [PATCH 2/4] bump chart version to 0.4.1 --- charts/tinyauth/Chart.yaml | 2 +- charts/tinyauth/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/tinyauth/Chart.yaml b/charts/tinyauth/Chart.yaml index 5336b15..6d666a1 100644 --- a/charts/tinyauth/Chart.yaml +++ b/charts/tinyauth/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.4.0 +version: 0.4.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/tinyauth/README.md b/charts/tinyauth/README.md index 8be86e9..4593ad5 100644 --- a/charts/tinyauth/README.md +++ b/charts/tinyauth/README.md @@ -1,6 +1,6 @@ # tinyauth -![Version: 0.4.0](https://img.shields.io/badge/Version-0.4.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v4.0.1](https://img.shields.io/badge/AppVersion-v4.0.1-informational?style=flat-square) +![Version: 0.4.1](https://img.shields.io/badge/Version-0.4.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v4.0.1](https://img.shields.io/badge/AppVersion-v4.0.1-informational?style=flat-square) The simplest way to protect your apps with a login screen. From 68d8e23c10ced85c47963406522a0b438eb1e0de Mon Sep 17 00:00:00 2001 From: Stavros Date: Fri, 21 Nov 2025 17:05:44 +0200 Subject: [PATCH 3/4] chore: sync with main --- charts/tinyauth/Chart.yaml | 4 ++-- charts/tinyauth/README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/tinyauth/Chart.yaml b/charts/tinyauth/Chart.yaml index 6d666a1..c2c5e97 100644 --- a/charts/tinyauth/Chart.yaml +++ b/charts/tinyauth/Chart.yaml @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.4.1 +version: 0.5.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "v4.0.1" +appVersion: "v4.1.0" diff --git a/charts/tinyauth/README.md b/charts/tinyauth/README.md index 4593ad5..dce93a3 100644 --- a/charts/tinyauth/README.md +++ b/charts/tinyauth/README.md @@ -1,6 +1,6 @@ # tinyauth -![Version: 0.4.1](https://img.shields.io/badge/Version-0.4.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v4.0.1](https://img.shields.io/badge/AppVersion-v4.0.1-informational?style=flat-square) +![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v4.1.0](https://img.shields.io/badge/AppVersion-v4.1.0-informational?style=flat-square) The simplest way to protect your apps with a login screen. @@ -33,7 +33,7 @@ The simplest way to protect your apps with a login screen. | ingress.hosts[0].paths[0].path | string | `"/"` | | | ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | | | ingress.tls | list | `[]` | | -| livenessProbe.httpGet.path | string | `"/api/healthz"` | | +| livenessProbe.httpGet.path | string | `"/api/health"` | | | livenessProbe.httpGet.port | string | `"http"` | | | nameOverride | string | `""` | | | nodeSelector | object | `{}` | | @@ -46,7 +46,7 @@ The simplest way to protect your apps with a login screen. | podAnnotations | object | `{}` | | | podLabels | object | `{}` | | | podSecurityContext | object | `{}` | | -| readinessProbe.httpGet.path | string | `"/api/healthz"` | | +| readinessProbe.httpGet.path | string | `"/api/health"` | | | readinessProbe.httpGet.port | string | `"http"` | | | replicaCount | int | `1` | | | resources | object | `{}` | | From fbccaaa10d37ea6547136f00bb46c09af2433f4e Mon Sep 17 00:00:00 2001 From: Stavros Date: Fri, 21 Nov 2025 17:10:46 +0200 Subject: [PATCH 4/4] chore: update readme --- charts/tinyauth/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/tinyauth/README.md b/charts/tinyauth/README.md index dce93a3..2d1b3c8 100644 --- a/charts/tinyauth/README.md +++ b/charts/tinyauth/README.md @@ -33,7 +33,7 @@ The simplest way to protect your apps with a login screen. | ingress.hosts[0].paths[0].path | string | `"/"` | | | ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | | | ingress.tls | list | `[]` | | -| livenessProbe.httpGet.path | string | `"/api/health"` | | +| livenessProbe.httpGet.path | string | `"/api/healthz"` | | | livenessProbe.httpGet.port | string | `"http"` | | | nameOverride | string | `""` | | | nodeSelector | object | `{}` | | @@ -46,7 +46,7 @@ The simplest way to protect your apps with a login screen. | podAnnotations | object | `{}` | | | podLabels | object | `{}` | | | podSecurityContext | object | `{}` | | -| readinessProbe.httpGet.path | string | `"/api/health"` | | +| readinessProbe.httpGet.path | string | `"/api/healthz"` | | | readinessProbe.httpGet.port | string | `"http"` | | | replicaCount | int | `1` | | | resources | object | `{}` | |