Kumanda/client
Dominik Meyer 617ac6358c
All checks were successful
continuous-integration/drone/push Build is passing
fix: fixed unquoted string in config file
2024-08-24 12:10:43 +02:00
..
conf fix: fixed unquoted string in config file 2024-08-24 12:10:43 +02:00
scripts feat: prepare given amandahosts file 2024-07-31 12:55:27 +02:00
Containerfile fix: copied wrong file 2024-08-01 09:27:06 +02:00
inetd.conf feat: start amanda client on container start 2024-07-29 11:42:42 +02:00
README.md chore: added links to project websites11309875 2024-08-16 20:31:09 +02:00

amanda-client

DESCRIPTION

A container for running an amanda-client of the [Amanda](https://amanda.org] project within a containerized environment. This image is based on Debian:stable-slim.

The image contains the minimal set of tools to run amanda-client and the client software is compiled from the latest stable release available at the time of build.

The container starts an inetd daemon that listens for connections and starts the amanda-client. It is always running as the user backup. This can not be changed at runtime only by creating an image of your own.

Authentication

This container only supports authentication via SSL certificates.

The container does not create any certificates

Certificates have to be provided by mounting a volume containing the certificate and key files:

  • mount the ca certificate file as /usr/local/etc/amanda/ssl/CA/crt.pem
  • mount the client certificate file as /usr/local/etc/amanda/ssl/me/crt.pem
  • mount the client key file as /usr/local/etc/amanda/ssl/me/private/key.pem

Amanda also requires an authorization file which amanda-servers are allowed to connect to each client.

  • mount an amandahosts file as /var/backups/amandahosts

A Typical amandahosts file looks like this:

''' amanda-server-kslave-amd6401.amanda.svc.cluster.local backup noop, selfcheck, sendsize, sendbackup, amdump '''

USAGE

You have to mount all volumes which should be backupd by Amanda into the container. For kubernetes you have to run one amanda-client container per namespace and mount all PhysicalVolumeClaims for that namespace into the container.

The path to this PVC has to be used within the amanda-servers disklist.

There are no environment variables for running the client. You just mount all the required files and start the container.

Project Websites

Authors

License

GPLv3