testnet-ops/service-provider-setup
2024-09-23 18:59:16 +05:30
..
templates Add playbook to setup and start webapp-ui 2024-09-23 16:51:57 +05:30
vars Update README 2024-09-23 18:59:16 +05:30
.gitignore Add directory for vars files 2024-09-23 14:38:49 +05:30
deploy-backend.yml Add playbook to setup and start webapp-ui 2024-09-23 16:51:57 +05:30
deploy-frontend.yml Add playbook to setup and start webapp-ui 2024-09-23 16:51:57 +05:30
README.md Update README 2024-09-23 18:59:16 +05:30
run-laconic-console.yml Add playbook to setup and start webapp-ui 2024-09-23 16:51:57 +05:30
run-laconicd.yml Add playbooks to setup fixturenet-laconicd and laconic-console 2024-09-20 14:11:12 +05:30
setup-container-registry.yml Add directory for vars files 2024-09-23 14:38:49 +05:30
setup-dns.yml Update README 2024-09-23 18:59:16 +05:30
setup-k8s.yml Update README 2024-09-23 18:59:16 +05:30
setup-user.yml Update README 2024-09-23 18:59:16 +05:30

service-provider-setup

Setup Ansible

To get started, follow the installation guide to setup ansible on your machine

Setup User dev

  • Create a new hosts.ini file:

    cp ../hosts.example.ini hosts.ini
    
  • Edit the hosts.ini file 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 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"
    # }
    
  • Execute the setup-user.yml Ansible playbook to create a user dev with sudo permissions:

    ansible-playbook setup-user.yml -i hosts.ini --extra-vars='{ "target_host": "deployment_host" }'
    

For the following playbooks, Update ansible_user in the hosts.ini file to the user that you created

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.yml file

    cd vars
    cp dns-vars.example.yml dns-vars.yml
    
  • Set the following values in the dns-vars.yml file

    # 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.yml ansible playbook to create the necessary DNS entries in DigitalOcean

    ansible-playbook setup-dns.yml
    

Setup k8s clusters

  • Create a PGP key on your target host

    gpg --full-generate-key
    
  • List the secret keys

    gpg --list-secret-keys --keyid-format=long
    
  • This will output something like this

    [keyboxd]
    ---------
    sec   rsa4096/0AFB10B643944C22 2024-05-03 [SC] [expires: 2025-05-03]
          17B3248D6784EC6CB43365A60AFB10B643944C22
    uid                 [ultimate] user <hello@laconic.com>
    

    Note the 0AFB10B643944C22 sequence of characters.

  • Copy the k8s-vars.example.yml file

    cd vars
    cp k8s-vars.example.yml k8s-vars.yml
    
  • Update gpg_key_id in k8s-vars.yml with the the following:

    target_host: "deployment_host"
    
    # The sequence you obtained in the previous step
    # eg: 0AFB10B643944C22
    gpg_key_id: ""
    
    # The passphrase used while creating the GPG key
    vault_passphrase: ""
    
    # Three letter identifier for your organization
    # eg: lcn
    org_id: ""
    
    # Three letter identifier for your location
    # eg: cad
    location_id: ""
    
    # your domain
    dns_domain: ""
    
  • Run the setup-k8s.yml ansible playbook:

    ansible-playbook setup-k8s.yml -i hosts.ini --extra-vars='{ target_host: "deployment_host" }' --user $USER
    

Setup Container Registry

  • Copy the container-vars.example.yml file

    cd vars
    cp container-vars.example.yml container-vars.yml
    
  • Update the following in the container-vars.yml file:

    # username for the container registry
    container_registry_username: ""
    
    # password for the container registry
    container_registry_password: ""
    
  • Run the setup-container-registry.yml ansible playbook

    ansible-playbook setup-container-registry.yml -i hosts.ini --extra-vars='{ target_host: "deployment_host" }' --user $USER
    

Setup laconicd and laconic console