Skip to content

Commit

Permalink
release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
QianChenglong committed Dec 16, 2019
1 parent 2cf65ad commit 7956646
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
TKEStack use tke-installer tool to deploy. [refer](docs/user/tke-installer/normal-installation.md)

```
version=v1.0.0 && wget https://tke-release-1251707795.cos.ap-guangzhou.myqcloud.com/tke-installer-x86_64-$version.run{,.sha256} && sha256sum --check --status tke-installer-x86_64-$version.run.sha256 && chmod +x tke-installer-x86_64-$version.run && ./tke-installer-x86_64-$version.run
version=v1.0.1 && wget https://tke-release-1251707795.cos.ap-guangzhou.myqcloud.com/tke-installer-x86_64-$version.run{,.sha256} && sha256sum --check --status tke-installer-x86_64-$version.run.sha256 && chmod +x tke-installer-x86_64-$version.run && ./tke-installer-x86_64-$version.run
```

## Architecture
Expand Down
4 changes: 2 additions & 2 deletions docs/user/tke-installer/installing-offline.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
1. Download the installation package with a network-connectable machine.

version=v1.0.0 && wget https://tke-release-1251707795.cos.ap-guangzhou.myqcloud.com/tke-installer-x86_64-$version.run{,.sha256}
version=v1.0.1 && wget https://tke-release-1251707795.cos.ap-guangzhou.myqcloud.com/tke-installer-x86_64-$version.run{,.sha256}

2. Upload to a machine(A) in the target environment through tools such as rz or scp.
3. Run the installation package in the machine(A).

version=v1.0.0 && sha256sum --check --status tke-installer-x86_64-$version.run.sha256 && chmod +x tke-installer-x86_64-$version.run && ./tke-installer-x86_64-$version.run
version=v1.0.1 && sha256sum --check --status tke-installer-x86_64-$version.run.sha256 && chmod +x tke-installer-x86_64-$version.run && ./tke-installer-x86_64-$version.run

4. The remaining reference installation steps.
4 changes: 2 additions & 2 deletions docs/user/tke-installer/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ Flags:
Installer run in ui mode by default, provide a user-friendly visual installation interface.
Command line mode can be enabled through no-ui, which facilitates automated installation for advanced users.
Config should provide though an json file(`/opt/tke-insatller/conf/tke.json`) and should rerun tke-installer container.
`version=v1.0.0 && docker run --name tke-installer -d --privileged --net=host -v/etc/hosts:/app/hosts -v/etc/docker:/etc/docker -v/var/run/docker.sock:/var/run/docker.sock -v$DATA_DIR:/app/data -v$INSTALL_DIR/conf:/app/conf --entrypoint="/app/bin/tke-installer --no-ui" tkestack/tke-installer:$version`
`version=v1.0.1 && docker run --name tke-installer -d --privileged --net=host -v/etc/hosts:/app/hosts -v/etc/docker:/etc/docker -v/var/run/docker.sock:/var/run/docker.sock -v$DATA_DIR:/app/data -v$INSTALL_DIR/conf:/app/conf --entrypoint="/app/bin/tke-installer --no-ui" tkestack/tke-installer:$version`
[Configuration file format](./installer-config.md)

5. How to automate custom logic or integrate your own deployment?
Expand All @@ -171,4 +171,4 @@ Flags:

If you want to automate integration hooks, you can modify the container creation parameters of tke-installer.
Assuming your hook has been placed in `/opt/tke-installer/hooks`, You should rerun tke-installer container.
`version=v1.0.0 && hooks=/opt/tke-installer/hooks && docker run --name tke-installer -d --privileged --net=host -v/etc/hosts:/app/hosts -v/etc/docker:/etc/docker -v/var/run/docker.sock:/var/run/docker.sock -v$DATA_DIR:/app/data -v$INSTALL_DIR/conf:/app/conf -v$hooks:/app/hooks tkestack/tke-installer:$version`
`version=v1.0.1 && hooks=/opt/tke-installer/hooks && docker run --name tke-installer -d --privileged --net=host -v/etc/hosts:/app/hosts -v/etc/docker:/etc/docker -v/var/run/docker.sock:/var/run/docker.sock -v$DATA_DIR:/app/data -v$INSTALL_DIR/conf:/app/conf -v$hooks:/app/hooks tkestack/tke-installer:$version`
2 changes: 1 addition & 1 deletion docs/user/tke-installer/normal-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ TKEStack is tested on the following operating system:

First Log in to your Linux host and install tke-installer via this command:

version=v1.0.0 && wget https://tke-release-1251707795.cos.ap-guangzhou.myqcloud.com/tke-installer-x86_64-$version.run{,.sha256} && sha256sum --check --status tke-installer-x86_64-$version.run.sha256 && chmod +x tke-installer-x86_64-$version.run && ./tke-installer-x86_64-$version.run
version=v1.0.1 && wget https://tke-release-1251707795.cos.ap-guangzhou.myqcloud.com/tke-installer-x86_64-$version.run{,.sha256} && sha256sum --check --status tke-installer-x86_64-$version.run.sha256 && chmod +x tke-installer-x86_64-$version.run && ./tke-installer-x86_64-$version.run

> Note: this command can be found at [TKEStack Release](https://github.com/tkestack/tke/releases)
>
Expand Down

0 comments on commit 7956646

Please sign in to comment.