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

fix(PL-2554): fix key path variable name #15

Merged
merged 1 commit into from
Mar 22, 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 chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ spec:
{{- end -}}
{{- end }}
{{- if .Values.env.GH_APP_ID }}
- name: JOY_GITHUB_APP_PRIVATE_KEY_PATH
- name: GH_APP_PRIVATE_KEY_PATH
value: /etc/joy/config/githubApp.pem
{{- end }}
envFrom:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ spec:
value: "10s"
- name: PORT
value: ":8080"
- name: JOY_GITHUB_APP_PRIVATE_KEY_PATH
- name: GH_APP_PRIVATE_KEY_PATH
value: /etc/joy/config/githubApp.pem
envFrom:
- secretRef:
Expand Down
2 changes: 1 addition & 1 deletion chart/tests/with-github-app/expected.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ spec:
value: "10s"
- name: PORT
value: ":8080"
- name: JOY_GITHUB_APP_PRIVATE_KEY_PATH
- name: GH_APP_PRIVATE_KEY_PATH
value: /etc/joy/config/githubApp.pem
envFrom:
- secretRef:
Expand Down
Loading