Skip to content

Commit 8034d37

Browse files
author
kakzhou719
committed
add new doc
add all docs add sealer cli
1 parent 7f7e696 commit 8034d37

Some content is hidden

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

74 files changed

+1336
-3280
lines changed

.gitignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.exe~
4+
*.dll
5+
*.so
6+
*.dylib
7+
_output
8+
# Test binary, built with `go test -c`
9+
*.test
10+
*.out
11+
.idea
12+
*.swp
13+
src/.vuepress/dist
14+
node_modules
15+
package-lock.json
16+

README.md

+15-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
11
# How to run this page
22

3-
This page generated by [vuepress](https://github.com/vuepress/create-vuepress-site)
3+
1. Install node on your host.
44

5-
How to build static files:
5+
`wget https://nodejs.org/dist/v14.21.1/node-v14.21.1.pkg`
6+
7+
2. How to build static files
68

79
```
10+
npm install
811
npm run build
9-
cd .vuepress/dist
1012
```
1113

12-
Vuepress syntax error will cause the failure of building. [docs](https://vuepress.vuejs.org/guide/using-vue.html)
14+
npm will generate static files in src/.vuepress/dist.
15+
16+
3. How to start local http server
17+
18+
```
19+
npm install
20+
npm run dev
21+
```
22+
23+
npm will start local http server : http://localhost:8080

src/.vuepress/components/Foo/Bar.vue

100755100644
File mode changed.

src/.vuepress/components/OtherComponent.vue

100755100644
File mode changed.

src/.vuepress/components/demo-component.vue

100755100644
File mode changed.

src/.vuepress/config.js

100755100644
+44-1
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,56 @@ enSideBar = {
2323
children: [
2424
'getting-started/introduction',
2525
'getting-started/quick-start',
26+
<<<<<<< HEAD
2627
'getting-started/run-cloudimage',
2728
'getting-started/using-clusterfile',
2829
'getting-started/build-cloudimage',
2930
'getting-started/build-appimage',
3031
'getting-started/config',
3132
'getting-started/plugin',
3233
'getting-started/applications',
34+
=======
35+
]
36+
},
37+
{
38+
title: 'Command Line',
39+
collapsable: true,
40+
children: [
41+
'command/sealer',
42+
'command/image/sealer_build',
43+
'command/image/sealer_images',
44+
'command/image/sealer_inspect',
45+
'command/image/sealer_load',
46+
'command/image/sealer_login',
47+
'command/image/sealer_logout',
48+
'command/image/sealer_manifest',
49+
'command/image/sealer_manifest_add',
50+
'command/image/sealer_manifest_create',
51+
'command/image/sealer_manifest_delete',
52+
'command/image/sealer_manifest_inspect',
53+
'command/image/sealer_manifest_push',
54+
'command/image/sealer_manifest_remove',
55+
'command/image/sealer_pull',
56+
'command/image/sealer_push',
57+
'command/image/sealer_rmi',
58+
'command/image/sealer_save',
59+
'command/image/sealer_tag',
60+
'command/cluster/sealer_cert',
61+
'command/cluster/sealer_delete',
62+
'command/cluster/sealer_join',
63+
'command/cluster/sealer_run-app',
64+
'command/cluster/sealer_run',
65+
'command/cluster/sealer_scale-up',
66+
'command/alpha/sealer_alpha_exec',
67+
]
68+
},
69+
{
70+
title: 'Core Concept',
71+
collapsable: true,
72+
children: [
73+
'concept/kubefile',
74+
'concept/clusterfile',
75+
>>>>>>> cc66085 (add sealer cli)
3376
]
3477
},
3578
{
@@ -271,4 +314,4 @@ module.exports = {
271314
'@vuepress/plugin-back-to-top',
272315
'@vuepress/plugin-medium-zoom',
273316
]
274-
}
317+
}

src/.vuepress/enhanceApp.js

100755100644
File mode changed.

src/.vuepress/styles/index.styl

100755100644
File mode changed.

src/.vuepress/styles/palette.styl

100755100644
File mode changed.

src/docs/advanced/architecture.md

-36
This file was deleted.

src/docs/advanced/arm-cloudimage.md

-38
This file was deleted.

src/docs/advanced/clusterfile.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Clusterfile

src/docs/advanced/clusterimage.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Clusterimage

src/docs/advanced/config.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Config

src/docs/advanced/containerd-baseimage.md

-1
This file was deleted.

0 commit comments

Comments
 (0)