diff --git a/ocrserver/Chart.yaml b/ocrserver/Chart.yaml index 3042489..d056023 100644 --- a/ocrserver/Chart.yaml +++ b/ocrserver/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: ocrserver description: Run OCR-Server type: application -version: "0.0.1" +version: "0.0.2" # renovate: image=otiai10/ocrserver appVersion: "1.1.0" maintainers: diff --git a/ocrserver/README.md b/ocrserver/README.md index 3a522df..dccd71d 100644 --- a/ocrserver/README.md +++ b/ocrserver/README.md @@ -7,7 +7,7 @@ description: "Run OCR-Server" # ocrserver -![Version: 0.0.1](https://img.shields.io/badge/Version-0.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.0](https://img.shields.io/badge/AppVersion-1.1.0-informational?style=flat-square) +![Version: 0.0.2](https://img.shields.io/badge/Version-0.0.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.0](https://img.shields.io/badge/AppVersion-1.1.0-informational?style=flat-square) Run OCR-Server @@ -52,7 +52,7 @@ helm uninstall ocrserver-release | image.pullPolicy | string | `"IfNotPresent"` | This sets the pull policy for images. | | image.registry | string | `"docker.io"` | | | image.repository | string | `"otiai10/ocrserver"` | | -| image.tag | string | `"v1.1"` | | +| image.tag | string | `"latest"` | | | imagePullSecrets | list | `[]` | This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ | | ingress.annotations | object | `{}` | | | ingress.className | string | `""` | | @@ -61,14 +61,14 @@ helm uninstall ocrserver-release | ingress.hosts[0].paths[0].path | string | `"/"` | | | ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | | | ingress.tls | list | `[]` | | -| livenessProbe.httpGet.path | string | `"/"` | | +| livenessProbe.httpGet.path | string | `"/status"` | | | livenessProbe.httpGet.port | string | `"http"` | | | nameOverride | string | `""` | This is to override the chart name. | | nodeSelector | object | `{}` | | | podAnnotations | object | `{}` | This is for setting Kubernetes Annotations to a Pod. For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ | | podLabels | object | `{}` | This is for setting Kubernetes Labels to a Pod. For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ | | podSecurityContext | object | `{}` | | -| readinessProbe.httpGet.path | string | `"/"` | | +| readinessProbe.httpGet.path | string | `"/status"` | | | readinessProbe.httpGet.port | string | `"http"` | | | replicaCount | int | `1` | | | resources | object | `{}` | | @@ -86,7 +86,7 @@ helm uninstall ocrserver-release Autogenerated from chart metadata using [helm-docs](https://github.com/norwoodj/helm-docs) # ocrserver -![Version: 0.0.1](https://img.shields.io/badge/Version-0.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.0](https://img.shields.io/badge/AppVersion-1.1.0-informational?style=flat-square) +![Version: 0.0.2](https://img.shields.io/badge/Version-0.0.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.0](https://img.shields.io/badge/AppVersion-1.1.0-informational?style=flat-square) Run OCR-Server @@ -109,7 +109,7 @@ Run OCR-Server | image.pullPolicy | string | `"IfNotPresent"` | This sets the pull policy for images. | | image.registry | string | `"docker.io"` | | | image.repository | string | `"otiai10/ocrserver"` | | -| image.tag | string | `"v1.1"` | | +| image.tag | string | `"latest"` | | | imagePullSecrets | list | `[]` | This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ | | ingress.annotations | object | `{}` | | | ingress.className | string | `""` | | @@ -118,14 +118,14 @@ Run OCR-Server | ingress.hosts[0].paths[0].path | string | `"/"` | | | ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | | | ingress.tls | list | `[]` | | -| livenessProbe.httpGet.path | string | `"/"` | | +| livenessProbe.httpGet.path | string | `"/status"` | | | livenessProbe.httpGet.port | string | `"http"` | | | nameOverride | string | `""` | This is to override the chart name. | | nodeSelector | object | `{}` | | | podAnnotations | object | `{}` | This is for setting Kubernetes Annotations to a Pod. For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ | | podLabels | object | `{}` | This is for setting Kubernetes Labels to a Pod. For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ | | podSecurityContext | object | `{}` | | -| readinessProbe.httpGet.path | string | `"/"` | | +| readinessProbe.httpGet.path | string | `"/status"` | | | readinessProbe.httpGet.port | string | `"http"` | | | replicaCount | int | `1` | | | resources | object | `{}` | | diff --git a/ocrserver/values.yaml b/ocrserver/values.yaml index 0d86f14..dcafa95 100644 --- a/ocrserver/values.yaml +++ b/ocrserver/values.yaml @@ -81,11 +81,11 @@ resources: {} # This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ livenessProbe: httpGet: - path: / + path: /status port: http readinessProbe: httpGet: - path: / + path: /status port: http # This section is for setting up autoscaling more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/