Skip to content

Commit

Permalink
Lint fixes (#468)
Browse files Browse the repository at this point in the history
Signed-off-by: Stavros Foteinopoulos <[email protected]>
  • Loading branch information
stafot authored Sep 4, 2024
1 parent 1ec52b4 commit 313f6b8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/mattermost-push-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
description: Mattermost Push Proxy server
name: mattermost-push-proxy
type: application
version: 0.12.1
version: 0.12.2
appVersion: 6.1.0
keywords:
- mattermost
Expand Down
13 changes: 7 additions & 6 deletions charts/mattermost-push-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,21 +148,21 @@ spec:
- key: "apple_rnbeta_cert"
path: "apple-rnbeta-push-cert.pem"
{{- end }}
{{- if .Values.androidPushSettings.android serviceFile }}
{{- if .Values.androidPushSettings.android_serviceFile }}
- name: "android-service-file"
secret:
secretName: {{ include "mattermost-push-proxy.fullname" . }}-android-service-files
items:
- key: "android_serviceFile"
path: {{ .Values.androidPushSettings.android serviceFileName }}
path: {{ .Values.androidPushSettings.android_serviceFileName }}
{{- end }}
{{- if .Values.androidPushSettings.android_rn serviceFile }}
{{- if .Values.androidPushSettings.android_rn_serviceFile }}
- name: "android-rn-service-file"
secret:
secretName: {{ include "mattermost-push-proxy.fullname" . }}-android-service-files
items:
- key: "android_rn serviceFile"
path: {{ .Values.androidPushSettings.android_rn serviceFileName }}
- key: "android_rn_serviceFile"
path: {{ .Values.androidPushSettings.android_rn_serviceFileName }}
{{- end }}
{{- else }}
- name: "common-secret"
Expand All @@ -179,5 +179,6 @@ spec:
path: "apple-rnbeta-push-cert.pem"
- key: "android_serviceFile"
path: "android-service-file"
- key: "android_rn serviceFile"
- key: "android_rn_serviceFile"
path: "android-rn-service-file"
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ spec:
{{- with .Values.externalSecrets.data }}
{{- toYaml $.Values.externalSecrets.data | nindent 2 }}
{{- end }}
{{- end }}

0 comments on commit 313f6b8

Please sign in to comment.