Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Nomad 1.8 release notes #22104

Merged
merged 18 commits into from
May 28, 2024
12 changes: 12 additions & 0 deletions website/content/docs/release-notes/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
layout: docs
page_title: Release Notes
description: |-
Release notes for the major software packages for Nomad
---

# Release Notes

Choose a version from the navigation sidebar to view the release notes for Nomad.

Documentation for maintenance releases (e.g., 0.1.x) is on the bottom of each release notes page.
39 changes: 39 additions & 0 deletions website/content/docs/release-notes/nomad/v1_8_x.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
layout: docs
page_title: 1.8.x
description: >-
Nomad release notes for version 1.8.x
---

# Nomad 1.8.0

We are pleased to announce the following Nomad updates.

## Release highlights

- **Long Term Support Release (Enterprise):** Nomad 1.8.0 now introduces a long term supported release which provides extended maintenance (two years of critical fixes provided through minor releases and efficient upgrades (support for direct upgrades from one LTS release to the next).
david-yu marked this conversation as resolved.
Show resolved Hide resolved

- **Exec2 Task Driver (beta):** The `exec2` driver is used to execute a command for a task. It offers a security model optimized for running 'ordinary' processes with very low startup times and minimal overhead in terms of CPU, disk, and memory utilization. The `exec2` driver leverages kernel features such as the Landlock LSM, cgroups v2, and the unshare system utility. Due these enhancements, tasks no longer require leveraging filesystem isolation based on chroot, which provide an enhanced security profile and improved performance for the Nomad operator. Refer to [Exec2 Task Driver](/nomad/plugins/v1.8.x/drivers/exec2) for more details.



## What's deprecated

- **LXC Task driver:** The [Community LXC Task Driver](/nomad/plugins/drivers/community/lxc) is now deprecated and will be removed in Nomad 1.9. Users are encouraged to migrate their workloads to another task driver such as the built-in Docker task driver[/nomad/docs/drivers/docker].
- **ECS Task driver:** The remote [ECS Task Driver](https://developer.hashicorp.com/nomad/plugins/drivers/remote/ecs) is now deprecated and will be removed in Nomad 1.9. Users are encouraged to migrate their workloads to Amazon ECS or to another Nomad task driver.
tgross marked this conversation as resolved.
Show resolved Hide resolved

## Upgrading

For more detailed information, please refer to the [upgrade details page](/nomad/docs/upgrade/upgrade-specific) and the changelogs.
tgross marked this conversation as resolved.
Show resolved Hide resolved

## Known issues

The following issues are known to exist in the v1.8.x releases:

## Changelogs

The changelogs for this major release version and any maintenance versions are listed below.

<Note> These links take you to the changelogs on the GitHub website. </Note>

- [1.8.0](https://github.com/hashicorp/nomad/releases/tag/v1.8.0)
21 changes: 21 additions & 0 deletions website/data/docs-nav-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -1215,6 +1215,27 @@
{
"divider": true
},
{
"title": "Release Notes",
"routes": [
{
"title": "Overview",
"path": "release-notes"
},
{
"title": "Nomad",
"routes": [
{
"title": "v1.8.x",
"path": "release-notes/nomad/v1_8_x"
}
]
}
]
},
{
"divider": true
},
tgross marked this conversation as resolved.
Show resolved Hide resolved
{
"title": "Job Specification",
"routes": [
Expand Down
Loading