bloqhead / kuma-website

🐻 The official website for Kuma, the control plane for modern service connectivity.

Home Page:https://kuma.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Netlify Status License Slack Twitter

Kuma Website

This is repository is the source code for Kuma's documentation website. Kuma is a universal open source control-plane for Service Mesh and Microservices that can run and be operated natively across both Kubernetes and VM environments, in order to be easily adopted by every team in the organization. If you are looking for the source code instead, please check out Kuma's main repository.

This website is built on VuePress and is open-source for the community to contribute to. Feel free to submit an issue to propose changes or submit a patch if you want to write some code!

Contact and chat with the community in real-time if you get stuck or need clarifications. We are here to help.

Summary

Installation

After you forked and cloned the repository, follow the steps below to setup the local dev environment.

1. Install the required packages

yarn install

2. Run the local dev environment

yarn docs:dev

You can now navigate to http://localhost:8080/.


Build

Building Locally

yarn docs:build

This creates a dist folder within .vuepress. This script is good in case you want to test the compiled site locally with something like http-server.

Netlify Build Flow

The Docs and Install pages have 301 redirects that ensure their bare URLs always go to the latest version of Kuma. Because of the order in which Netlify deployment and build functions are run, the full deployment build script is handled within the netlify.toml file.

Netlify, netlify.toml and [build]

At the top of our netlify.toml file, there is a build script under [build].

It will:

  1. Run the setup-redirects Node script, which writes the appropriate redirects in Netlify format to the end of the netlify.toml file
  2. Runs vuepress build docs which will build the site accordingly

Test

After you make changes to the code, run the following command to run any existing and new tests:

yarn test

Before submitting a pull request, make sure all tests are passing.


Cutting a new release

This is a Node script for making the creation of new release documentation easy and painless!

What does the script do?

  • It will clone the draft directory located in /docs/docs/draft/ to a new directory that is named by the version specified (we'll go into detail on this further down)
  • After cloning the directory, it will automatically find and replace all instances of DRAFT in the documentation markdown files, with the new version.
    • A Regular Expression string is used that only looks for DRAFT by itself and in all caps
  • It will add the new sidebar navigation structure for the new version to the sidebar-nav.js file. This file controls the documentation sidebar navigation in VuePress via the additionalPages API option
    • This function will base the page structure on the previous version's page structure. This was the easiest way to ensure they stay uniform since they rarely change. If this page structure changes, we recommend editing the sidebar-nav.js configuration by hand for your version. In the future, your new structure will be grabbed and used going forward since the script will always grab the latest version's page structure as a base. So you wouldn't have to make this revision each time
  • It will append the new version to the releases.json file. This file is used by the website for handling versioning in the documentation and install pages

How do I use the script?

First and foremost, run yarn to install any new modules. Once you've done this, run npm link. This will link the kumacut command to your bin so you can run it globally.

Command breakdown

Usage: kumacut [options] [command]

Options:
  -v, --version     Output the current version of this script.
  -h, --help        output usage information

Commands:
  latest            display the latest version of Kuma
  bump              this will simply cut a new patch and bump the patch number up by 1
  new <type> [ver]  options: major, minor, custom <version>
  • kumacut latest - This will display the latest version from releases.json. Good as a reference if needed
  • kumacut bump - A quick command to increment the patch in the latest version by 1
  • kumacut new major|minor - This command offers more control. You can increment the latest version by 1 for a major or minor release
  • kumacut new custom <version> - If you want to specify the version number yourself, you can replace <version> with something like 2.3.4 (don't worry if you happen to write v2.3.4 - the script is smart enough to strip this out)

License

Copyright 2020 the Kuma Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

🐻 The official website for Kuma, the control plane for modern service connectivity.

https://kuma.io

License:Apache License 2.0


Languages

Language:JavaScript 100.0%