Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions packages/doltlab/content/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
- [Configuration file reference](reference/installer/configuration-file.md)
- [Command line reference](reference/installer/cli.md)
- [Release Notes](reference/release-notes/README.md)
- [v2.4.2](reference/release-notes/v2.4.2.md)
- [v2.4.1](reference/release-notes/v2.4.1.md)
- [v2.4.0](reference/release-notes/v2.4.0.md)
- [v2.3.14](reference/release-notes/v2.3.14.md)
Expand Down
8 changes: 7 additions & 1 deletion packages/doltlab/content/reference/installer/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -643,10 +643,16 @@ Configuration file equivalent [super_admins](./configuration-file.md#super_admin

## tls-cert-chain

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

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

## tls-full-chain-cert

_String_. Absolute path to a TLS full chain certificate with `.pem` extension. DoltLab Enterprise only.

Configuration file equivalent [full_chain_cert](./configuration-file.md#full_chain_cert).

## tls-private-key

_String_. Absolute path to TLS private key with `.pem` extension. DoltLab Enterprise only.
Expand Down
21 changes: 18 additions & 3 deletions packages/doltlab/content/reference/installer/configuration-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ enterprise:
no_multihost_default_placement_preferences_spreads: false
scheme: "http"
tls:
cert_chain: "/path/to/cert.pem"
cert_chain: "/path/to/cert.pem" # Deprecated: use `full_chain_cert` instead.
full_chain_cert: "/path/to/cert.pem"
private_key: "/path/to/key.pem"
smtp:
host: "smtp.email.com"
Expand Down Expand Up @@ -1305,12 +1306,13 @@ Command line equivalent [scheme](./cli.md#scheme).

_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.

- [cert_chain](#cert_chain)
- [cert_chain](#cert_chain) Deprecated, use `full_chain_cert` instead.
- [full_chain_cert](#full_chain_cert)
- [private_key](#private_key)

### cert_chain

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

```yaml
# example installer_config.yaml
Expand All @@ -1321,6 +1323,19 @@ enterprise:

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

### full_chain_cert

_String_. The absolute path to a TLS full chain certificate with `.pem` extension. _Required_.

```yaml
# example installer_config.yaml
enterprise:
tls:
full_chain_cert: /path/to/tls/cert/chain.pem
```

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

### private_key

_String_. The absolute path to a TLS private key with `.pem` extension. _Required_.
Expand Down
1 change: 1 addition & 0 deletions packages/doltlab/content/reference/release-notes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ DoltLab is currently closed-source, but the [dolthub/doltlab-issues](https://git

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.

- [DoltLab v2.4.2](./v2.4.2.md)
- [DoltLab v2.4.1](./v2.4.1.md)
- [DoltLab v2.4.0](./v2.4.0.md)
- [DoltLab v2.3.14](./v2.3.14.md)
Expand Down
17 changes: 17 additions & 0 deletions packages/doltlab/content/reference/release-notes/v2.4.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: DoltLab v2.4.2 Release Notes
---

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)

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)

## DoltLab Features/Bug Fixes
* [Fixes issue](https://github.com/dolthub/doltlab-issues/issues/129) where host TLS cert bundle was not mounted to `doltlabapi` container.
* [Fixes long retry time](https://github.com/dolthub/doltlab-issues/issues/134) for failed OIDC provider connections.
* [Deprecates `cert_chain` field in favor of `full_chain_cert` TLS field in `installer_config.yaml`](https://github.com/dolthub/doltlab-issues/issues/127).
* Bump version of Dolt in Jobs to v1.59.5.

## DoltHub Features/Bug Fixes
* Misc. UI design changes and bug fixes.