Skip to content

Commit

Permalink
fix: default resources path for redis (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
nepalevov authored Oct 24, 2024
1 parent baee39e commit aedfbfe
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/dial-core/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions charts/dial-core/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -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/ |
Expand Down
10 changes: 5 additions & 5 deletions charts/dial-core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |-
Expand Down

0 comments on commit aedfbfe

Please sign in to comment.