Publish docs with docsify (#4193)
* Add docsify website * Add website CI
This commit is contained in:
parent
9b5096ab10
commit
9e76aafc1c
3 changed files with 68 additions and 0 deletions
0
.nojekyll
Normal file
0
.nojekyll
Normal file
22
docs/_sidebar.md
Normal file
22
docs/_sidebar.md
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
* [Readme](/)
|
||||||
|
* [Comparisons](/docs/comparisons.md)
|
||||||
|
* [Getting started](/docs/getting-started.md)
|
||||||
|
* [Variables](/docs/vars.md)
|
||||||
|
* [Ansible](/docs/ansible.md)
|
||||||
|
* [Upgrades](/docs/upgrades.md)
|
||||||
|
* CNI
|
||||||
|
* [Calico](docs/calico.md)
|
||||||
|
* [Contiv](docs/contiv.md)
|
||||||
|
* [Flannel](docs/flannel.md)
|
||||||
|
* [Weave](docs/weave.md)
|
||||||
|
* [Multus](docs/multus.md)
|
||||||
|
* [Cloud providers](docs/cloud.md)
|
||||||
|
* [AWS](docs/aws.md)
|
||||||
|
* [Azure](docs/azure.md)
|
||||||
|
* [OpenStack](/docs/openstack.md)
|
||||||
|
* [vSphere](/docs/vsphere.md)
|
||||||
|
* Operating Systems
|
||||||
|
* [Debian](docs/debian.md)
|
||||||
|
* [Coreos](docs/coreos.md)
|
||||||
|
* [OpenSUSE](docs/opensuse.md)
|
||||||
|
* [Roadmap](docs/roadmap.md)
|
46
index.html
Normal file
46
index.html
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Kubespray - Deploy a Production Ready Kubernetes Cluster</title>
|
||||||
|
<meta name="description" content="Deploy a Production Ready Kubernetes Cluster">
|
||||||
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||||
|
<link rel="stylesheet" href="//unpkg.com/docsify-themeable/dist/css/theme-simple.css">
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--base-font-size: 16px;
|
||||||
|
--theme-color: rgb(104, 118, 52);
|
||||||
|
--link-color: rgb(104, 118, 52);
|
||||||
|
--link-color--hover: rgb(137, 152, 100);
|
||||||
|
--sidebar-name-margin: 0;
|
||||||
|
--sidebar-name-padding: 0;
|
||||||
|
--code-font-size: .9em;
|
||||||
|
}
|
||||||
|
.sidebar > h1 {
|
||||||
|
margin-bottom: -.75em;
|
||||||
|
margin-top: .75em;
|
||||||
|
}
|
||||||
|
.markdown-section a code {
|
||||||
|
color: var(--link-color)!important;
|
||||||
|
}
|
||||||
|
.markdown-section code:not([class*="lang-"]):not([class*="language-"]) {
|
||||||
|
white-space: unset
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="app"></div>
|
||||||
|
</body>
|
||||||
|
<script>
|
||||||
|
window.$docsify = {
|
||||||
|
name: 'Kubespray',
|
||||||
|
loadSidebar: 'docs/_sidebar.md',
|
||||||
|
repo: 'https://github.com/kubernetes-sigs/kubespray',
|
||||||
|
auto2top: true,
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
|
||||||
|
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
|
||||||
|
<script src="//unpkg.com/docsify/lib/plugins/ga.min.js"></script>
|
||||||
|
|
||||||
|
</html>
|
Loading…
Reference in a new issue