diff --git a/charts/weblate/Chart.yaml b/charts/weblate/Chart.yaml index 61c1c26..4ce958c 100644 --- a/charts/weblate/Chart.yaml +++ b/charts/weblate/Chart.yaml @@ -3,7 +3,7 @@ name: weblate description: |- Helm chart to deploy [weblate](https://hub.docker.com/r/weblate/weblate/). type: application -version: 0.0.2 +version: 0.0.3 appVersion: "3.11.3-1" home: https://github.com/slamdev/helm-charts/tree/master/charts/weblate icon: https://weblate.org/static/weblate-180.png diff --git a/charts/weblate/README.md b/charts/weblate/README.md index e1157bc..116bebc 100644 --- a/charts/weblate/README.md +++ b/charts/weblate/README.md @@ -2,7 +2,7 @@ weblate ======= Helm chart to deploy [weblate](https://hub.docker.com/r/weblate/weblate/). -Current chart version is `0.0.2` +Current chart version is `0.0.3` Source code can be found [here](https://github.com/slamdev/helm-charts/tree/master/charts/weblate) @@ -27,11 +27,13 @@ Source code can be found [here](https://github.com/slamdev/helm-charts/tree/mast | ingress.tls | list | `[]` | ingress TLS configuration | | livenessProbe.httpGet.path | string | `"/healthz/"` | path for liveness probe | | livenessProbe.httpGet.port | string | `"http"` | port for liveness probe | +| livenessProbe.initialDelaySeconds | int | `45` | | | nameOverride | string | `""` | override name of the chart | | nodeSelector | object | `{}` | node for scheduler pod assignment | -| podSecurityContext | object | `{"fsGroup":1000,"runAsUser":1000}` | specifies security settings for a pod | +| podSecurityContext | object | `{}` | specifies security settings for a pod | | readinessProbe.httpGet.path | string | `"/healthz/"` | path for readiness probe | | readinessProbe.httpGet.port | string | `"http"` | port for readiness probe | +| readinessProbe.initialDelaySeconds | int | `45` | | | resources | object | `{}` | custom resource configuration | | securityContext | object | `{}` | specifies security settings for a container | | service.annotations | object | `{}` | service annotations | diff --git a/charts/weblate/values.yaml b/charts/weblate/values.yaml index 91e9c45..ae1df4c 100644 --- a/charts/weblate/values.yaml +++ b/charts/weblate/values.yaml @@ -22,9 +22,8 @@ serviceAccount: name: # podSecurityContext -- specifies security settings for a pod -podSecurityContext: - runAsUser: 1000 - fsGroup: 1000 +podSecurityContext: {} +# fsGroup: 2000 # chownDataVolumeAs -- specifies an owner of data volume chownDataVolumeAs: "1000:1000" @@ -106,6 +105,7 @@ volumeClaimTemplates: [] # storage: 10Gi livenessProbe: + initialDelaySeconds: 45 httpGet: # livenessProbe.httpGet.path -- path for liveness probe path: /healthz/ @@ -113,6 +113,7 @@ livenessProbe: port: http readinessProbe: + initialDelaySeconds: 45 httpGet: # readinessProbe.httpGet.path -- path for readiness probe path: /healthz/