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
| codeInsightsDB.containerSecurityContext | object |`{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"runAsGroup":70,"runAsUser":70}`| Security context for the `codeinsights-db` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container)|
61
62
| codeInsightsDB.enabled | bool |`true`| Enable `codeinsights-db` PostgreSQL server |
@@ -77,6 +78,7 @@ In addition to the documented values, all services also support the following va
| codeIntelDB.containerSecurityContext | object |`{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"runAsGroup":999,"runAsUser":999}`| Security context for the `codeintel-db` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container)|
82
84
| codeIntelDB.enabled | bool |`true`| Enable `codeintel-db` PostgreSQL server |
@@ -219,6 +221,7 @@ In addition to the documented values, all services also support the following va
| pgsql.containerSecurityContext | object |`{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"runAsGroup":999,"runAsUser":999}`| Security context for the `pgsql` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container)|
224
227
| pgsql.enabled | bool |`true`| Enable `pgsql` PostgreSQL server |
Copy file name to clipboardExpand all lines: charts/sourcegraph/values.yaml
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -164,6 +164,8 @@ codeInsightsDB:
164
164
password: "password"
165
165
# -- Sets codeinsights-db port
166
166
port: "5432"
167
+
# -- Sets codeinsights-db SSL mode
168
+
sslmode: "disable"# set to "require" to enable SSL
167
169
# -- Environment variables for the `codeinsights-db` container
168
170
env: {}
169
171
# -- Name of existing ConfigMap for `codeinsights-db`. It must contain a `postgresql.conf` key.
@@ -237,6 +239,8 @@ codeIntelDB:
237
239
password: "password"
238
240
# -- Sets codeintel-db port
239
241
port: "5432"
242
+
# -- Sets codeintel-db SSL mode
243
+
sslmode: "disable"# set to "require" to enable SSL
240
244
# -- Name of existing ConfigMap for `codeintel-db`. It must contain a `postgresql.conf` key
241
245
existingConfig: ""
242
246
# -- Additional PostgreSQL configuration. This will override or extend our default configuration.
@@ -721,8 +725,10 @@ pgsql:
721
725
password: "password"
722
726
# -- Sets postgres port
723
727
port: "5432"
728
+
# -- Sets postgres SSL mode
729
+
sslmode: "disable"# set to "require" to enable SSL
724
730
# -- Name of existing ConfigMap for `pgsql`. It must contain a `postgresql.conf` key
725
-
existingConfig: ""# Name of an existing configmap
731
+
existingConfig: ""# Name of an existing configmap
726
732
# -- Additional PostgreSQL configuration. This will override or extend our default configuration.
727
733
# Notes: This is expecting a multiline string.
728
734
# Learn more from our [recommended PostgreSQL configuration](https://docs.sourcegraph.com/admin/config/postgres-conf) and [PostgreSQL documentation](https://www.postgresql.org/docs/12/config-setting.html)
0 commit comments