Skip to content

Commit

Permalink
Disable Results API configuration DB SSL
Browse files Browse the repository at this point in the history
This does not change the existing state!
Till now, the Results API had DB_SSLMODE set to required, but that was
not supported by the code. There was no way to provide certificate, so
the connection to the DB was never encrypted. A recent change in Tekton
Results added that functionality and it makes the API pod fail to start
when certificate is not provided. We intend to enable that, but first we
need to fix the issue so the pod actually starts. Adding ceriticate and
enabling the TLS will be added as separate change.
  • Loading branch information
enarha authored and xinredhat committed Dec 21, 2023
1 parent 67335b7 commit ec0605c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ DB_PASSWORD=
DB_HOST=
DB_PORT=5432
DB_NAME=
DB_SSLMODE=require
DB_SSLMODE=disable
DB_SSLROOTCERT=
DB_ENABLE_AUTO_MIGRATION=true
SERVER_PORT=8080
PROMETHEUS_PORT=9090
Expand Down

0 comments on commit ec0605c

Please sign in to comment.