Skip to content

Commit

Permalink
Make ingress default path configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
faridco committed Jul 31, 2024
1 parent d5d21db commit 06b6ba8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 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.11
version: 0.1.12
3 changes: 2 additions & 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.11](https://img.shields.io/badge/Version-0.1.11-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.12](https://img.shields.io/badge/Version-0.1.12-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 Expand Up @@ -54,6 +54,7 @@ It will install the Aidbox in the `aidbox` namespace, creating that namespace if
| image.tag | string | `""` | |
| ingress.annotations | object | `{}` | |
| ingress.className | string | `"nginx"` | |
| ingress.defaultPath | string | `"/"` | |
| ingress.enabled | bool | `true` | |
| livenessProbe.failureThreshold | int | `10` | |
| livenessProbe.httpGet.path | string | `"/health"` | |
Expand Down
2 changes: 1 addition & 1 deletion aidbox/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
- host: {{ .Values.host | quote }}
http:
paths:
- path: /
- path: {{ .Values.ingress.defaultPath | default "/" | quote }}
pathType: {{ .Values.ingress.pathType | default "ImplementationSpecific" | quote }}
backend:
service:
Expand Down
1 change: 1 addition & 0 deletions aidbox/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ ingress:
className: "nginx"
annotations: {}
# cert-manager.io/cluster-issuer: letsencrypt
defaultPath: "/"

livenessProbe:
httpGet:
Expand Down

0 comments on commit 06b6ba8

Please sign in to comment.