KubeVela documentations and website (https://kubevela.io).
Go to file
Wei (段少) 56a5d9ee7d
Add the blog of multi cluster management (#573)
* Add: the blog of multic cluster management

Signed-off-by: BinaryHB0916 <davidduan0916@gmail.com>

* Fix: typos and wording refinement

Signed-off-by: BinaryHB0916 <davidduan0916@gmail.com>

* Fix: typos

Signed-off-by: BinaryHB0916 <davidduan0916@gmail.com>

* Add: link override from multi-clsuter how-to doc

Signed-off-by: BinaryHB0916 <davidduan0916@gmail.com>

* Docs: update multi-cluster how-to (#571)

Signed-off-by: Yin Da <yd219913@alibaba-inc.com>

* Fix: broken link

Signed-off-by: BinaryHB0916 <davidduan0916@gmail.com>

Co-authored-by: Somefive <yd219913@alibaba-inc.com>
2022-04-08 13:22:35 +08:00
.github/workflows fix branch 2022-04-01 11:04:26 +08:00
blog Add the blog of multi cluster management (#573) 2022-04-08 13:22:35 +08:00
docs Docs: update multi-cluster how-to (#571) 2022-04-07 17:07:44 +08:00
hack Update cloud resource list (#551) 2022-03-22 13:16:28 +08:00
i18n/zh Add the blog of multi cluster management (#573) 2022-04-08 13:22:35 +08:00
src Adjust Font Size (#337) 2021-10-13 17:21:17 +08:00
static Add: offline deployment practice of China Merchants Banks 2022-04-01 17:40:48 +08:00
versioned_docs bump version contraint 2022-04-01 11:10:03 +08:00
versioned_sidebars Fix: add ref in ai blog and add to sidebar (#539) 2022-03-11 15:15:47 +08:00
.gitignore Feat: update cli command and use vela up (#426) 2022-01-12 21:27:19 +08:00
Dockerfile Feat: add dockerfile and build image when code check in (#559) 2022-04-01 00:39:25 +08:00
LICENSE Initial commit 2021-03-25 10:15:03 +08:00
Makefile Update cloud resource table (#527) 2022-03-10 11:05:36 +08:00
README-zh.md Docs v1.1 new structure (#135) 2021-07-29 18:43:32 +08:00
README.md Update readme (#129) 2021-07-05 22:30:16 +08:00
TRUNCK_BRANCH.md add trunc readme (#128) 2021-07-05 19:55:44 +08:00
babel.config.js init 2021-03-25 17:06:33 +08:00
docusaurus.config.js Add docs for top 50 famous cloud resources for AWS (#501) 2022-02-10 15:28:22 +08:00
package-lock.json update docusaurus (#97) 2021-05-08 14:21:39 +08:00
package.json update search plugin (#99) 2021-05-14 13:33:30 +08:00
sidebars.js Docs: add references for internal policies (#575) 2022-04-07 16:56:38 +08:00
versions.json Docs: release 1.2 version 2022-01-15 00:11:39 +08:00
yarn.lock sync commit a11ae2f95d3f1023e65a6355905da2f6852f7da1 from kubevela-v1.1.0-alpha.1 2021-05-15 04:26:39 +00:00

README.md

KubeVela Docs & Website

This repo contains the source code of Kubevela website and all of the docs for KubeVela. It's built by Docusaurus 2, a modern static website generator.

Welcome to join us and you are more than appreciated to contribute!

Contributing to KubeVela EN Docs

First, we have the source documentation of Kubevela website and it's written in English. Follow Localization README for contributing to other languages. Any files modifid here will trigger the check-docs Github action to run and validate the docs could be build successfully into the website. Any changes on these files(docs/en/*, docs/en/resource/*, sidebars.js) will be submitted to the corresponding locations of the repo kubevela.io. The Github-Action there will parse the document and publish it to the Kubevela Website automatically.

Please follow our guides below to learn how to write the docs in the right way.

Add or Update Docs

When you add or modify the docs, these three files(docs/en/, docs/en/resource/ and sidebars.js) should be taken into consideration.

  1. docs/en/, the main English documentation files are mainly located in this folder. All markdown files need to follow the format, that the title at the beginning should be in the following format:

    ---
    title: Title Name
    ---
    
    

    When you want to add a link refer to any .md files inside the docs(docs/en), you need to use relative path and remove the .md suffix. For example, the en/helm/component.md has a link refer to en/platform-engineers/definition-and-templates.md. Then the format should like:

    [the definition and template concepts](../platform-engineers/definition-and-templates)
    
  2. docs/en/resource/, image files are located in this folder. When you want to use link any image in documentation, you should put the image resources here and use a relative path like below:

     ![alt](./resources/concepts.png)
    
  3. sidebars.js, this file contain the navigation information of the KubeVela website. Please read the official docs of docusaurus to learn how to write sidebar.js.

       {
          type: 'category',
          label: 'Capability References',
          items: [
            // Note!: here must be add the path under "docs/en" 
            'developers/references/README',
            'developers/references/workload-types/webservice',
            'developers/references/workload-types/task',
            ...
          ],
        },
    

Localization README

Language
Chinese

Website Preview

Installation

yarn install

Local Development

yarn start

This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.

Build

yarn build

This command generates static content into the build directory and can be served using any static contents hosting service.

Deployment

GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages branch.