From 61be1e4aaf83ce57e977c29a29b0f00148b03f87 Mon Sep 17 00:00:00 2001 From: Dean Roehrich Date: Thu, 2 May 2024 09:57:14 -0500 Subject: [PATCH 1/5] Describe how to release the doc repo. (#157) Signed-off-by: Dean Roehrich Co-authored-by: Blake Devcich <89158881+bdevcich@users.noreply.github.com> --- docs/repo-guides/release-nnf-sw/readme.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/repo-guides/release-nnf-sw/readme.md b/docs/repo-guides/release-nnf-sw/readme.md index 71269af..44d3665 100644 --- a/docs/repo-guides/release-nnf-sw/readme.md +++ b/docs/repo-guides/release-nnf-sw/readme.md @@ -183,7 +183,16 @@ that everything is current on `master` for `nnf-deploy`. 12. Follow steps 6-7 from the previous section to finalize the release of `nnf-deploy`. -**Please review documenation for changes you may have made** +## Release `NearNodeFlash.github.io` + +**Please review and update the documentation for changes you may have made.** + +After nnf-deploy has a release tag, you may release the documentation. Use the same steps found above in "Release Each Component". Note that the default branch for this repo is "main" instead of "master". + +Give this release a tag that matches the nnf-deploy release, to show that they go together. Create the release by using the "Create release" or "Draft a new release" button in the GUI, or by using the `gh release create` CLI command. Whether using the GUI or the CLI, mark the release as "latest" and select the appropriate option to generate release notes. + +Wait for the `mike` tool in `.github/workflow/release.yaml` to finish building the new doc. You can check its status by going to the `gh-pages` branch in the repo. When you visit the release at [https://nearnodeflash.github.io](https://nearnodeflash.github.io), you should see the new release in the drop-down menu and the new release should be the default display. + **The software is now released!** ## Clone a release From a6db505271c8dd924841c1efafa006e0bc5ac6b7 Mon Sep 17 00:00:00 2001 From: Anthony Floeder Date: Mon, 20 May 2024 11:52:46 -0500 Subject: [PATCH 2/5] Update Drain link on the User Guides page, and update submodule Signed-off-by: Anthony Floeder --- docs/guides/index.md | 2 +- external/nnf-dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/index.md b/docs/guides/index.md index 1c7c3b4..edd9a36 100644 --- a/docs/guides/index.md +++ b/docs/guides/index.md @@ -22,4 +22,4 @@ ## Node Management -* [Draining A Node] (node-management/drain.md) +* [Draining A Node](node-management/drain.md) diff --git a/external/nnf-dm b/external/nnf-dm index 8fe079a..8928a1d 160000 --- a/external/nnf-dm +++ b/external/nnf-dm @@ -1 +1 @@ -Subproject commit 8fe079a1a3bf23973fd24a5a185abdc4e295cd64 +Subproject commit 8928a1d352d1f83d9a2ad92cc0a43a5088aa9150 From fea1ef1e148899a0c8e1ba07cd948a221779a7ef Mon Sep 17 00:00:00 2001 From: Blake Devcich Date: Mon, 10 Jun 2024 09:11:35 -0500 Subject: [PATCH 3/5] Update nnf-dm submodule Signed-off-by: Blake Devcich --- external/nnf-dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/nnf-dm b/external/nnf-dm index 8928a1d..612bd95 160000 --- a/external/nnf-dm +++ b/external/nnf-dm @@ -1 +1 @@ -Subproject commit 8928a1d352d1f83d9a2ad92cc0a43a5088aa9150 +Subproject commit 612bd95bb4c1b9533d256065e5beb1146dbb381a From 5ee1001d4e38d80acc69df71745988baac2f1c35 Mon Sep 17 00:00:00 2001 From: Dean Roehrich Date: Fri, 14 Jun 2024 10:40:58 -0500 Subject: [PATCH 4/5] Update submodules (#166) Signed-off-by: Dean Roehrich --- external/nnf-dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/nnf-dm b/external/nnf-dm index 612bd95..e0c318c 160000 --- a/external/nnf-dm +++ b/external/nnf-dm @@ -1 +1 @@ -Subproject commit 612bd95bb4c1b9533d256065e5beb1146dbb381a +Subproject commit e0c318ca1d61325da1d6677a55de432043a8c1e8 From d3b2792595befe73a5474db6cc2e7df32eacb660 Mon Sep 17 00:00:00 2001 From: James Corbett Date: Fri, 14 Jun 2024 15:00:01 -0700 Subject: [PATCH 5/5] rbac: fix typo in guide Problem: there is a typo in the example ClusterRoleBinding given in the RBAC guide, so it cannot be used as provided. Fix the typo. --- docs/guides/rbac-for-users/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/rbac-for-users/readme.md b/docs/guides/rbac-for-users/readme.md index 10c91af..280aeb8 100644 --- a/docs/guides/rbac-for-users/readme.md +++ b/docs/guides/rbac-for-users/readme.md @@ -147,7 +147,7 @@ subjects: apiGroup: rbac.authorization.k8s.io roleRef: kind: ClusterRole - name: workload-manager + name: dws-workload-manager apiGroup: rbac.authorization.k8s.io ```