Galaxy Admin:
Cloud Admin:
master
)Some users do not get the activation email or are unable to find it. On request we can generate the link with the following procedure:
cd /opt/galaxy/server/
. ../venv/bin/activate
python /data/gxmnt/galaxy-dist/scripts/activation_link.py -c ~/config/galaxy.ini -e <their email>
Ansible Vault encrypts variables and files to protect sensitive content such as passwords or keys rather than leaving it visible as plaintext in playbooks or roles.To use Ansible Vault you need one or more passwords to encrypt and decrypt content. If you store your vault passwords in a third-party tool such as a secret manager, you need a script to access them. Use the passwords-with the ‘ansible-vault’ command line tool to create and view encrypted variables, create encrypted files, encrypt existing files, or edit, re-key, or decrypt files.
cd infrastructure-playbook/secret_group_vars/
ansible-vault create keycloak.yml
to create new encrypt file.Then ansible asks for:
New Vault password:
Confirm New Vault password: It is recommended to use the previously set Vault password for smooth running of playbook
ansible-vault view keycloak.yml
and can be edited by the command ansible-vault edit keycloak.yml
followed by entering the given Vault password.git push