# README
clustertest
Clustertest is an automated system testing tool. It possible to build/deploy a system, execute test cases, collect logs and destroy system. These can be done without manual operation.
Requirement
- Linux Server
- Proxmox VE nodes
Installation
$ go install -u github.com/yuuki0xff/clustertest/cmd/clustertest
$ go install -u github.com/yuuki0xff/clustertest/cmd/clustertestd
Command Usage
clustertest task run
clustertest task start
clustertest task list
clustertest task wait [ID-or-Name]
clustertest task output [ID-or-Name]
Example
Example config: See clustertest.yaml
.
Example of running task synchronously:
$ clustertestd &
$ clustertest task run clustertest.yaml
Status: finished
-------------------- Before --------------------
ExitCode: 0
Host: [email protected]
Start: 2019-06-12 19:26:27.442614574 +0900 JST
End: 2019-06-12 19:26:38.259986893 +0900 JST
Output:
[email protected]$ echo OK
Warning: Permanently added '192.168.189.77' (ECDSA) to the list of known hosts.
OK
[email protected]$ hostname
Warning: Permanently added '192.168.189.77' (ECDSA) to the list of known hosts.
proxmox-provisioner-test-test-cluster-test-vm-0
================================
[email protected]$ echo OK
Warning: Permanently added '192.168.189.78' (ECDSA) to the list of known hosts.
OK
[email protected]$ hostname
Warning: Permanently added '192.168.189.78' (ECDSA) to the list of known hosts.
proxmox-provisioner-test-test-cluster-test-vm-1
-------------------- Main --------------------
ExitCode: 0
Output:
-------------------- After --------------------
ExitCode: 0
Output:
Example of running task asynchronously:
$ clustertest task start clustertest.yaml
0
$ clustertest task list
ID Status
-- --------
0 running
$ clustertest task wait 0
$ clustertest task output 0
Status: finished
-------------------- Before --------------------
(omitted)
-------------------- Main --------------------
ExitCode: 0
Output:
-------------------- After --------------------
ExitCode: 0
Output:
How to use ProxmoxVE provisioner
- Create templates with cloud-init support.
- Copy templates to all nodes.
Naming conventions for templates: "<original_template_name>-<node_name>" - Create clustertest configuration. See
clustertest.yaml
. clustertest task start <file_name>
# Packages
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author