diff --git a/charts/dial-core/Chart.yaml b/charts/dial-core/Chart.yaml index f4c893f..c5612de 100644 --- a/charts/dial-core/Chart.yaml +++ b/charts/dial-core/Chart.yaml @@ -26,4 +26,4 @@ maintainers: name: dial-core sources: - https://github.com/epam/ai-dial-helm/tree/main/charts/dial-core -version: 3.0.0 +version: 3.0.1 diff --git a/charts/dial-core/README.md b/charts/dial-core/README.md index 60f72fa..c7db952 100644 --- a/charts/dial-core/README.md +++ b/charts/dial-core/README.md @@ -1,6 +1,6 @@ # dial-core -![Version: 3.0.0](https://img.shields.io/badge/Version-3.0.0-informational?style=flat-square) ![AppVersion: 1.0](https://img.shields.io/badge/AppVersion-1.0-informational?style=flat-square) +![Version: 3.0.1](https://img.shields.io/badge/Version-3.0.1-informational?style=flat-square) ![AppVersion: 1.0](https://img.shields.io/badge/AppVersion-1.0-informational?style=flat-square) Helm chart for dial core @@ -210,9 +210,9 @@ helm install my-release dial/dial-core -f values.yaml | redis.cluster.update.currentNumberOfReplicas | int | `0` | | | redis.enabled | bool | `true` | | | redis.redis.configmap | string | `"# Intentional gap from 2gb to 2Gi left\nmaxmemory 2gb\n# Evict using approximated LFU, only keys with an expire set\nmaxmemory-policy volatile-lfu"` | | +| redis.redis.resources.limits.memory | string | `"2Gi"` | | +| redis.redis.resources.requests.memory | string | `"2Gi"` | | | redis.redis.useAOFPersistence | string | `"no"` | Whether to use AOF Persistence mode or not. We keep only RDB persistence (enabled by default) | -| redis.resources.limits.memory | string | `"2Gi"` | | -| redis.resources.requests.memory | string | `"2Gi"` | | | replicaCount | int | `1` | Number of dial-core replicas to deploy | | resources | object | `{}` | dial-core resource requests and limits ref: http://kubernetes.io/docs/user-guide/compute-resources/ | | schedulerName | string | `""` | Name of the k8s scheduler (other than default) for dial-core pods ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ | diff --git a/charts/dial-core/values.yaml b/charts/dial-core/values.yaml index 010622e..03b40e5 100644 --- a/charts/dial-core/values.yaml +++ b/charts/dial-core/values.yaml @@ -506,12 +506,12 @@ logger: redis: enabled: true - resources: - requests: - memory: 2Gi - limits: - memory: 2Gi redis: + resources: + requests: + memory: 2Gi + limits: + memory: 2Gi # -- Whether to use AOF Persistence mode or not. We keep only RDB persistence (enabled by default) useAOFPersistence: "no" configmap: |-