provs/README.md

189 lines
6.5 KiB
Markdown
Raw Normal View History

2022-02-25 16:03:55 +00:00
# provs
[![pipeline status](https://gitlab.com/domaindrivenarchitecture/provs/badges/master/pipeline.svg)](https://gitlab.com/domaindrivenarchitecture/provs/-/commits/master)
[<img src="https://domaindrivenarchitecture.org/img/delta-chat.svg" width=20 alt="DeltaChat"> chat over e-mail](mailto:buero@meissa-gmbh.de?subject=community-chat) | [<img src="https://meissa.de/images/parts/contact/mastodon36_hue9b2464f10b18e134322af482b9c915e_5501_filter_14705073121015236177.png" width=20 alt="M"> meissa@social.meissa-gmbh.de](https://social.meissa-gmbh.de/@meissa) | [Blog](https://domaindrivenarchitecture.org) | [Website](https://meissa.de)
2022-02-25 16:03:55 +00:00
## Purpose
2022-08-21 12:00:00 +00:00
provs provides cli-based tools for
* provisioning desktop software for different desktop types:
* basic
* office
* IDE
2022-08-21 12:00:00 +00:00
* provisioning a k3s server
* performing system checks
Tasks can be run locally or remotely.
2021-02-11 17:03:13 +00:00
2022-02-25 16:03:55 +00:00
## Try out
### Prerequisites
* A **Java Virtual machine** (JVM) is required.
2022-02-25 13:35:39 +00:00
* Install `jarwrapper` (e.g. `sudo apt install jarwrapper`)
2022-08-21 12:00:00 +00:00
* Then either download the binaries or build them yourself
#### Download the binaries
* Download the latest `provs-desktop.jar`,`provs-server.jar` and/or `provs-syspec.jar` from: https://gitlab.com/domaindrivenarchitecture/provs/-/releases
* Preferably into `/usr/local/bin` or any other folder where executables can be found by the system
* Make the jar-file executable e.g. by `chmod +x provs-desktop.jar`
2024-07-12 18:05:19 +00:00
* Check with `provs-desktop.jar -h` to show help information
2022-08-21 12:00:00 +00:00
2024-07-12 18:05:19 +00:00
###### Build the binaries
2022-08-21 12:00:00 +00:00
Instead of downloading the binaries you can build them yourself
* Clone this repository
* In the repository's root folder execute: `./gradlew install`. This will install the binaries in `/usr/local/bin`
### Provision a desktop
2022-08-21 12:00:00 +00:00
After having installed `provs-desktop.jar` (see prerequisites) execute:
2022-02-25 13:35:39 +00:00
`provs-desktop.jar <type> <target> [<options>]`
2022-02-25 13:35:39 +00:00
**type** can be:
* basic - install some basic packages)
* office - install office software (LibreOffice), E-Mail (Thunderbird), etc
* ide - same as office with additionally ide-software (VSCode, IntelliJ, etc)
2022-02-25 13:35:39 +00:00
**target** can be:
* `local`
* remote, e.g. `user123:mypassword@myhost.com` - general format is: <user[:password]@host> -
* be sure to have openssh-server installed
* add your preferred public key to known_hosts on the target machine
2022-02-25 13:35:39 +00:00
* if password is omitted, then ssh-keys will be used for authentication
* if password is omitted but option `-p` is provided, then the password will be prompted interactively
2022-02-25 13:35:39 +00:00
**options**
* `-p` for interactive password question
2022-09-07 12:15:07 +00:00
* `-o` for only executing one action, e.g.
* `-o verify` for verifying your installation
* `-o firefox` to install firefox from apt on ubuntu
2022-04-01 20:31:56 +00:00
2022-08-21 12:00:00 +00:00
#### Example
2022-02-25 16:06:02 +00:00
```bash
2022-09-07 12:15:07 +00:00
provs-desktop.jar basic local # installs a basic desktop on a local machine
provs-desktop.jar office myuser@myhost.com -p # installs an office desktop on a remote machine, prompting for password
provs-desktop.jar ide myuser@myhost.com # installs an ide on a local machine
provs-desktop.jar ide myuser@myhost.com -o firefox # installs firefox on a remote machine
provs-desktop.jar ide myuser@myhost.com -o verify # verifies the installation on a remote machine
2022-02-25 16:06:02 +00:00
```
2022-08-21 12:00:00 +00:00
### Provision a k3s Server
2022-02-25 13:35:39 +00:00
2022-02-25 16:06:02 +00:00
```bash
2022-09-07 12:15:07 +00:00
provs-server.jar k3s local # installs a k3s server locally
provs-server.jar k3s myuser@myhost.com # install remote k3s using ssh-authentication // option -p for password authentication
provs-server.jar k3s myuser@myhost.com -c path/to/k3sServerConfig.yaml -a path/to/application.yaml # as above, but define paths to your application and config yamls
2022-02-25 16:06:02 +00:00
```
2022-02-25 13:35:39 +00:00
For the remote server please configure a config file (default file name: server-config.yaml).
It has to be in the same folder where you execute the provs-server.jar command.
2022-05-08 18:43:56 +00:00
```yaml
fqdn: "myhostname.com"
node:
ipv4: "192.168.56.123" # ip address
2022-05-29 16:10:24 +00:00
echo: true # for demo reasons only - deploys an echo app
2022-05-11 07:57:24 +00:00
```
2022-05-08 18:43:56 +00:00
2022-05-11 07:57:24 +00:00
To add a grafana agent to your k3s installation add the following to the config:
```yaml
2022-05-08 18:43:56 +00:00
grafana:
user: "myusername" # username for the grafana data source
password:
source: "PLAIN" # PLAIN, GOPASS or PROMPT
parameter: "mypassword" # the password or api key for the grafana data source user
cluster: "mycluster" # a cluster name of your choice
```
2022-05-11 07:57:24 +00:00
To provision the grafana agent only to an existing k8s system, ensure that the config (as above) is available and execute:
```bash
provs-server.jar k3s myuser@myhost.com -o grafana
```
To add the hetzner csi driver and encrypted volumes to your k3s installation add the following to the config:
```yaml
hetzner:
hcloudApiToken:
source: "PLAIN" # PLAIN, GOPASS or PROMPT
parameter: "mypassword" # the api key for the hetzner cloud
encryptionPassphrase:
source: "PLAIN" # PLAIN, GOPASS or PROMPT
parameter: "mypassword" # the encryption passphrase for created volumes
```
To provision the grafana agent only to an existing k8s system, ensure that the config (as above) is available and execute:
```bash
provs-server.jar k3s myuser@myhost.com -o grafana
```
2022-09-07 12:15:07 +00:00
Reprovisioning the server can easily be done using the -r or --reprovision option.
```bash
provs-server.jar k3s myuser@myhost.com -c path/to/k3sServerConfig.yaml -a path/to/application.yaml -r #
```
2022-05-11 07:57:24 +00:00
2022-09-07 12:15:07 +00:00
Or you can add `reprovision: true` to your k3sServerConfig.yaml.
2022-05-08 18:43:56 +00:00
2022-08-21 12:00:00 +00:00
### Perform a system check
2022-05-11 07:59:45 +00:00
The default config-file for the system check is `syspec-config.yaml`, you can specify a different file with option `-c <config-file>`.
2022-04-01 20:31:56 +00:00
```bash
provs-syspec.jar local
2022-08-21 12:00:00 +00:00
# or remote with a custom config filename
provs-syspec.jar myuser@myhost.com -c my-syspec-config.yaml
2022-04-01 20:31:56 +00:00
```
Example output:
![Syspec output example](doc/resources/syspec-output-example.jpg "Syspec output example")
2022-04-01 20:31:56 +00:00
## Get help
To get help you can make use of the `-h` option:
```bash
2022-04-01 20:31:56 +00:00
provs-desktop.jar -h
provs-server.jar -h
provs-syspec.jar -h
```
2022-05-11 07:59:45 +00:00
2022-05-11 08:00:03 +00:00
Or to get help for subcommands e.g.
2022-05-11 07:59:45 +00:00
```bash
provs-desktop.jar ide -h
provs-server.jar k3s -h
```
2024-08-16 15:31:12 +00:00
## Development & mirrors
2024-08-16 15:31:12 +00:00
Development happens at: https://repo.prod.meissa.de/meissa/provs
Mirrors are:
* https://gitlab.com/domaindrivenarchitecture/provs (CI issues and PR)
* https://github.com/DomainDrivenArchitecture/provs
For more details about our repository model see: https://repo.prod.meissa.de/meissa/federate-your-repos
2024-08-16 15:31:12 +00:00
## Developer information
For using provs framework, add the required dependency to your project, then you can implement your own tasks e.g. by:
```kotlin
import org.domaindrivenarchitecture.provs.framework.core.Prov
fun Prov.myCustomTask() = task {
cmd("echo \"Hello world!\"")
}
```
See also [ForDevelopers.md](doc/ForDevelopers.md)