diff --git a/README.md b/README.md index 82f2a65..5f6a31b 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ Additionally, it is possible to define a custom processor if needed. * A **Java Virtual machine** (JVM) is required. * Download the latest `provs.jar` from: https://gitlab.com/domaindrivenarchitecture/provs/-/releases +* For server functionality (such as install k3s) download the latest `provs-server.jar` from: https://gitlab.com/domaindrivenarchitecture/provs/-/releases ### Show usage options @@ -49,6 +50,16 @@ Run: You'll be prompted for the password of the remote user. +### Install k3s + +```bash +java -jar provs-server.jar -i -r -u +# 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 diff --git a/build.gradle b/build.gradle index e19921c..e673e27 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'kotlinx-serialization' group = 'org.domaindrivenarchitecture.provs' -version = '0.8.28' +version = '0.8.29-SNAPSHOT' repositories { mavenCentral()