Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

With our system administrator position eliminated, and the Digital Collections hosted on Heroku, we will be drastically simplifying our Ansible codebase. This puts a renewed focus on those functions of Ansible that were not being used to maintain the Digital Collections: if we can get rid of them too, we can get rid of Ansible altogether.

One important function of Ansible that we currently still need is the provisioning of the ArchivesSpace server.

Current function

For the purposes of this discussion, the ArchivesSpace server has three pieces of software on it:

  • A ) The ArchivesSpace software proper.

  • B ) The code and files that export ArchivesSpace EADs and HTML finding aids (in a GitHub repository).

    • At the moment, this code badly needs updates and repairs.

  • C ) An Apache server that serves the EADs and the HTML finding aids output by B )

Options

To entirely eliminate the ArchivesSpace server (and thus our dependency on the ArchivesSpace code in Ansible), we can take one or more of the following steps:

  • A ) Move the ArchivesSpace software proper to a hosted provider.

    • As part of this, we may wish to (or have to) also update the version of ArchivesSpace we use.

    • We may also decide, as part of this work, to turn on the public user interface.

      • If we turn on the PUI, the HTML finding aids export code can and should be eliminated.

  • B ) Run the export scripts from a hosted environment. It may be possible to run them from a serverless environment, such as AWS lambda.

  • C ) Serve the EADs, and, if we still need them, the HTML finding aids, from an S3 bucket. This allows us to remove Apache from our setup altogether.

Notes:

  • It may also be possible to get ArchivesSpace to serve the EADs directly. If so, it may be possible to avoid doing B ) and C ) altogether.

  • Because the ArchivesSpace server is the only one left that we use Ansible for, each of these steps has the side-effect of cutting out big chunks of our Ansible code. For instance, C) should allow us to nix all our Apache-related code in Ansible.

  • A ), B ) and C ) above could be treated as independent projects and be done in any order.

  • No labels