-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* support check list * support check list * support check list * support check list * support check list * support check list * build test package * build test package * update GatherComponentLogHandler * update tar_gz_to_zip * delete zip on gather * delete zip on gather * delete zip on gather * delete zip on gather * delete zip on gather * gather use find to get remote log * rca add oms_full_trans * rca add oms_full_trans * update * fix core options * add oms config * check list add --all
- Loading branch information
1 parent
a513212
commit e692585
Showing
2 changed files
with
99 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
ocp: | ||
login: | ||
url: http://xx.xx.xx.xx:xx | ||
user: admin | ||
password: '' | ||
obcluster: | ||
ob_cluster_name: test | ||
db_host: 192.168.1.1 | ||
db_port: 2881 # default 2881 | ||
tenant_sys: | ||
user: root@sys # default root@sys | ||
password: "" | ||
servers: | ||
nodes: | ||
- ip: 192.168.1.1 | ||
- ip: 192.168.1.2 | ||
- ip: 192.168.1.3 | ||
global: | ||
ssh_username: '' # your username | ||
ssh_password: '' # password if need | ||
# ssh_port: 22 # your ssh port, default 22 | ||
# ssh_key_file: "" # your ssh-key file path if need | ||
# ssh_type: remote # ssh_type choice [remote, docker, kube] default remote | ||
# container_name: xxx # container_name for ssh_type is docker | ||
# The directory for oceanbase installed | ||
home_path: /root/observer | ||
# The directory for data storage. The default value is $home_path/store. | ||
# data_dir: /root/observer/store | ||
# The directory for clog, ilog, and slog. The default value is the same as the data_dir value. | ||
# redo_dir: /root/observer/store | ||
obproxy: | ||
obproxy_cluster_name: obproxy | ||
servers: | ||
nodes: | ||
- ip: 192.168.1.4 | ||
- ip: 192.168.1.5 | ||
- ip: 192.168.1.6 | ||
global: | ||
ssh_username: admin # your username | ||
ssh_password: '' # password if need | ||
# ssh_port: 22 # your ssh port, default 22 | ||
# ssh_key_file: "" # your ssh-key file path if need | ||
# ssh_type: remote # ssh_type choice [remote, docker, kube] default remote | ||
# container_name: xxx # container_name for ssh_type is docker | ||
# The directory for obproxy installed | ||
home_path: /root/obproxy | ||
oms: | ||
oms_name: oms_cluster | ||
servers: | ||
nodes: | ||
- ip: 192.168.1.4 | ||
- ip: 192.168.1.5 | ||
- ip: 192.168.1.6 | ||
global: | ||
ssh_username: admin # your username | ||
ssh_password: '' # password if need | ||
# ssh_port: 22 # your ssh port, default 22 | ||
# ssh_key_file: "" # your ssh-key file path if need | ||
# ssh_type: remote # ssh_type choice [remote, docker, kube] default remote | ||
# container_name: xxx # container_name for ssh_type is docker | ||
# The directory for oms log | ||
log_path: /home/admin/logs | ||
# The directory for oms task's run path | ||
run_path: /home/admin/run | ||
# The directory for oms task's store path | ||
store_path: /home/admin/store | ||
|