Skip to content

Commit ce912ed

Browse files
Merge pull request krustlet#653 from thomastaylor312/chore/remove_docs
chore(docs): Removes docs from the main krustlet repo
2 parents 8300f1a + f33110a commit ce912ed

62 files changed

Lines changed: 19 additions & 4467 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/lint.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.markdownlinkcheck.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

.markdownlint.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ instead of a container runtime.
1313
## Documentation
1414

1515
If you're new to the project, get started with [the
16-
introduction](docs/intro/README.md). For more in-depth information about
17-
Krustlet, plunge right into the [topic guides](docs/topics/README.md).
16+
introduction](https://docs.krustlet.dev/intro). For more in-depth information about
17+
Krustlet, plunge right into the [topic guides](https://docs.krustlet.dev/topics).
1818

19-
Looking for the developer guide? [Start here](docs/community/developers.md).
19+
Looking for the developer guide? [Start here](https://docs.krustlet.dev/community/developers).
2020

2121
## Community, discussion, contribution, and support
2222

@@ -27,7 +27,7 @@ You can reach the Krustlet community and developers via the following channels:
2727
- Public Community Call on Mondays at 1:00 PM PT:
2828
- [Zoom](https://us04web.zoom.us/j/71695031152?pwd=T0g1d0JDZVdiMHpNNVF1blhxVC9qUT09)
2929
- Download the meeting calendar invite
30-
[here](https://raw.githubusercontent.com/deislabs/krustlet/master/docs/community/assets/community_meeting.ics)
30+
[here](./community_meeting.ics)
3131

3232
## Code of Conduct
3333

docs/community/assets/community_meeting.ics renamed to community_meeting.ics

File renamed without changes.

demos/wasi/hello-csi/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Hello World Rust for WASI
22

33
This is a variant of the hello world example, demonstrating how to use Krustlet
4-
with the [Container Storage Interface](../../../docs/topics/csi.md).
4+
with the [Container Storage Interface](https://docs.krustlet.dev/topics/csi).
55

66
A simple hello world example in Rust that will print:
77

@@ -45,13 +45,13 @@ $ rustup target add wasm32-wasi
4545
```
4646

4747
If you don't have Krustlet with the WASI provider running locally, see the
48-
instructions in the [tutorial](../../../docs/intro/tutorial03.md) for running
48+
instructions in the [tutorial](https://docs.krustlet.dev/intro/tutorial03) for running
4949
locally.
5050

5151
You will also need to register the [host-path CSI
5252
driver](https://github.com/kubernetes-csi/csi-driver-host-path). Details on how
5353
to register the driver can be found in the [CSI HOWTO
54-
guide](../../../docs/howto/csi.md).
54+
guide](https://docs.krustlet.dev/howto/csi).
5555

5656
### Building
5757

@@ -64,7 +64,7 @@ $ cargo build --target wasm32-wasi --release
6464

6565
### Pushing
6666

67-
Detailed instructions for pushing a module can be found [here](../../../docs/intro/tutorial02.md).
67+
Detailed instructions for pushing a module can be found [here](https://docs.krustlet.dev/intro/tutorial02.md).
6868

6969
We hope to improve and streamline the build and push process in the future.
7070
However, for test purposes, the image has been pushed to the `webassembly`

demos/wasi/hello-world-assemblyscript/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ AssemblyScript
4747
[getting started guide](https://www.assemblyscript.org/).
4848

4949
If you don't have Krustlet with the WASI provider running locally, see the
50-
instructions in the [tutorial](../../../docs/intro/tutorial03.md) for running
50+
instructions in the [tutorial](https://docs.krustlet.dev/intro/tutorial03) for running
5151
locally.
5252

5353
### Compiling
@@ -61,4 +61,4 @@ $ npm install && npm run asbuild
6161
### Pushing
6262

6363
Detailed instructions for pushing a module can be found in the
64-
[tutorial](../../../docs/intro/tutorial02.md).
64+
[tutorial](https://docs.krustlet.dev/intro/tutorial02.).

demos/wasi/hello-world-c/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ $ tar -xzf wasi-sdk-8.0-${OS_NAME}.tar.gz
5151
```
5252

5353
If you don't have Krustlet with the WASI provider running locally, see the
54-
instructions in the [tutorial](../../../docs/intro/tutorial03.md) for running
54+
instructions in the [tutorial](https://docs.krustlet.dev/intro/tutorial03) for running
5555
locally.
5656

5757
### Building
@@ -65,7 +65,7 @@ $ ./wasi-sdk-8.0/bin/clang -v demo.c --sysroot ./wasi-sysroot -o demo.wasm
6565
### Pushing
6666

6767
Detailed instructions for pushing a module can be found
68-
[here](../../../docs/intro/tutorial02.md).
68+
[here](https://docs.krustlet.dev/intro/tutorial02).
6969

7070
We hope to improve and streamline the build and push process in the future.
7171
However, for test purposes, the image has been pushed to the `webassembly`

demos/wasi/hello-world-rust/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ $ rustup target add wasm32-wasi
4242
```
4343

4444
If you don't have Krustlet with the WASI provider running locally, see the
45-
instructions in the [tutorial](../../../docs/intro/tutorial03.md) for running
45+
instructions in the [tutorial](https://docs.krustlet.dev/intro/tutorial03) for running
4646
locally.
4747

4848
### Building
@@ -55,7 +55,7 @@ $ cargo build --target wasm32-wasi --release
5555

5656
### Pushing
5757

58-
Detailed instructions for pushing a module can be found [here](../../../docs/intro/tutorial02.md).
58+
Detailed instructions for pushing a module can be found [here](https://docs.krustlet.dev/intro/tutorial02).
5959

6060
We hope to improve and streamline the build and push process in the future.
6161
However, for test purposes, the image has been pushed to the `webassembly`

demos/wasi/wasmerciser/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $ rustup target add wasm32-wasi
1717
```
1818

1919
If you don't have Krustlet with the WASI provider running locally, see
20-
the instructions in the [tutorial](../../../docs/intro/tutorial03.md) for
20+
the instructions in the [tutorial](https://docs.krustlet.dev/intro/tutorial03) for
2121
running locally.
2222

2323
### Building
@@ -30,7 +30,7 @@ $ cargo build --target wasm32-wasi --release
3030

3131
### Pushing
3232

33-
Detailed instructions for pushing a module can be found [here](../../../docs/intro/tutorial02.md).
33+
Detailed instructions for pushing a module can be found [here](https://docs.krustlet.dev/intro/tutorial02).
3434

3535
We hope to improve and streamline the build and push process in the future.
3636
However, for test purposes, the image will be pushed to the `webassembly` Azure

0 commit comments

Comments
 (0)