mirror of
https://github.com/jbowdre/library-syncer.git
synced 2024-11-21 17:32:18 +00:00
update readme
This commit is contained in:
parent
a05941eb49
commit
76d44d9316
1 changed files with 66 additions and 8 deletions
74
README.md
74
README.md
|
@ -7,6 +7,8 @@ The solution leverages lightweight Docker containers in server and client roles.
|
|||
|
||||
Once the sync has completed, each client runs a [Python script](client/build/update_library_manifests.py) to generate/update a Content Library JSON manifest which is then published over HTTP/HTTPS (courtesy of [Caddy](https://caddyserver.com/)). Traditional Content Libraries at the local site can connect to this as a [subscribed library](https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-9DE2BD8F-E499-4F1E-956B-67212DE593C6.html) to make the synced items available within vSphere.
|
||||
|
||||
After the initial, immediate sync, subsequent syncs are initiated through a `cron` scheduled task.
|
||||
|
||||
The rough architecture looks something like this:
|
||||
```
|
||||
|
|
||||
|
@ -39,17 +41,18 @@ The rough architecture looks something like this:
|
|||
```
|
||||
|
||||
## Prerequisites
|
||||
### Rsync user SSH keypair
|
||||
### Docker and `docker-compose`
|
||||
You'll need Docker (and preferably also `docker-compose`) on both the server and client VMs. Installing and configuring Docker is beyond the scope of this document as it will largely depend on what operating system you settle on for the Docker hosts.
|
||||
|
||||
### SSH keypair for `rsync` user
|
||||
The server image includes a `syncer` user account which the clients will use to authenticate over SSH. This account is locked down and restricted with `rrsync` to only be able to run `rsync` commands. All that you need to do is generate a keypair for the account to use:
|
||||
|
||||
```shell
|
||||
ssh-keygen -t rsa -b 4096 -N "" -f id_syncer
|
||||
```
|
||||
|
||||
Place the generated `id_syncer` *private* key in `./data/ssh/` on the *client* Docker hosts, and the `id_syncer.pub` *public* key in `./data/ssh/` on the *server* Docker host.
|
||||
|
||||
### TLS certificate pair (optional)
|
||||
By default, the client will publish its library over HTTP. If you set the `TLS_NAME` environment variable to the server's publicly-accessible FQDN, the Caddy web server will [automatically retrieve and apply a certificate issued by Let's Encrypt](https://caddyserver.com/docs/automatic-https). For deployments on internal networks which need to use a certificate issued by an internal CA, you can set `TLS_CUSTOM_CERT=true` and place the PEM-formatted certificate *and* private key in the client's `./data/certs/` directory, named `cert.pem` and `key.pem` respectively.
|
||||
By default, the client will publish its library over HTTP. If you set the `TLS_NAME` environment variable to the server's publicly-accessible FQDN, the Caddy web server will [automatically retrieve and apply a certificate issued by Let's Encrypt](https://caddyserver.com/docs/automatic-https). For deployments on internal networks which need to use a certificate issued by an internal CA, you can set `TLS_CUSTOM_CERT=true` and add the private key and certificate to the clients - more on that in a minute.
|
||||
|
||||
You can generate the cert signing request and key in one shot like this:
|
||||
```shell
|
||||
|
@ -61,17 +64,35 @@ openssl req -new \
|
|||
|
||||
## Usage
|
||||
### Server
|
||||
Directory structure:
|
||||
#### Preparation
|
||||
VM templates should be stored on the Docker host in its own folder under the `./data/library/` path. These should be in OVF format, _not_ OVA format, so that they can be made available in the vSphere inventory on the remote side.
|
||||
|
||||
(For extra credit, you can export the `./data/library/` path as an NFS share, mount that as a datastore in vSphere, and create a new local Content Library atop that. This would make it an easy target for a CI/CD pipeline to crank out new/updated templates on a regular schedule, and those would then be automatically available to the `library-syncer` clients without any additional effort. *Just a thought.*)
|
||||
|
||||
The server also needs the `id_syncer.pub` public key which was [generated earlier](#ssh-keypair-for-rsync-user). Place it in the `./data/ssh/` folder.
|
||||
|
||||
Example folder structure:
|
||||
```
|
||||
.
|
||||
├── data
|
||||
│ ├── library
|
||||
| | ├── Template_1
|
||||
| | | ├── template_1.ovf
|
||||
| | | └── template_1.vmdk
|
||||
| | ├── Template_2
|
||||
| | | ├── template_2.ovf
|
||||
| | | └── template_2.vmdk
|
||||
│ └── ssh
|
||||
│ └── id_syncer.pub
|
||||
└── docker-compose.yaml
|
||||
```
|
||||
|
||||
`docker-compose.yaml`:
|
||||
#### Configuration
|
||||
Strangely enough, the server side is a lot easier to configure than the client. The container just needs two volumes (one to hold the SSH key, and the other to hold the library content), and one network port on which to listen for incoming `rsync`-over-SSH connections from the clients.
|
||||
|
||||
You can change the port mapping if you'd like, just as long as it's not a port which will be used by the Docker host itself so that incoming connections can be tunneled into the container.
|
||||
|
||||
Here's an example `docker-compose.yaml` for the server:
|
||||
```yaml
|
||||
version: '3'
|
||||
services:
|
||||
|
@ -88,8 +109,21 @@ services:
|
|||
- './data/library:/syncer/library'
|
||||
```
|
||||
|
||||
#### Execution
|
||||
Once everything is in place, start the server:
|
||||
```shell
|
||||
docker-compose up -d
|
||||
```
|
||||
|
||||
### Client
|
||||
Directory structure:
|
||||
#### Preparation
|
||||
Like the server, the client also needs a `./data/library` directory to store the synced templates, but this should be empty to start with.
|
||||
|
||||
Be sure to drop the `id_syncer` private key you [generated earlier](#ssh-keypair-for-rsync-user) in `./data/ssh`.
|
||||
|
||||
If you need to use a [custom TLS certificate](#tls-certificate-pair-optional), place the PEM-formated `cert.pem` and `key.pem` in `./data/certs`.
|
||||
|
||||
Example folder structure:
|
||||
```
|
||||
.
|
||||
├── data
|
||||
|
@ -102,7 +136,24 @@ Directory structure:
|
|||
└── docker-compose.yaml
|
||||
```
|
||||
|
||||
`docker-compose.yaml`:
|
||||
#### Configuration
|
||||
Some decisions need to be made on the client side, and most of those will be expressed in the form of environment variables passed into the container:
|
||||
|
||||
| Variable | Example value | Description |
|
||||
|:--- |:--- |:--- |
|
||||
| `SYNC_PEER` | `deb01.lab.bowdre.net` | FQDN or IP of the `library-syncer` server to which the client will connect |
|
||||
| `SYNC_PORT` | `2222` | SSH port for connecting to the server |
|
||||
| `SYNC_SCHEDULE` | `0 21 * * 5` | `cron`-formatted schedule for when the client should initiate a sync (example syncs at 9PM on Friday night) |
|
||||
| `SYNC_DELAY` | `true` | if true, sleeps a random number of seconds before begining the sync |
|
||||
| `SYNC_DELAY_MAX_SECONDS` | `21600` | maximum seconds to sleep (example will be delayed up to 6 hours) |
|
||||
| `TLS_NAME` | `library.bowdre.net` | if set, the FQDN used for the client's web server; if not set, the library will be served strictly over HTTP |
|
||||
| `TLS_CUSTOM_CERT` | `true` | if `true`, the web server will expect to find a custom certificate *and private key* in the `./data/certs` volume |
|
||||
|
||||
Introducing a random sync delay might be useful if you have a bunch of remote sites and don't want them to attempt to sync all at once, but you're too lazy to manually customize the schedule for each one of them (no judgment!).
|
||||
|
||||
If you specify a `TLS_NAME` but don't set `TLS_CUSTOM_CERT`, the Caddy web server will automatically request and install a Let's Encrypt certificate for your specified FQDN. For this to work, the name must resolve in public DNS, and any firewalls must permit inbound traffic on port 80. Otherwise, the ACME validation will fail and you'll need to go back and try the `TLS_CUSTOM_CERT` route instead.
|
||||
|
||||
Here's a sample `docker-compose.yaml` for the client:
|
||||
```yaml
|
||||
version: '3'
|
||||
services:
|
||||
|
@ -116,6 +167,7 @@ services:
|
|||
- SYNC_PORT=2222
|
||||
- SYNC_SCHEDULE=0 21 * * 5
|
||||
- SYNC_DELAY=true
|
||||
- SYNC_DELAY_MAX_SECONDS=21600
|
||||
- TLS_NAME=library.lab.bowdre.net
|
||||
- TLS_CUSTOM_CERT=true
|
||||
ports:
|
||||
|
@ -126,3 +178,9 @@ services:
|
|||
- './data/library:/syncer/library'
|
||||
- './data/certs:/etc/caddycerts'
|
||||
```
|
||||
|
||||
#### Execution
|
||||
As before, just bring it up:
|
||||
```shell
|
||||
docker-compose up -d
|
||||
```
|
Loading…
Reference in a new issue