diff --git a/charts/tinyauth/Chart.yaml b/charts/tinyauth/Chart.yaml index 5336b15..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.0 +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 10c4def..2d1b3c8 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.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/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: