You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
📚 Sync docs from alaudadevops/tektoncd-operator on 492bbb1fd55693fb66ed67ae872219ba134a4f25
Source: fix(docs): correct secret name field in documentation (#225)
Author: l-qing
Ref: refs/heads/release-4.1
Commit: 492bbb1fd55693fb66ed67ae872219ba134a4f25
This commit automatically syncs documentation changes from the source-docs repository.
🔗 View source commit: AlaudaDevops/tektoncd-operator@492bbb1
🤖 Synced on 2025-07-16 04:16:28 UTC
Copy file name to clipboardExpand all lines: docs/en/results/configure/database_configuration.mdx
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ Tekton Results supports using external PostgreSQL databases. The configuration i
58
58
|`db_name`| Database name |`tekton-results`| Yes |
59
59
|`db_sslmode`| SSL connection mode |`disable`| No |
60
60
|`db_sslrootcert`| SSL root certificate path | Empty | No (required when using SSL) |
61
-
|`db_secret_name`| Secret name for database credentials | Empty | Yes |
61
+
|`secret_name`| Secret name for database credentials | Empty | Yes |
62
62
63
63
> The valid options for `db_sslmode` are explained here https://www.postgresql.org/docs/current/libpq-ssl.html#LIBPQ-SSL-PROTECTION.
64
64
@@ -109,9 +109,13 @@ spec:
109
109
db_host: your-postgres-host.example.com
110
110
db_port: 5432
111
111
db_name: tekton_results
112
-
db_secret_name: tekton-results-postgres
112
+
secret_name: tekton-results-postgres
113
113
```
114
114
115
+
:::tip
116
+
This document only lists the database-related configuration fields. For the complete list of fields, please refer to [Quick Start](../quick_start.mdx#installing-using-operator-crd).
0 commit comments