forked from cerc-io/testnet-ops
| .. | ||
| templates | ||
| .gitignore | ||
| dns-vars.example.yml | ||
| k8s-vars.example.yml | ||
| README.md | ||
| setup-dns.yml | ||
| setup-k8s.yml | ||
| setup-user.yml | ||
service-provider-setup
Setup Ansible
To get started, follow the installation guide to setup ansible on your machine
Configure DNS
Prerequisites
-
Buy a domain and configure nameservers to DigitalOcean
-
Generate a DigitalOcean access token
Create DNS entries in DigitalOcean
-
Copy the
dns-vars.example.ymlvars filecp dns-vars.example.yml dns-vars.yml -
Enter the
dns-vars.ymlfile# primary domain for which DNS records will be managed # eg: laconic.com domain: "" # specific prefix for subdomains # eg: lcn-cad subdomain_prefix: "" # The IP address to be used for the A record of the cluster control machine # eg: 23.111.78.179 cluster_control_ip: "" # DigitalOcean access token # eg: dop_v1... do_api_token: "" -
Run the
setup-dns.ymlansible playbook to create the necessary DNS entries in DigitalOceanansible-playbook setup-dns.yml
Setup User dev
-
Create a new
hosts.inifile:cp ../hosts.example.ini hosts.ini -
Edit the
hosts.inifile to run the playbook on a remote machine:[deployment_host] <host_name> ansible_host=<target_ip> ansible_user=<ssh_user> ansible_ssh_common_args='-o ForwardAgent=yes'- Replace
<host_name>with the desiredhostnameof the remote machine - Replace
<target_ip>with the IP address or hostname of the target machine - Replace
<ssh_user>withroot
- Replace
-
Verify that you are able to connect to the host using the following command:
ansible all -m ping -i hosts.ini -k # Expected output: # <host_name> | SUCCESS => { # "ansible_facts": { # "discovered_interpreter_python": "/usr/bin/python3.10" # }, # "changed": false, # "ping": "pong" # } -
Execute the
setup-user.ymlAnsible playbook to create a userdevwith sudo permissions:ansible-playbook setup-user.yml -i hosts.ini --extra-vars='{ "target_host": "deployment_host" }'