1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# 获取安装帮助
doryctl install -h
install dory-core and relative components with docker-compose or kubernetes
Usage:
doryctl install
doryctl install [command]
Examples:
##############################
please follow these steps to install dory-core with docker:
# 1. check prerequisite for install with docker
doryctl install check --mode docker
# 2. pull relative docker images from docker hub
doryctl install pull
# 3. print docker install mode config settings
doryctl install print --mode docker > install-config-docker.yaml
# 4. update install config file by manual
vi install-config-docker.yaml
# 5. install dory with docker
doryctl install run -o readme-install-docker -f install-config-docker.yaml
##############################
# please follow these steps to install dory-core with kubernetes:
# 1. check prerequisite for install with kubernetes
doryctl install check --mode kubernetes
# 2. pull relative kubernetes images from docker hub
doryctl install pull
# 3. print kubernetes install mode config settings
doryctl install print --mode kubernetes > install-config-kubernetes.yaml
# 4. update install config file by manual
vi install-config-kubernetes.yaml
# 5. install dory with kubernetes
doryctl install run -o readme-install-kubernetes -f install-config-kubernetes.yaml
Available Commands:
check check install prerequisite
print print install settings YAML file
pull pull all docker images
run run install dory-core with docker or kubernetes
script create dory-core install scripts and config files
Flags:
-h, --help help for install
Global Flags:
--configFile string doryctl.yaml config file (default is $HOME/.doryctl/doryctl.yaml)
-i, --insecure if true, the servers certificate will not be checked for validity. This will make your HTTPS connections insecure
--logFile string log File path (if set, save logs in this path)
--logLevel string show log level, options: ERROR, WARN, INFO, DEBUG (default "INFO")
-s, --serverURL string DoryEngine server URL, example: http://dory.example.com:8080
--timeout duration DoryEngine server connection timeout settings, example: 2s, 1m (default 2s)
Use "doryctl install [command] --help" for more information about a command.
|