Skip to content

Commit

Permalink
fix: Update redis config env (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
Natoandro authored Aug 2, 2024
1 parent b59d151 commit fb5663d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr-title-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: thehanimo/pr-title-checker@v1.4.2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions charts/typegate/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ spec:
{{- toYaml . | nindent 12 }}
{{- end }}
env:
- name: SYNC_REDIS_URL
value: redis://{{ printf "%s-master" (include "common.names.fullname" .Subcharts.redis) }}:{{ .Subcharts.redis.Values.master.service.ports.redis }}/0
- name: SYNC_REDIS_PASSWORD
valueFrom:
secretKeyRef:
name: {{ template "redis.secretName" .Subcharts.redis }}
key: {{ template "redis.secretPasswordKey" .Subcharts.redis }}
- name: SYNC_REDIS_URL
value: redis://:$(SYNC_REDIS_PASSWORD)@{{ printf "%s-master" (include "common.names.fullname" .Subcharts.redis) }}:{{ .Subcharts.redis.Values.master.service.ports.redis }}/0
- name: TG_SECRET
valueFrom:
secretKeyRef:
Expand Down

0 comments on commit fb5663d

Please sign in to comment.