testnet-ops/user-setup
nabarun 65be098ce9 Add steps to clean up service provider setup (#14)
Part of [Service Provider Setup](https://www.notion.so/Service-provider-setup-a09e2207e1f34f3a847f7ce9713b7ac5)
- Move user setup playbook to separate directory
- Remove unneeded variables

Co-authored-by: Adw8 <adwaitgharpure@gmail.com>
Reviewed-on: #14
2024-10-23 06:53:07 +00:00
..
.gitignore Add steps to clean up service provider setup (#14) 2024-10-23 06:53:07 +00:00
README.md Add steps to clean up service provider setup (#14) 2024-10-23 06:53:07 +00:00
setup-user.yml Add steps to clean up service provider setup (#14) 2024-10-23 06:53:07 +00:00
user-vars.example.yml Add steps to clean up service provider setup (#14) 2024-10-23 06:53:07 +00:00

user-setup

Prerequisites

  • Setup Ansible: follow the installation guide to setup ansible on your machine.

  • Setup a remote machine with passwordless SSH login for the root user

  • Install passlib used for handling encrypted passwords when setting up a user

    pip install passlib
    

Setup a user

  • Create a new hosts.ini file:

    cd user-setup/
    cp ../hosts.example.ini hosts.ini
    
  • Edit the hosts.ini file:

    [deployment_host]
    <host_name> ansible_host=<target_ip> ansible_user=<ssh_user> ansible_ssh_common_args='-o ForwardAgent=yes'
    
    • Replace <host_name> with the desired hostname of the remote machine
    • Replace <target_ip> with the IP address or hostname of the target machine
    • Replace <ssh_user> with root
  • Verify that you are able to connect to the host using the following command:

    ansible all -m ping -i hosts.ini
    
    # Expected output:
    
    # <host_name> | SUCCESS => {
    #  "ansible_facts": {
    #      "discovered_interpreter_python": "/usr/bin/python3.10"
    #  },
    #  "changed": false,
    #  "ping": "pong"
    # }
    
  • Setup user-vars.yml using the example file

    cp user-vars.example.yml user-vars.yml
    
  • Edit the user-vars.yml file:

    # name of the user you want to setup on the target host
    username: ""
    
    # password of the user you want to setup on the target host
    password: ""
    
    # path to the ssh key on your machine, eg: "/home/user/.ssh/id_rsa.pub"
    path_to_ssh_key: ""
    
  • Execute the setup-user.yml Ansible playbook to create a user with passwordless sudo permissions:

    LANG=en_US.utf8 ansible-playbook setup-user.yml -i hosts.ini