ritual/playbook.yml

214 lines
6.0 KiB
YAML
Raw Permalink Normal View History

2024-09-15 00:42:15 +03:00
---
- name: System Setup and Configuration
hosts: all
become: yes
tasks:
- name: Set locale to C.UTF-8
command: localectl set-locale LANG=C.UTF-8
- name: Update /etc/bash.bashrc
blockinfile:
path: /etc/bash.bashrc
block: |
export HISTTIMEFORMAT='%F, %T '
export HISTSIZE=10000
export HISTFILESIZE=10000
shopt -s histappend
export PROMPT_COMMAND='history -a'
export HISTCONTROL=ignoredups
export LANG=C.UTF-8
export LC_ALL=C.UTF-8
alias ls='ls --color=auto'
shopt -s cmdhist
- name: Ensure ~/.inputrc exists
file:
path: /root/.inputrc
state: touch
- name: Update ~/.inputrc
blockinfile:
path: ~/.inputrc
block: |
"\e[A": history-search-backward
"\e[B": history-search-forward
- name: Ensure ~/.nanorc exists
file:
path: /root/.nanorc
state: touch
- name: Update ~/.nanorc
blockinfile:
path: ~/.nanorc
block: |
set nohelp
set tabsize 4
set tabstospaces
set autoindent
set positionlog
set backup
set backupdir /tmp/
set locking
include /usr/share/nano/*.nanorc
- name: Set hostname
shell: |
hostnamectl set-hostname {{ serverid }}
echo "127.0.1.1 {{ serverid }}" >> /etc/hosts
- name: Update and upgrade apt
apt:
update_cache: yes
upgrade: dist
force_apt_get: yes
register: apt_update_result
retries: 50
delay: 50
until: apt_update_result is succeeded
- name: Install necessary packages
apt:
name:
- apt-transport-https
- ca-certificates
- curl
- software-properties-common
- make
- iftop
- python3
state: present
- name: Install pip package web3
pip:
name: web3
extra_args: --break-system-packages
- name: Install Docker
shell: curl -sL https://get.docker.com | sudo sh -
- name: Ensure /etc/docker/daemon.json exists
file:
path: /etc/docker/daemon.json
state: touch
- name: Update Docker daemon configuration for journald logging
copy:
dest: /etc/docker/daemon.json
content: |
{
"log-driver": "journald"
}
- name: Restart Docker
service:
name: docker
state: restarted
- name: Docker login
shell: docker login -u {{ docker_username }} -p {{ docker_password }}
- name: Update journald log SystemMaxUse=2G configuration
lineinfile:
path: /etc/systemd/journald.conf
line: 'SystemMaxUse=2G'
insertafter: EOF
create: yes
- name: Restart journald
service:
name: systemd-journald
state: restarted
- name: Setup Foundry
shell: |
mkdir -p ~/foundry && cd ~/foundry
curl -L https://foundry.paradigm.xyz | bash
args:
executable: /bin/bash
- name: Run foundryup
shell: |
source ~/.bashrc && foundryup
args:
executable: /bin/bash
- name: Clone ritual-says-gm repository
git:
repo: https://gitea.vvzvlad.xyz/vvzvlad/ritual-says-gm.git
dest: ~/ritual-says-gm
force: yes
- name: Update wallet, private key and RPC URL in project
shell: |
cd ~/ritual-says-gm
bash update.sh {{ wallet }} {{ private_key }} {{ rpc_url }}
- name: Remove old Forge and Infernet SDK
shell: |
cd ~/ritual-says-gm
rm -rf projects/hello-world/contracts/lib/forge-std
rm -rf projects/hello-world/contracts/lib/infernet-sdk
- name: Install Forge and Infernet SDK
shell: |
cd ~/foundry && source ~/.bashrc && foundryup
cd ~/ritual-says-gm
cd projects/hello-world/contracts
forge install --no-commit foundry-rs/forge-std
forge install --no-commit ritual-net/infernet-sdk
args:
executable: /bin/bash
- name: Deploy container
shell: |
cd ~/ritual-says-gm && project=hello-world make deploy-container
- name: Deploy contracts
shell: cd ~/ritual-says-gm && project=hello-world make deploy-contracts 2>&1
register: contract_deploy_output
ignore_errors: yes
retries: 3
delay: 53
until: '"ONCHAIN EXECUTION COMPLETE & SUCCESSFUL" in contract_deploy_output.stdout'
- name: Update CallContract.s.sol with contract address
shell: |
cd ~/ritual-says-gm
contract_address=$(jq -r '.transactions[0].contractAddress' projects/hello-world/contracts/broadcast/Deploy.s.sol/8453/run-latest.json)
checksum_address=$(python3 toChecksumAddress.py $contract_address)
sed -i "s/SaysGM(.*/SaysGM($checksum_address);/" projects/hello-world/contracts/script/CallContract.s.sol
- name: Call contract
shell: cd ~/ritual-says-gm && project=hello-world make call-contract 2>&1
register: contract_output
ignore_errors: yes
retries: 3
delay: 55
until: '"ONCHAIN EXECUTION COMPLETE & SUCCESSFUL" in contract_output.stdout'
- name: Set Docker containers to restart unless stopped
shell: |
docker update --restart unless-stopped hello-world
docker update --restart unless-stopped infernet-node
docker update --restart unless-stopped deploy-redis-1
docker update --restart unless-stopped infernet-anvil
docker update --restart unless-stopped deploy-fluentbit-1
- name: Create APT configuration file to assume yes
copy:
dest: /etc/apt/apt.conf.d/90forceyes
content: |
APT::Get::Assume-Yes "true";
- name: Set permissions on APT configuration file
file:
path: /etc/apt/apt.conf.d/90forceyes
mode: '0644'
- name: Remove docker login credentials
shell: rm -rf /root/.docker/config.json
ignore_errors: yes