Skip to content

Commit

Permalink
Merge pull request #296 from briefercloud/fix-chart-pg-ssl
Browse files Browse the repository at this point in the history
fix default values of helm chart enforcing pg ssl
  • Loading branch information
vieiralucas authored Dec 13, 2024
2 parents ad8f5ce + 91efc1c commit e97ead2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 14 deletions.
4 changes: 2 additions & 2 deletions chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: briefer
description: The helm chart for Briefer's open-source version.
type: application
version: 0.1.7
appVersion: '0.1.7'
version: 0.1.8
appVersion: '0.1.8'
6 changes: 3 additions & 3 deletions chart/templates/api-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
- name: POSTGRES_DATABASE
value: '{{ .Values.api.env.postgresDatabase }}'
- name: POSTGRES_SSL_DISABLED
value: '{{ .Values.api.env.postgresSslDisabled | default "false" }}'
value: '{{ .Values.api.env.postgresSslDisabled }}'
- name: POSTGRES_SSL_REJECT_UNAUTHORIZED
value: '{{ .Values.api.env.postgresSslRejectUnauthorized }}'
- name: POSTGRES_SSL_CA
Expand Down Expand Up @@ -94,9 +94,9 @@ spec:
- name: FRONTEND_URL
value: '{{ .Values.api.env.frontendUrl }}'
- name: JUPYTER_HOST
value: 'briefer-jupyter-service'
value: '{{ .Values.api.env.jupyterHost | default "briefer-jupyter-service" }}'
- name: JUPYTER_PORT
value: '{{ .Values.api.env.jupyterPort }}'
value: '{{ .Values.api.env.jupyterPort | default "8888" }}'
- name: JUPYTER_TOKEN
valueFrom:
secretKeyRef:
Expand Down
11 changes: 2 additions & 9 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ai:
memory: 2Gi

env:
modelName: gpt-3.5-turbo
modelName: gpt-4o

secrets:
aiApiUsername: ai-basic-username
Expand Down Expand Up @@ -97,18 +97,11 @@ api:
frontendUrl: http://localhost:4000
apiUrl: http://localhost:8080
logLevel: info
jupyterRepository: docker.io
jupyterImage: briefer/enterprise/jupyter
jupyterTag: v566
jupyterPort: 8888
postgresHostname: postgres
postgresPort: 5432
postgresDatabase: briefer
aiApiUrl: http://ai:8080
allowHttp: 'false'
postgresSslDisabled: false
postgresSslRejectUnauthorized: false
postgresSslCa: ''

secrets:
postgresUsername: postgres
Expand Down Expand Up @@ -155,7 +148,7 @@ jupyter:
image:
repository: docker.io
name: briefercloud/briefer-jupyter
tag: v0.0.78
tag: v0.0.79
pullPolicy: Always

# tolerations:
Expand Down

0 comments on commit e97ead2

Please sign in to comment.