Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

added warnings for the external database #86

Merged
merged 1 commit into from
Jan 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions charts/allure-testops/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,13 +186,18 @@ rabbitmq:
vhost: "/"

postgresql:
# If enabled ('true'), then Helm chart will deploy PostgreSQL database as part of the deployment
# If set to 'false' the deployment will use dedicated PostgreSQL database server deployed in your infrastructure
# If enabled (postgresql.enabled = true), then Helm chart will deploy PostgreSQL database as part of the deployment
# which can be used for demo purposes only not as a production system.
### WARNING ###
### Please do not, set to 'true' for a system in production!!!!!!!!!! ###
### Production system with postgresql.enabled = true cannot be supported ###
# If set to postgresql.enabled = false, the deployment will expect dedicated PostgreSQL database server deployed in your infrastructure
enabled: false
connectionTimeout: 60000
auth:
username: allure
password: allure
# addresses and credentials of the dedicated databases (deployed separately)
external:
uaaHost: db.example.com
uaaPort: 5432
Expand Down
Loading