Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-43551: Set redis save configuration to none in love-manager as no persistence is needed. #355

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/love-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Helm chart for the LOVE manager service.
| manager.producers_ports.node | int | `30000` | The port on the node for normal communcations |
| namespace | string | `"love"` | The overall namespace for the application |
| redis.affinity | object | `{}` | Affinity rules for the LOVE redis pods |
| redis.config | string | `"timeout 60\n"` | Configuration specification for the redis service |
| redis.config | string | `"timeout 60\nsave \"\"\n"` | Configuration specification for the redis service |
| redis.envSecrets.REDIS_PASS | string | `"redis-pass"` | The redis password secret key name |
| redis.image.pullPolicy | string | `"IfNotPresent"` | The pull policy for the redis image |
| redis.image.repository | string | `"redis"` | The redis image to use |
Expand Down
1 change: 1 addition & 0 deletions apps/love-manager/values-base-teststand.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ redis:
pullPolicy: IfNotPresent
config: |
timeout 60
save ""
viewBackup:
enabled: true
image:
Expand Down
1 change: 1 addition & 0 deletions apps/love-manager/values-summit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ redis:
pullPolicy: IfNotPresent
config: |
timeout 60
save ""
viewBackup:
enabled: true
image:
Expand Down
1 change: 1 addition & 0 deletions apps/love-manager/values-tucson-teststand.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ redis:
pullPolicy: IfNotPresent
config: |
timeout 60
save ""
viewBackup:
enabled: true
image:
Expand Down
1 change: 1 addition & 0 deletions apps/love-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ redis:
# -- Configuration specification for the redis service
config: |
timeout 60
save ""
viewBackup:
# -- Whether view backup is active
enabled: false
Expand Down
Loading