Skip to content

Commit

Permalink
Change global variable to vaultSecretsPath
Browse files Browse the repository at this point in the history
This matches the global variable set by the Application template.
  • Loading branch information
jonathansick committed Jan 17, 2024
1 parent 37a9115 commit ffe47a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion applications/jira-data-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Jira API read-only proxy for Times Square users.
| config.logLevel | string | `"info"` | Logging level |
| global.baseUrl | string | Set by Argo CD | Base URL for the environment |
| global.host | string | Set by Argo CD | Host name for ingress |
| global.vaultSecretsPathPrefix | string | Set by Argo CD | Base path for Vault secrets |
| global.vaultSecretsPath | string | Set by Argo CD | Base path for Vault secrets |
| image.pullPolicy | string | `"IfNotPresent"` | Pull policy for the jira-data-proxy image |
| image.repository | string | `"ghcr.io/lsst-sqre/jira-data-proxy"` | Image to use in the jira-data-proxy deployment |
| image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. |
Expand Down
2 changes: 1 addition & 1 deletion applications/jira-data-proxy/templates/vault-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ metadata:
labels:
{{- include "jira-data-proxy.labels" . | nindent 4 }}
spec:
path: "{{ .Values.global.vaultSecretsPathPrefix }}/jira-data-proxy"
path: "{{ .Values.global.vaultSecretsPath }}/jira-data-proxy"
type: Opaque
2 changes: 1 addition & 1 deletion applications/jira-data-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ global:

# -- Base path for Vault secrets
# @default -- Set by Argo CD
vaultSecretsPathPrefix: ""
vaultSecretsPath: ""

0 comments on commit ffe47a9

Please sign in to comment.