Skip to content

Commit

Permalink
FIX alchemy redis cronjob used wrong redis host
Browse files Browse the repository at this point in the history
The redis host was using chart name when it should've been template
name. Realized it wouldn't work when checking the real deployment.
  • Loading branch information
ionparticle committed Feb 17, 2022
1 parent f97b6e6 commit a4fc590
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion alchemy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ keywords:
- alchemy
- education
name: alchemy
version: 0.3.5
version: 0.3.6
appVersion: 1.1
maintainers:
- name: Andrew Gardener
Expand Down
2 changes: 1 addition & 1 deletion alchemy/templates/redis-cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ spec:
command:
- redis-cli
- -h
- {{ .Chart.Name }}-redis
- {{ template "fullname" . }}-redis
- BGREWRITEAOF
restartPolicy: OnFailure

0 comments on commit a4fc590

Please sign in to comment.