Skip to content

Commit 97f0e74

Browse files
authored
Merge pull request #2655 from dolthub/db/doltlab-v2.4.2
/packages/doltlab/content/reference/installer: update docs for deprec…
2 parents 77eea59 + 4c97d9e commit 97f0e74

File tree

5 files changed

+44
-4
lines changed

5 files changed

+44
-4
lines changed

packages/doltlab/content/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
- [Configuration file reference](reference/installer/configuration-file.md)
3636
- [Command line reference](reference/installer/cli.md)
3737
- [Release Notes](reference/release-notes/README.md)
38+
- [v2.4.2](reference/release-notes/v2.4.2.md)
3839
- [v2.4.1](reference/release-notes/v2.4.1.md)
3940
- [v2.4.0](reference/release-notes/v2.4.0.md)
4041
- [v2.3.14](reference/release-notes/v2.3.14.md)

packages/doltlab/content/reference/installer/cli.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,10 +643,16 @@ Configuration file equivalent [super_admins](./configuration-file.md#super_admin
643643

644644
## tls-cert-chain
645645

646-
_String_. Absolute path to TLS certificate chain with `.pem` extension. DoltLab Enterprise only.
646+
_String_. Deprecated, use `tls-full-chain-cert` instead. Absolute path to a TLS full chain certificate with `.pem` extension. DoltLab Enterprise only.
647647

648648
Configuration file equivalent [cert_chain](./configuration-file.md#cert_chain).
649649

650+
## tls-full-chain-cert
651+
652+
_String_. Absolute path to a TLS full chain certificate with `.pem` extension. DoltLab Enterprise only.
653+
654+
Configuration file equivalent [full_chain_cert](./configuration-file.md#full_chain_cert).
655+
650656
## tls-private-key
651657

652658
_String_. Absolute path to TLS private key with `.pem` extension. DoltLab Enterprise only.

packages/doltlab/content/reference/installer/configuration-file.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ enterprise:
117117
no_multihost_default_placement_preferences_spreads: false
118118
scheme: "http"
119119
tls:
120-
cert_chain: "/path/to/cert.pem"
120+
cert_chain: "/path/to/cert.pem" # Deprecated: use `full_chain_cert` instead.
121+
full_chain_cert: "/path/to/cert.pem"
121122
private_key: "/path/to/key.pem"
122123
smtp:
123124
host: "smtp.email.com"
@@ -1305,12 +1306,13 @@ Command line equivalent [scheme](./cli.md#scheme).
13051306

13061307
_Dictionary_. TLS configuration options. DoltLab Enterprise only. _Optional_. See [serving DoltLab natively over HTTPS](../../guides/enterprise.md#serve-doltlab-over-https-natively) for more information.
13071308

1308-
- [cert_chain](#cert_chain)
1309+
- [cert_chain](#cert_chain) Deprecated, use `full_chain_cert` instead.
1310+
- [full_chain_cert](#full_chain_cert)
13091311
- [private_key](#private_key)
13101312

13111313
### cert_chain
13121314

1313-
_String_. The absolute path to a TLS certificate chain with `.pem` extension. _Required_.
1315+
_String_. Deprecated, use `full_chain_cert` instead. The absolute path to a TLS full chain certificate with `.pem` extension. _Required_.
13141316

13151317
```yaml
13161318
# example installer_config.yaml
@@ -1321,6 +1323,19 @@ enterprise:
13211323

13221324
Command line equivalent [tls-cert-chain](./cli.md#tls-cert-chain).
13231325

1326+
### full_chain_cert
1327+
1328+
_String_. The absolute path to a TLS full chain certificate with `.pem` extension. _Required_.
1329+
1330+
```yaml
1331+
# example installer_config.yaml
1332+
enterprise:
1333+
tls:
1334+
full_chain_cert: /path/to/tls/cert/chain.pem
1335+
```
1336+
1337+
Command line equivalent [tls-full-chain-cert](./cli.md#tls-full-chain-cert).
1338+
13241339
### private_key
13251340

13261341
_String_. The absolute path to a TLS private key with `.pem` extension. _Required_.

packages/doltlab/content/reference/release-notes/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ DoltLab is currently closed-source, but the [dolthub/doltlab-issues](https://git
66

77
The following is a list of release notes for available DoltLab versions >= `v2.0.0`. DoltLab and DoltHub share the same source code. For this reason, we list fixes related to DoltLab issues in the `DoltLab Features/Bug Fixes` section of the release notes, and fixes corresponding to DoltHub issuers in the `DoltLab Features/Bug Fixes` section.
88

9+
- [DoltLab v2.4.2](./v2.4.2.md)
910
- [DoltLab v2.4.1](./v2.4.1.md)
1011
- [DoltLab v2.4.0](./v2.4.0.md)
1112
- [DoltLab v2.3.14](./v2.3.14.md)
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: DoltLab v2.4.2 Release Notes
3+
---
4+
5+
Download at [https://doltlab-releases.s3.us-east-1.amazonaws.com/linux/amd64/doltlab-v2.4.2.zip](https://doltlab-releases.s3.us-east-1.amazonaws.com/linux/amd64/doltlab-v2.4.2.zip)
6+
7+
Service images can be downloaded at [https://doltlab-releases.s3.us-east-1.amazonaws.com/linux/amd64/doltlab-service-images-v2.4.2.zip](https://doltlab-releases.s3.us-east-1.amazonaws.com/linux/amd64/doltlab-service-images-v2.4.2.zip)
8+
9+
## DoltLab Features/Bug Fixes
10+
* [Fixes issue](https://github.com/dolthub/doltlab-issues/issues/129) where host TLS cert bundle was not mounted to `doltlabapi` container.
11+
* [Fixes long retry time](https://github.com/dolthub/doltlab-issues/issues/134) for failed OIDC provider connections.
12+
* [Deprecates `cert_chain` field in favor of `full_chain_cert` TLS field in `installer_config.yaml`](https://github.com/dolthub/doltlab-issues/issues/127).
13+
* Bump version of Dolt in Jobs to v1.59.5.
14+
15+
## DoltHub Features/Bug Fixes
16+
* Misc. UI design changes and bug fixes.
17+

0 commit comments

Comments
 (0)