From 634702f4a6ae0a15fafb1763b9b86743550aa1c0 Mon Sep 17 00:00:00 2001 From: iameskild Date: Fri, 27 Jan 2023 23:59:00 -0800 Subject: [PATCH 1/4] Add release notes for 2023.1.1 --- RELEASE.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/RELEASE.md b/RELEASE.md index 6113543a5..cbd14908e 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -13,6 +13,28 @@ This file is copied to nebari-dev/nebari-docs using a GitHub Action. --> ### Feature changes and enhancements +## Release 2023.1.1 - January 30, 2023 + +## What's Changed +* 🔄 Synced file(s) with nebari-dev/.github by @nebari-sensei in https://github.com/nebari-dev/nebari/pull/1588 +* Make conda-store file system read-only by default by @alimanfoo in https://github.com/nebari-dev/nebari/pull/1595 +* ENH - Switch to ruff and pre-commit.ci by @trallard in https://github.com/nebari-dev/nebari/pull/1602 +* Migrate to hatch by @iameskild in https://github.com/nebari-dev/nebari/pull/1545 +* Add check_repository_cred function to CLI by @iameskild in https://github.com/nebari-dev/nebari/pull/1605 +* Adding jupyterlab-conda-store extension support to Nebari by @costrouc in https://github.com/nebari-dev/nebari/pull/1564 +* [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in https://github.com/nebari-dev/nebari/pull/1613 +* Ensure Argo-Workflow controller containerRuntimeExecutor is set to emissary by @iameskild in https://github.com/nebari-dev/nebari/pull/1614 +* Pass `secret_name` to TF scripts when certificate type = existing by @iameskild in https://github.com/nebari-dev/nebari/pull/1621 +* Pin Nebari dependencies, set k8s version for GKE by @iameskild in https://github.com/nebari-dev/nebari/pull/1624 +* Create aws-force-destroy bash script by @iameskild in https://github.com/nebari-dev/nebari/pull/1611 +* Add option for AWS node-groups to run in a single subnet/AZ by @iameskild in https://github.com/nebari-dev/nebari/pull/1428 +* Add export-users to keycloak CLI command, add dev CLI command by @iameskild in https://github.com/nebari-dev/nebari/pull/1610 +* Unpin packages in default dashboard env by @iameskild in https://github.com/nebari-dev/pull/1628 + +## New Contributors +* @pre-commit-ci made their first contribution in https://github.com/nebari-dev/nebari/pull/1613 + + ## Release 2022.11.1 - December 1, 2022 ### What's Changed From ce1ab37e401bd65352330d7c82c5689cf57c1437 Mon Sep 17 00:00:00 2001 From: iameskild Date: Mon, 30 Jan 2023 17:11:37 -0800 Subject: [PATCH 2/4] Update release notes --- RELEASE.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RELEASE.md b/RELEASE.md index cbd14908e..b7558a71c 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -30,6 +30,8 @@ This file is copied to nebari-dev/nebari-docs using a GitHub Action. --> * Add option for AWS node-groups to run in a single subnet/AZ by @iameskild in https://github.com/nebari-dev/nebari/pull/1428 * Add export-users to keycloak CLI command, add dev CLI command by @iameskild in https://github.com/nebari-dev/nebari/pull/1610 * Unpin packages in default dashboard env by @iameskild in https://github.com/nebari-dev/pull/1628 +* Add release notes for 2023.1.1 by @iameskild in https://github.com/nebari-dev/nebari/pull/1629 +* Set GKE release_channel to unspecified to prevent auto k8s updates by @iameskild inhttps://github.com/nebari-dev/nebari/pull/1630 ## New Contributors * @pre-commit-ci made their first contribution in https://github.com/nebari-dev/nebari/pull/1613 From 0497faf75fa33b446f1894e3b0a1646b89a4d07e Mon Sep 17 00:00:00 2001 From: iameskild Date: Mon, 30 Jan 2023 17:13:21 -0800 Subject: [PATCH 3/4] Upgrade isort pre-commit version --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index cea8acc05..a1e761715 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -63,7 +63,7 @@ repos: args: ["--fix"] - repo: https://github.com/pycqa/isort - rev: 5.11.4 + rev: 5.12.0 hooks: - id: isort name: isort From 02316b72f42d8b66c24676b674f26866b9ae85c9 Mon Sep 17 00:00:00 2001 From: iameskild Date: Tue, 31 Jan 2023 09:20:10 -0800 Subject: [PATCH 4/4] Set AWS single_subnet = False as default --- nebari/initialize.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nebari/initialize.py b/nebari/initialize.py index 3b5028868..80411a87b 100644 --- a/nebari/initialize.py +++ b/nebari/initialize.py @@ -241,13 +241,13 @@ def __getattr__(name): "instance": "m5.xlarge", "min_nodes": 1, "max_nodes": 5, - "single_subnet": True, + "single_subnet": False, }, "worker": { "instance": "m5.xlarge", "min_nodes": 1, "max_nodes": 5, - "single_subnet": True, + "single_subnet": False, }, }, }