0cc1a2ff8c
This commit adds a doc for `kg`, the Kilo agent that runs on every node in the mesh. This includes: the doc itself, files needed for the website, and tooling to generate the document using `embedmd`. Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
20 lines
382 B
JavaScript
20 lines
382 B
JavaScript
module.exports = {
|
|
docs: [
|
|
{
|
|
type: 'doc',
|
|
id: 'introduction',
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Guides',
|
|
items: ['topology', 'vpn', 'vpn-server', 'multi-cluster-services', 'network-policies'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Reference',
|
|
items: ['annotations', 'kg', 'kgctl'],
|
|
},
|
|
//Features: ['mdx'],
|
|
],
|
|
};
|