No description
Find a file
2021-12-06 22:03:36 +01:00
.idea-configs package refactoring 2021-09-09 18:37:41 +02:00
docs major refactoring of workplace for ddd and common cli reuse, add tests and puml 2021-12-06 21:47:02 +01:00
gradle/wrapper make progress info level configurable 2021-05-15 19:33:56 +02:00
src major refactoring of workplace for ddd and common cli reuse, add tests and puml 2021-12-06 21:47:02 +01:00
.gitignore Introduce DDD & add terraform installation 2021-09-07 17:59:03 +02:00
.gitlab-ci.yml v0.8.28 fix ci for release 2021-12-04 11:25:16 +01:00
build.gradle [skip ci] v0.8.30-SNAPSHOT 2021-12-06 22:03:36 +01:00
Dockerfile add Dockerfile 2021-02-25 20:11:00 +01:00
gradle.properties run container tests in ci 2021-02-25 19:57:06 +01:00
gradlew initial commit 2021-02-10 20:24:43 +01:00
gradlew.bat initial commit 2021-02-10 20:24:43 +01:00
LICENSE update README.md 2021-02-11 18:03:13 +01:00
README.md [skip ci] 0.8.29-SNAPSHOT update README.md for provisioning k3s 2021-12-04 12:41:38 +01:00
settings.gradle correct maven name to provs 2021-08-07 19:14:12 +02:00

Provs framework

Provs is a framework for automating tasks for provisioning reasons and other purposes.

It combines

  • being able to use the power of shell commands
  • a clear and detailed result summary of the built-in execution handling (incl. failure handling and reporting)
  • the convenience and robustness of a modern programming language

Write once, run everywhere

Tasks can be run

  • locally
  • remotely
  • in a local docker container
  • in a remote container

Additionally, it is possible to define a custom processor if needed.

Usage

Prerequisites

Show usage options

java -jar provs.jar -h

Provision a desktop workplace locally

Ensure a config file is in place (default config file name is "WorkplaceConfig.yaml") with at least the workplace type specified, e.g. type: MINIMAL

Possible types are currently: MINIMAL, OFFICE or IDE.

Run:

java -jar provs.jar -l

Provision a desktop workplace remotely

java -jar provs.jar -i -r <ip> -u <remote_username>

You'll be prompted for the password of the remote user.

Install k3s

java -jar provs-server.jar -i -r <ip or hostname> -u <remote_username>
# Example:
java -jar provs-server.jar -i -r 192.168.56.141 -u testuser

You'll be prompted for the password of the remote user.

Build the jar-file yourself

  • Clone this repo
  • Build the fatjar file by ./gradlew fatJarLatest
  • In folder build/libs you'll find the file provs.jar

The fatjar is a Java jar-file incl. all required dependencies.