Skip to content

Commit

Permalink
Mark secrets as non-required
Browse files Browse the repository at this point in the history
  • Loading branch information
faridco committed Oct 14, 2024
1 parent 2748495 commit eb7b8fc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion aidbox/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ home: https://www.health-samurai.io/aidbox
icon: https://aidbox.github.io/helm-charts/icon.png?1712669999
name: aidbox
type: application
version: 0.1.14
version: 0.1.15
2 changes: 1 addition & 1 deletion aidbox/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[Aidbox](https://docs.aidbox.app/) is an efficient and scalable FHIR server built to handle healthcare data effectively, empowering healthcare providers and developers alike with its comprehensive platform for storing, accessing, and exchanging healthcare information in accordance with FHIR standards.

![Version: 0.1.14](https://img.shields.io/badge/Version-0.1.14-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: edge](https://img.shields.io/badge/AppVersion-edge-informational?style=flat-square)
![Version: 0.1.15](https://img.shields.io/badge/Version-0.1.15-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: edge](https://img.shields.io/badge/AppVersion-edge-informational?style=flat-square)

## Installation

Expand Down
14 changes: 7 additions & 7 deletions aidbox/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ metadata:
{{- include "aidbox.labels" . | nindent 4 }}
data:
{{- with .Values.config }}
AIDBOX_ADMIN_ID: {{ .AIDBOX_ADMIN_ID | b64enc }}
AIDBOX_ADMIN_PASSWORD: {{ .AIDBOX_ADMIN_PASSWORD | b64enc }}
AIDBOX_CLIENT_ID: {{ .AIDBOX_CLIENT_ID | b64enc }}
AIDBOX_CLIENT_SECRET: {{ .AIDBOX_CLIENT_SECRET | b64enc }}
{{ if .AIDBOX_ADMIN_ID }}AIDBOX_ADMIN_ID: {{ .AIDBOX_ADMIN_ID | b64enc }}{{ end }}
{{ if .AIDBOX_ADMIN_PASSWORD }}AIDBOX_ADMIN_PASSWORD: {{ .AIDBOX_ADMIN_PASSWORD | b64enc }}{{ end }}
{{ if .AIDBOX_CLIENT_ID }}AIDBOX_CLIENT_ID: {{ .AIDBOX_CLIENT_ID | b64enc }}{{ end }}
{{ if .AIDBOX_CLIENT_SECRET }}AIDBOX_CLIENT_SECRET: {{ .AIDBOX_CLIENT_SECRET | b64enc }}{{ end }}
{{ if .AIDBOX_CLUSTER_SECRET }}AIDBOX_CLUSTER_SECRET: {{ .AIDBOX_CLUSTER_SECRET | b64enc }}{{ end }}
{{ if .AIDBOX_SUPERUSER }}AIDBOX_SUPERUSER: {{ .AIDBOX_SUPERUSER | b64enc }}{{ end }}
{{ if .AIDBOX_ES_AUTH }}AIDBOX_ES_AUTH: {{ .AIDBOX_ES_AUTH | b64enc }}{{ end }}
AIDBOX_LICENSE: {{ .AIDBOX_LICENSE | b64enc }}
PGUSER: {{ .PGUSER | b64enc }}
PGPASSWORD: {{ .PGPASSWORD | b64enc }}
{{ if .AIDBOX_LICENSE }}AIDBOX_LICENSE: {{ .AIDBOX_LICENSE | b64enc }}{{ end }}
{{ if .PGUSER }}PGUSER: {{ .PGUSER | b64enc }}{{ end }}
{{ if .PGPASSWORD }}PGPASSWORD: {{ .PGPASSWORD | b64enc }}{{ end }}
{{- end }}

0 comments on commit eb7b8fc

Please sign in to comment.