From c85da78c14fd06659e96999f6163637a53ce2297 Mon Sep 17 00:00:00 2001 From: MoShitrit Date: Thu, 17 Dec 2020 17:17:35 -0500 Subject: [PATCH 1/4] First pass at adding Contributing section to the docs --- docs/{welcome => contributing}/contributing.md | 0 docs/{development => contributing}/homebrew.md | 0 .../new_kubernetes_version.md | 0 docs/{development => contributing}/release.md | 0 docs/contributing/update_ami_versions.md | 16 ++++++++++++++++ mkdocs.yml | 10 ++++++---- 6 files changed, 22 insertions(+), 4 deletions(-) rename docs/{welcome => contributing}/contributing.md (100%) rename docs/{development => contributing}/homebrew.md (100%) rename docs/{development => contributing}/new_kubernetes_version.md (100%) rename docs/{development => contributing}/release.md (100%) create mode 100644 docs/contributing/update_ami_versions.md diff --git a/docs/welcome/contributing.md b/docs/contributing/contributing.md similarity index 100% rename from docs/welcome/contributing.md rename to docs/contributing/contributing.md diff --git a/docs/development/homebrew.md b/docs/contributing/homebrew.md similarity index 100% rename from docs/development/homebrew.md rename to docs/contributing/homebrew.md diff --git a/docs/development/new_kubernetes_version.md b/docs/contributing/new_kubernetes_version.md similarity index 100% rename from docs/development/new_kubernetes_version.md rename to docs/contributing/new_kubernetes_version.md diff --git a/docs/development/release.md b/docs/contributing/release.md similarity index 100% rename from docs/development/release.md rename to docs/contributing/release.md diff --git a/docs/contributing/update_ami_versions.md b/docs/contributing/update_ami_versions.md new file mode 100644 index 0000000000..8317ccb452 --- /dev/null +++ b/docs/contributing/update_ami_versions.md @@ -0,0 +1,16 @@ +# Updating The Default Base AMI + +With the release of `kOps 1.18`, the base AMI was switched over from a pre-baked `kOps` AMI to the official Ubuntu 20.04 LTS image. +This makes the image update process easier, because kOps contributors no longer have to fully build an test a full AMI, but rather base off of the latest stable Ubuntu image. +In order to make sure we're up to date with the latest releases, we regularly follow the official [Ubuntu EC2 AMI Locator](https://cloud-images.ubuntu.com/locator/ec2/) website and update to the latest version of `focal` which is available across **all AWS regions**, including `gov` and `cn`, for full support. + +The process of updating the AMI version is as following: + +- Find the most recent release on the official [Ubuntu EC2 AMI Locator](https://cloud-images.ubuntu.com/locator/ec2/). Make sure it's available across all regions. The ones with the slowest release cycle are usually `gov`, `ap` and `cn` ones, so the best option would usually be to take the most recent release from one of these regions. +- Replace the timestamp on this line in the `alpha` channel, where the `ubuntu` image is referred. [Example](https://github.com/kubernetes/kops/blob/25eb1c98225450bed82d38e52d150d7a69a2c95a/channels/alpha#L47). + + !!!note + Before updating `alpha` channel, check and see if `alpha` and `stable` channel are both running the same AMI version. If `stable` currently runs a different version, and more than 7-10 days passed since `alpha` was updated- it's safe to also push the version currently in `alpha`, to `stable` in the same PR. + e.g., let's say that the most recent available on Ubuntu image locator is `20201210`, `alpha` is currently using `20201101` and `stable` is currently using `20201015`. If `alpha` was updated at least 7-10 days prior to your desired change, you can update `stable` with the version that was listed in `alpha` **before** your change. Then- you may update `alpha` with the most recent version of Ubuntu. + +- Let the new AMI version bake-in in `alpha` channel for at least 7-10 days, afterwhich it's safe to create a follow-up PR to push the latest version to `stable` channel. diff --git a/mkdocs.yml b/mkdocs.yml index 8ec30a2283..e5eb8e2918 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -34,7 +34,6 @@ nav: - Welcome: - Welcome: "index.md" - Releases & Versioning: "welcome/releases.md" - - Contributing: "welcome/contributing.md" - Office Hours: "welcome/office_hours.md" - Getting Started: - Installing: "getting_started/install.md" @@ -131,11 +130,16 @@ nav: - Rotate Secrets: "rotate-secrets.md" - Terraform: "terraform.md" - Authentication: "authentication.md" + - Contributing: + - Getting Involved and Contributing: "contributing/contributing.md" + - New Kubernetes Version: "contributing/new_kubernetes_version.md" + - Our Release Process: "contributing/release.md" + - Releasing With Homebrew: "contributing/homebrew.md" + - Updating The Default Base AMI: "contributing/update_ami_versions.md" - Development: - Building: "development/building.md" - Adding a feature: "development/adding_a_feature.md" - Testing: "development/testing.md" - - New Kubernetes Version: "development/new_kubernetes_version.md" - Developing using Docker: "development/Docker.md" - Documentation Guidelines: "development/documentation.md" - Hack Directory: "development/hack.md" @@ -143,8 +147,6 @@ nav: - Low level description on how kOps works: "development/how_it_works.md" - Notes on Gossip design: "development/gossip.md" - Notes on master instance sizing: "development/instancesizes.md" - - Our release process: "development/release.md" - - Releasing with Homebrew: "development/homebrew.md" - Bazel: "development/bazel.md" - Vendoring: "development/vendoring.md" - Ports: "development/ports.md" From 1573a33641a982c160f219cc98e3251c90d4ce2c Mon Sep 17 00:00:00 2001 From: MoShitrit Date: Fri, 18 Dec 2020 09:09:17 -0500 Subject: [PATCH 2/4] Move Development to be a subsection of Contributing --- docs/{ => contributing}/development/Docker.md | 0 .../development/adding_a_feature.md | 0 docs/{ => contributing}/development/addons.md | 0 .../development/api_updates.md | 0 docs/{ => contributing}/development/bazel.md | 0 .../development/building.md | 0 .../development/documentation.md | 0 docs/{ => contributing}/development/gossip.md | 0 docs/{ => contributing}/development/hack.md | 0 .../development/how_it_works.md | 0 .../K8s-Hybrid-Cloud.graffle/data.plist | Bin .../K8s-Hybrid-Cloud.graffle/image10.png | Bin .../K8s-Hybrid-Cloud.graffle/image11.jpg | Bin .../K8s-Hybrid-Cloud.graffle/image4.png | Bin .../K8s-Hybrid-Cloud.graffle/image8.png | Bin .../K8s-Hybrid-Cloud.graffle/image9.png | Bin .../development/instancesizes.md | 0 docs/{ => contributing}/development/ports.md | 0 .../development/proposing-a-cherry-pick.md | 0 .../{ => contributing}/development/testing.md | 0 .../development/vendoring.md | 0 mkdocs.yml | 30 +++++++++--------- 22 files changed, 15 insertions(+), 15 deletions(-) rename docs/{ => contributing}/development/Docker.md (100%) rename docs/{ => contributing}/development/adding_a_feature.md (100%) rename docs/{ => contributing}/development/addons.md (100%) rename docs/{ => contributing}/development/api_updates.md (100%) rename docs/{ => contributing}/development/bazel.md (100%) rename docs/{ => contributing}/development/building.md (100%) rename docs/{ => contributing}/development/documentation.md (100%) rename docs/{ => contributing}/development/gossip.md (100%) rename docs/{ => contributing}/development/hack.md (100%) rename docs/{ => contributing}/development/how_it_works.md (100%) rename docs/{ => contributing}/development/images/K8s-Hybrid-Cloud.graffle/data.plist (100%) rename docs/{ => contributing}/development/images/K8s-Hybrid-Cloud.graffle/image10.png (100%) rename docs/{ => contributing}/development/images/K8s-Hybrid-Cloud.graffle/image11.jpg (100%) rename docs/{ => contributing}/development/images/K8s-Hybrid-Cloud.graffle/image4.png (100%) rename docs/{ => contributing}/development/images/K8s-Hybrid-Cloud.graffle/image8.png (100%) rename docs/{ => contributing}/development/images/K8s-Hybrid-Cloud.graffle/image9.png (100%) rename docs/{ => contributing}/development/instancesizes.md (100%) rename docs/{ => contributing}/development/ports.md (100%) rename docs/{ => contributing}/development/proposing-a-cherry-pick.md (100%) rename docs/{ => contributing}/development/testing.md (100%) rename docs/{ => contributing}/development/vendoring.md (100%) diff --git a/docs/development/Docker.md b/docs/contributing/development/Docker.md similarity index 100% rename from docs/development/Docker.md rename to docs/contributing/development/Docker.md diff --git a/docs/development/adding_a_feature.md b/docs/contributing/development/adding_a_feature.md similarity index 100% rename from docs/development/adding_a_feature.md rename to docs/contributing/development/adding_a_feature.md diff --git a/docs/development/addons.md b/docs/contributing/development/addons.md similarity index 100% rename from docs/development/addons.md rename to docs/contributing/development/addons.md diff --git a/docs/development/api_updates.md b/docs/contributing/development/api_updates.md similarity index 100% rename from docs/development/api_updates.md rename to docs/contributing/development/api_updates.md diff --git a/docs/development/bazel.md b/docs/contributing/development/bazel.md similarity index 100% rename from docs/development/bazel.md rename to docs/contributing/development/bazel.md diff --git a/docs/development/building.md b/docs/contributing/development/building.md similarity index 100% rename from docs/development/building.md rename to docs/contributing/development/building.md diff --git a/docs/development/documentation.md b/docs/contributing/development/documentation.md similarity index 100% rename from docs/development/documentation.md rename to docs/contributing/development/documentation.md diff --git a/docs/development/gossip.md b/docs/contributing/development/gossip.md similarity index 100% rename from docs/development/gossip.md rename to docs/contributing/development/gossip.md diff --git a/docs/development/hack.md b/docs/contributing/development/hack.md similarity index 100% rename from docs/development/hack.md rename to docs/contributing/development/hack.md diff --git a/docs/development/how_it_works.md b/docs/contributing/development/how_it_works.md similarity index 100% rename from docs/development/how_it_works.md rename to docs/contributing/development/how_it_works.md diff --git a/docs/development/images/K8s-Hybrid-Cloud.graffle/data.plist b/docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/data.plist similarity index 100% rename from docs/development/images/K8s-Hybrid-Cloud.graffle/data.plist rename to docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/data.plist diff --git a/docs/development/images/K8s-Hybrid-Cloud.graffle/image10.png b/docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image10.png similarity index 100% rename from docs/development/images/K8s-Hybrid-Cloud.graffle/image10.png rename to docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image10.png diff --git a/docs/development/images/K8s-Hybrid-Cloud.graffle/image11.jpg b/docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image11.jpg similarity index 100% rename from docs/development/images/K8s-Hybrid-Cloud.graffle/image11.jpg rename to docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image11.jpg diff --git a/docs/development/images/K8s-Hybrid-Cloud.graffle/image4.png b/docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image4.png similarity index 100% rename from docs/development/images/K8s-Hybrid-Cloud.graffle/image4.png rename to docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image4.png diff --git a/docs/development/images/K8s-Hybrid-Cloud.graffle/image8.png b/docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image8.png similarity index 100% rename from docs/development/images/K8s-Hybrid-Cloud.graffle/image8.png rename to docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image8.png diff --git a/docs/development/images/K8s-Hybrid-Cloud.graffle/image9.png b/docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image9.png similarity index 100% rename from docs/development/images/K8s-Hybrid-Cloud.graffle/image9.png rename to docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image9.png diff --git a/docs/development/instancesizes.md b/docs/contributing/development/instancesizes.md similarity index 100% rename from docs/development/instancesizes.md rename to docs/contributing/development/instancesizes.md diff --git a/docs/development/ports.md b/docs/contributing/development/ports.md similarity index 100% rename from docs/development/ports.md rename to docs/contributing/development/ports.md diff --git a/docs/development/proposing-a-cherry-pick.md b/docs/contributing/development/proposing-a-cherry-pick.md similarity index 100% rename from docs/development/proposing-a-cherry-pick.md rename to docs/contributing/development/proposing-a-cherry-pick.md diff --git a/docs/development/testing.md b/docs/contributing/development/testing.md similarity index 100% rename from docs/development/testing.md rename to docs/contributing/development/testing.md diff --git a/docs/development/vendoring.md b/docs/contributing/development/vendoring.md similarity index 100% rename from docs/development/vendoring.md rename to docs/contributing/development/vendoring.md diff --git a/mkdocs.yml b/mkdocs.yml index e5eb8e2918..62ebea2c21 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -136,21 +136,21 @@ nav: - Our Release Process: "contributing/release.md" - Releasing With Homebrew: "contributing/homebrew.md" - Updating The Default Base AMI: "contributing/update_ami_versions.md" - - Development: - - Building: "development/building.md" - - Adding a feature: "development/adding_a_feature.md" - - Testing: "development/testing.md" - - Developing using Docker: "development/Docker.md" - - Documentation Guidelines: "development/documentation.md" - - Hack Directory: "development/hack.md" - - How to update kOps API: "development/api_updates.md" - - Low level description on how kOps works: "development/how_it_works.md" - - Notes on Gossip design: "development/gossip.md" - - Notes on master instance sizing: "development/instancesizes.md" - - Bazel: "development/bazel.md" - - Vendoring: "development/vendoring.md" - - Ports: "development/ports.md" - - Cluster Addons & Manager : "development/addons.md" + - Development: + - Building: "contributing/development/building.md" + - Adding a feature: "contributing/development/adding_a_feature.md" + - Testing: "contributing/development/testing.md" + - Developing using Docker: "contributing/development/Docker.md" + - Documentation Guidelines: "contributing/development/documentation.md" + - Hack Directory: "contributing/development/hack.md" + - How to update kOps API: "contributing/development/api_updates.md" + - Low level description on how kOps works: "contributing/development/how_it_works.md" + - Notes on Gossip design: "contributing/development/gossip.md" + - Notes on master instance sizing: "contributing/development/instancesizes.md" + - Bazel: "contributing/development/bazel.md" + - Vendoring: "contributing/development/vendoring.md" + - Ports: "contributing/development/ports.md" + - Cluster Addons & Manager : "contributing/development/addons.md" - Releases: - "1.18": releases/1.18-NOTES.md - "1.17": releases/1.17-NOTES.md From e09c451041a2be0dba48131efbd024932d674eec Mon Sep 17 00:00:00 2001 From: Moshe Shitrit Date: Mon, 21 Dec 2020 11:39:45 -0500 Subject: [PATCH 3/4] Typo fix Co-authored-by: Josh Branham --- docs/contributing/update_ami_versions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/update_ami_versions.md b/docs/contributing/update_ami_versions.md index 8317ccb452..4d16190a0c 100644 --- a/docs/contributing/update_ami_versions.md +++ b/docs/contributing/update_ami_versions.md @@ -1,7 +1,7 @@ # Updating The Default Base AMI With the release of `kOps 1.18`, the base AMI was switched over from a pre-baked `kOps` AMI to the official Ubuntu 20.04 LTS image. -This makes the image update process easier, because kOps contributors no longer have to fully build an test a full AMI, but rather base off of the latest stable Ubuntu image. +This makes the image update process easier, because kOps contributors no longer have to fully build and test a full AMI, but rather base off of the latest stable Ubuntu image. In order to make sure we're up to date with the latest releases, we regularly follow the official [Ubuntu EC2 AMI Locator](https://cloud-images.ubuntu.com/locator/ec2/) website and update to the latest version of `focal` which is available across **all AWS regions**, including `gov` and `cn`, for full support. The process of updating the AMI version is as following: From 2e671cb91dde2a31b5937cdb5900b6707ef2e365 Mon Sep 17 00:00:00 2001 From: MoShitrit Date: Wed, 23 Dec 2020 09:00:53 -0500 Subject: [PATCH 4/4] Address comments: rename contributing.md to index.md and move everything under Contributing section --- docs/contributing/{development => }/Docker.md | 0 .../{development => }/adding_a_feature.md | 0 docs/contributing/{development => }/addons.md | 0 .../{development => }/api_updates.md | 0 docs/contributing/{development => }/bazel.md | 0 .../{development => }/building.md | 0 .../{development => }/documentation.md | 0 docs/contributing/{development => }/gossip.md | 0 docs/contributing/{development => }/hack.md | 0 .../{development => }/how_it_works.md | 0 .../K8s-Hybrid-Cloud.graffle/data.plist | Bin .../K8s-Hybrid-Cloud.graffle/image10.png | Bin .../K8s-Hybrid-Cloud.graffle/image11.jpg | Bin .../K8s-Hybrid-Cloud.graffle/image4.png | Bin .../K8s-Hybrid-Cloud.graffle/image8.png | Bin .../K8s-Hybrid-Cloud.graffle/image9.png | Bin .../{contributing.md => index.md} | 0 .../{development => }/instancesizes.md | 0 docs/contributing/{development => }/ports.md | 0 .../proposing-a-cherry-pick.md | 0 .../contributing/{development => }/testing.md | 0 .../{development => }/vendoring.md | 0 mkdocs.yml | 31 +++++++++--------- 23 files changed, 15 insertions(+), 16 deletions(-) rename docs/contributing/{development => }/Docker.md (100%) rename docs/contributing/{development => }/adding_a_feature.md (100%) rename docs/contributing/{development => }/addons.md (100%) rename docs/contributing/{development => }/api_updates.md (100%) rename docs/contributing/{development => }/bazel.md (100%) rename docs/contributing/{development => }/building.md (100%) rename docs/contributing/{development => }/documentation.md (100%) rename docs/contributing/{development => }/gossip.md (100%) rename docs/contributing/{development => }/hack.md (100%) rename docs/contributing/{development => }/how_it_works.md (100%) rename docs/contributing/{development => }/images/K8s-Hybrid-Cloud.graffle/data.plist (100%) rename docs/contributing/{development => }/images/K8s-Hybrid-Cloud.graffle/image10.png (100%) rename docs/contributing/{development => }/images/K8s-Hybrid-Cloud.graffle/image11.jpg (100%) rename docs/contributing/{development => }/images/K8s-Hybrid-Cloud.graffle/image4.png (100%) rename docs/contributing/{development => }/images/K8s-Hybrid-Cloud.graffle/image8.png (100%) rename docs/contributing/{development => }/images/K8s-Hybrid-Cloud.graffle/image9.png (100%) rename docs/contributing/{contributing.md => index.md} (100%) rename docs/contributing/{development => }/instancesizes.md (100%) rename docs/contributing/{development => }/ports.md (100%) rename docs/contributing/{development => }/proposing-a-cherry-pick.md (100%) rename docs/contributing/{development => }/testing.md (100%) rename docs/contributing/{development => }/vendoring.md (100%) diff --git a/docs/contributing/development/Docker.md b/docs/contributing/Docker.md similarity index 100% rename from docs/contributing/development/Docker.md rename to docs/contributing/Docker.md diff --git a/docs/contributing/development/adding_a_feature.md b/docs/contributing/adding_a_feature.md similarity index 100% rename from docs/contributing/development/adding_a_feature.md rename to docs/contributing/adding_a_feature.md diff --git a/docs/contributing/development/addons.md b/docs/contributing/addons.md similarity index 100% rename from docs/contributing/development/addons.md rename to docs/contributing/addons.md diff --git a/docs/contributing/development/api_updates.md b/docs/contributing/api_updates.md similarity index 100% rename from docs/contributing/development/api_updates.md rename to docs/contributing/api_updates.md diff --git a/docs/contributing/development/bazel.md b/docs/contributing/bazel.md similarity index 100% rename from docs/contributing/development/bazel.md rename to docs/contributing/bazel.md diff --git a/docs/contributing/development/building.md b/docs/contributing/building.md similarity index 100% rename from docs/contributing/development/building.md rename to docs/contributing/building.md diff --git a/docs/contributing/development/documentation.md b/docs/contributing/documentation.md similarity index 100% rename from docs/contributing/development/documentation.md rename to docs/contributing/documentation.md diff --git a/docs/contributing/development/gossip.md b/docs/contributing/gossip.md similarity index 100% rename from docs/contributing/development/gossip.md rename to docs/contributing/gossip.md diff --git a/docs/contributing/development/hack.md b/docs/contributing/hack.md similarity index 100% rename from docs/contributing/development/hack.md rename to docs/contributing/hack.md diff --git a/docs/contributing/development/how_it_works.md b/docs/contributing/how_it_works.md similarity index 100% rename from docs/contributing/development/how_it_works.md rename to docs/contributing/how_it_works.md diff --git a/docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/data.plist b/docs/contributing/images/K8s-Hybrid-Cloud.graffle/data.plist similarity index 100% rename from docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/data.plist rename to docs/contributing/images/K8s-Hybrid-Cloud.graffle/data.plist diff --git a/docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image10.png b/docs/contributing/images/K8s-Hybrid-Cloud.graffle/image10.png similarity index 100% rename from docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image10.png rename to docs/contributing/images/K8s-Hybrid-Cloud.graffle/image10.png diff --git a/docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image11.jpg b/docs/contributing/images/K8s-Hybrid-Cloud.graffle/image11.jpg similarity index 100% rename from docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image11.jpg rename to docs/contributing/images/K8s-Hybrid-Cloud.graffle/image11.jpg diff --git a/docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image4.png b/docs/contributing/images/K8s-Hybrid-Cloud.graffle/image4.png similarity index 100% rename from docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image4.png rename to docs/contributing/images/K8s-Hybrid-Cloud.graffle/image4.png diff --git a/docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image8.png b/docs/contributing/images/K8s-Hybrid-Cloud.graffle/image8.png similarity index 100% rename from docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image8.png rename to docs/contributing/images/K8s-Hybrid-Cloud.graffle/image8.png diff --git a/docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image9.png b/docs/contributing/images/K8s-Hybrid-Cloud.graffle/image9.png similarity index 100% rename from docs/contributing/development/images/K8s-Hybrid-Cloud.graffle/image9.png rename to docs/contributing/images/K8s-Hybrid-Cloud.graffle/image9.png diff --git a/docs/contributing/contributing.md b/docs/contributing/index.md similarity index 100% rename from docs/contributing/contributing.md rename to docs/contributing/index.md diff --git a/docs/contributing/development/instancesizes.md b/docs/contributing/instancesizes.md similarity index 100% rename from docs/contributing/development/instancesizes.md rename to docs/contributing/instancesizes.md diff --git a/docs/contributing/development/ports.md b/docs/contributing/ports.md similarity index 100% rename from docs/contributing/development/ports.md rename to docs/contributing/ports.md diff --git a/docs/contributing/development/proposing-a-cherry-pick.md b/docs/contributing/proposing-a-cherry-pick.md similarity index 100% rename from docs/contributing/development/proposing-a-cherry-pick.md rename to docs/contributing/proposing-a-cherry-pick.md diff --git a/docs/contributing/development/testing.md b/docs/contributing/testing.md similarity index 100% rename from docs/contributing/development/testing.md rename to docs/contributing/testing.md diff --git a/docs/contributing/development/vendoring.md b/docs/contributing/vendoring.md similarity index 100% rename from docs/contributing/development/vendoring.md rename to docs/contributing/vendoring.md diff --git a/mkdocs.yml b/mkdocs.yml index 62ebea2c21..3b3b9858c3 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -131,26 +131,25 @@ nav: - Terraform: "terraform.md" - Authentication: "authentication.md" - Contributing: - - Getting Involved and Contributing: "contributing/contributing.md" + - Getting Involved and Contributing: "contributing/index.md" - New Kubernetes Version: "contributing/new_kubernetes_version.md" - Our Release Process: "contributing/release.md" - Releasing With Homebrew: "contributing/homebrew.md" - Updating The Default Base AMI: "contributing/update_ami_versions.md" - - Development: - - Building: "contributing/development/building.md" - - Adding a feature: "contributing/development/adding_a_feature.md" - - Testing: "contributing/development/testing.md" - - Developing using Docker: "contributing/development/Docker.md" - - Documentation Guidelines: "contributing/development/documentation.md" - - Hack Directory: "contributing/development/hack.md" - - How to update kOps API: "contributing/development/api_updates.md" - - Low level description on how kOps works: "contributing/development/how_it_works.md" - - Notes on Gossip design: "contributing/development/gossip.md" - - Notes on master instance sizing: "contributing/development/instancesizes.md" - - Bazel: "contributing/development/bazel.md" - - Vendoring: "contributing/development/vendoring.md" - - Ports: "contributing/development/ports.md" - - Cluster Addons & Manager : "contributing/development/addons.md" + - Building: "contributing/building.md" + - Adding a feature: "contributing/adding_a_feature.md" + - Testing: "contributing/testing.md" + - Developing using Docker: "contributing/Docker.md" + - Documentation Guidelines: "contributing/documentation.md" + - Hack Directory: "contributing/hack.md" + - How to update kOps API: "contributing/api_updates.md" + - Low level description on how kOps works: "contributing/how_it_works.md" + - Notes on Gossip design: "contributing/gossip.md" + - Notes on master instance sizing: "contributing/instancesizes.md" + - Bazel: "contributing/bazel.md" + - Vendoring: "contributing/vendoring.md" + - Ports: "contributing/ports.md" + - Cluster Addons & Manager : "contributing/addons.md" - Releases: - "1.18": releases/1.18-NOTES.md - "1.17": releases/1.17-NOTES.md