23.10.012 changelog

23.10.012

Released on 31 October, 2023.

Server

Fixes

  • Fixed an issue where a joining controller does not fully clean up before initializing in the cluster and becomes unbootable without manual intervention

Features

  • Added the ability to initialize the first users from cloud init.

    If you create a file in cloud init at /var/lib/bowtie/init-users with email addresses and argon2 hashed passwords, those users will be granted administrative rights at first boot.

    To generate the hash for password “hunter 2” you would use this command:

    echo -n "hunter2" | argon2 $(uuidgen) -i -t 3 -p 1 -m 12 -e
    

    And then put the contents into this file

    issac@example.com:$argon2i$v=19$m=4096,t=3,p=1$ZDhmOTB..........
    

Documentation

Features

  • Added an example of how to reset Caddy to stock defaults in the knowledge base documentation.