docs: remove frontmatter

Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
This commit is contained in:
Lucas Servén Marín 2020-03-10 00:36:18 +01:00
parent 4e72d02f88
commit 72f5107979
No known key found for this signature in database
GPG Key ID: 586FEAF680DA74AD
16 changed files with 40 additions and 47 deletions

View File

@ -201,12 +201,12 @@ header: .header
fi fi
website/docs/README.md: README.md website/docs/README.md: README.md
rm -rf website/docs
mkdir website/docs
find docs -type f -name '*.md' | xargs -I{} ln {} website/{}
rm -rf website/static/img/graphs rm -rf website/static/img/graphs
find docs -type f -name '*.md' | xargs -I{} sh -c 'cat $(@D)/$$(basename {} .md) > website/{}'
find docs -type f -name '*.md' | xargs -I{} sh -c 'cat {} >> website/{}'
cat $(@D)/$$(basename $@ .md) > $@
cat README.md >> $@
cp -r docs/graphs website/static/img/ cp -r docs/graphs website/static/img/
cp README.md website/docs/
sed -i 's/\.\/docs\///g' $@ sed -i 's/\.\/docs\///g' $@
find $(@D) -type f -name '*.md' | xargs -I{} sed -i 's/\.\//\/img\//g' {} find $(@D) -type f -name '*.md' | xargs -I{} sed -i 's/\.\//\/img\//g' {}
sed -i 's/graphs\//\/img\/graphs\//g' $@ sed -i 's/graphs\//\/img\/graphs\//g' $@

View File

@ -1,10 +1,3 @@
---
id: introduction
title: Introduction
hide_title: true
custom_edit_url: https://github.com/squat/kilo/edit/master/README.md
---
<p align="center"><img src="./kilo.svg" width="150" /></p> <p align="center"><img src="./kilo.svg" width="150" /></p>
# Kilo # Kilo

View File

@ -1,9 +1,3 @@
---
id: annotations
title: Annotations
hide_title: true
---
# Annotations # Annotations
The following annotations can be added to any Kubernetes Node object to configure the Kilo network. The following annotations can be added to any Kubernetes Node object to configure the Kilo network.

View File

@ -1,8 +1,3 @@
---
id: kgctl
hide_title: true
---
# kgctl # kgctl
Kilo provides a command line tool for inspecting and interacting with clusters: `kgctl`. Kilo provides a command line tool for inspecting and interacting with clusters: `kgctl`.

View File

@ -1,9 +1,3 @@
---
id: multi-cluster-services
title: Multi-cluster Services
hide_title: true
---
# Multi-cluster Services # Multi-cluster Services
Just as Kilo can connect a Kubernetes cluster to external services over WireGuard, it can connect multiple independent Kubernetes clusters. Just as Kilo can connect a Kubernetes cluster to external services over WireGuard, it can connect multiple independent Kubernetes clusters.

View File

@ -1,9 +1,3 @@
---
id: topology
title: Topology
hide_title: true
---
# Topology # Topology
Kilo allows the topology of the encrypted network to be customized. Kilo allows the topology of the encrypted network to be customized.

View File

@ -1,9 +1,3 @@
---
id: vpn-server
title: VPN Sever
hide_title: true
---
# VPN Server # VPN Server
The cluster VPN created by Kilo can also be used by peers as a gateway to access the Internet. The cluster VPN created by Kilo can also be used by peers as a gateway to access the Internet.

View File

@ -1,9 +1,3 @@
---
id: vpn
title: VPN
hide_title: true
---
# VPN # VPN
Kilo enables peers outside of a Kubernetes cluster to connect to the created WireGuard network. Kilo enables peers outside of a Kubernetes cluster to connect to the created WireGuard network.

2
website/.gitignore vendored
View File

@ -2,7 +2,7 @@
/node_modules /node_modules
# Production # Production
/docs /docs/*.md
/build /build
/static/img/graphs /static/img/graphs

6
website/docs/README Normal file
View File

@ -0,0 +1,6 @@
---
id: introduction
title: Introduction
hide_title: true
custom_edit_url: https://github.com/squat/kilo/edit/master/README.md
---

5
website/docs/annotations Normal file
View File

@ -0,0 +1,5 @@
---
id: annotations
title: Annotations
hide_title: true
---

4
website/docs/kgctl Normal file
View File

@ -0,0 +1,4 @@
---
id: kgctl
hide_title: true
---

View File

@ -0,0 +1,5 @@
---
id: multi-cluster-services
title: Multi-cluster Services
hide_title: true
---

5
website/docs/topology Normal file
View File

@ -0,0 +1,5 @@
---
id: topology
title: Topology
hide_title: true
---

5
website/docs/vpn Normal file
View File

@ -0,0 +1,5 @@
---
id: vpn
title: VPN
hide_title: true
---

5
website/docs/vpn-server Normal file
View File

@ -0,0 +1,5 @@
---
id: vpn-server
title: VPN Sever
hide_title: true
---