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
Copy file name to clipboardExpand all lines: charts/clickhouse/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -206,9 +206,9 @@ EOSQL
206
206
| clickhouse.shardsCount | int | `1` | number of shards. |
207
207
| clickhouse.users | list | `[]` | Configure additional ClickHouse users and per-user settings. |
208
208
| clickhouse.tls | object | | TLS certificate configuration for HTTPS/TLS connections. See [examples/values-tls.yaml](examples/values-tls.yaml) for a concrete example. |
209
-
| clickhouse.tls.enabled | bool | `false` | Enable TLS. When true, adds `https_port` and `tcp_port_secure` to ClickHouse settings and exposes secure ports on Service resources. Requires `clickhouse.extraPorts` to declare the corresponding container ports on the pod template. |
210
-
| clickhouse.tls.httpsPort | int | `8443` | HTTPS port for secure HTTP connections. |
211
-
| clickhouse.tls.secureTcpPort | int | `9440` | Secure native TCP port for encrypted client connections. |
209
+
| clickhouse.tls.enabled | bool | `false` | Enable TLS. When true, adds `https_port` and `tcp_port_secure` to ClickHouse settings and exposes secure ports on Service resources. |
210
+
| clickhouse.tls.httpsPort | int | `8443` | HTTPS port for secure HTTP connections. Will automatically be added to Service resources with the name `https` iff that name isn't already used in `clickhouse.extraPorts`. |
211
+
| clickhouse.tls.secureTcpPort | int | `9440` | Secure native TCP port for encrypted client connections. Will automatically be added to Service resources with the name `tcp-secure` iff that name isn't already used in `clickhouse.extraPorts`. |
212
212
| clickhouse.tls.certificateFile | object | | Server X509 certificate file. Requires `configFileName` and exactly one of `inlineFileContent` or `secretReference`. |
213
213
| clickhouse.tls.certificateFile.configFileName | string | | Part of the destination filepath within the ClickHouse pod. Inline content is placed under `config.d/`; secret reference is placed under `secrets.d/`. See [here](https://github.com/Altinity/clickhouse-operator/blob/release-0.25.6/docs/security_hardening.md?plain=1#L428-L429) for the exact filepath format. |
214
214
| clickhouse.tls.certificateFile.inlineFileContent | string | | Certificate content embedded directly in the CHI spec. Mutually exclusive with `secretReference`. |
0 commit comments