https://github.com/soreana/kvm-updater
https://github.com/soreana/kvm-updater
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/soreana/kvm-updater
- Owner: soreana
- License: apache-2.0
- Created: 2019-12-05T14:22:03.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-06-27T11:57:36.000Z (over 3 years ago)
- Last Synced: 2025-01-25T23:16:48.262Z (9 months ago)
- Language: Java
- Size: 87.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kvm-updater
This is a prototype implementation to update [CloudStack](https://cloudstack.apache.org/) KVM host automatically.
To run this project you need an eighter Maven or Docker.## Docker Build
Befor running any docker image you need to build it first. To build this project run below command
in root directory of project.```
$ docker build -t kvm-updater --build-arg build_target=kvm-updater .
```After successfull build, run it with below command:
```
$ docker run -it -v $(pwd)/conf/:/app/conf/:ro -v $(pwd)/logs/:/app/logs/ kvm-updater
```## Maven Build
You can also build and run this project with Maven as follow:
**build**:
```
$ mvn install
```
**Run**:
```
$ java -jar target/kvm-updater.jar
```
**Run**: (with a customized log configuration file)
```
$ java -Dlog4j.configurationFile=./log4j2.xml -jar target/kvm-updater.jar
```