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

fixes rmb chart to use the correct redis #173

Merged
merged 1 commit into from
Oct 26, 2023
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
3 changes: 2 additions & 1 deletion charts/rmb-relay/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ spec:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
command: ["/usr/sbin/rmb-relay","--domain", "{{.Values.config.RMB_DOMAIN}}", "-r", "redis://redis:6379", "-s", "{{.Values.config.SUBSTRATE_URL}}", "-u", "{{.Values.config.USER_PER_WORKER}}", "-w", "{{.Values.config.WORKERS}}", "-l", "0.0.0.0:80" ]
command: ["/usr/sbin/rmb-relay","--domain", "{{.Values.config.RMB_DOMAIN}}", "-r", "redis://:{{.Values.global.redis.password}}@{{ .Release.Name }}-redis-master:6379", "-s", "{{.Values.config.SUBSTRATE_URL}}", "-u", "{{.Values.config.USER_PER_WORKER
}}", "-w", "{{.Values.config.WORKERS}}", "-l", "0.0.0.0:80" ]
ports:
- name: http
containerPort: 80
Expand Down
2 changes: 2 additions & 0 deletions charts/rmb-relay/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ service:
port: 80

global:
redis:
password: redis-password
ingress:
certresolver: le
storageClass: rook-cephfs
Expand Down
Loading