2024-09-09 06:11:31 +00:00
|
|
|
- name: Setup go-nitro on host
|
|
|
|
hosts: "{{ target_host }}"
|
|
|
|
|
|
|
|
vars_files:
|
|
|
|
- setup-vars.yml
|
|
|
|
- bridge-vars.yml
|
|
|
|
|
|
|
|
environment:
|
|
|
|
PATH: "{{ ansible_env.PATH }}:/home/{{ansible_user}}/bin"
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: Create directory for nitro bridge deployment
|
|
|
|
file:
|
|
|
|
path: "{{ nitro_directory }}"
|
|
|
|
state: directory
|
|
|
|
|
|
|
|
- name: Change owner of nitro-directory
|
|
|
|
file:
|
|
|
|
path: "{{ nitro_directory }}"
|
|
|
|
owner: "{{ansible_user}}"
|
|
|
|
group: "{{ansible_user}}"
|
|
|
|
state: directory
|
|
|
|
recurse: yes
|
2024-09-17 13:55:18 +00:00
|
|
|
|
|
|
|
- name: Clone go-nitro stack repo
|
|
|
|
expect:
|
|
|
|
command: laconic-so fetch-stack git.vdb.to/cerc-io/nitro-stack --git-ssh --pull
|
|
|
|
responses:
|
|
|
|
"Are you sure you want to continue connecting \\(yes/no/\\[fingerprint\\]\\)\\?": "yes"
|
|
|
|
timeout: 300
|
|
|
|
ignore_errors: yes
|
2024-09-09 06:11:31 +00:00
|
|
|
|
|
|
|
- name: Clone repositories required for nitro-stack
|
2024-09-17 13:55:18 +00:00
|
|
|
expect:
|
|
|
|
command: laconic-so --stack {{ ansible_env.HOME }}/cerc/nitro-stack/stack-orchestrator/stacks/bridge setup-repositories --git-ssh --pull
|
|
|
|
responses:
|
|
|
|
"Are you sure you want to continue connecting \\(yes/no/\\[fingerprint\\]\\)\\?": "yes"
|
|
|
|
timeout: 300
|
2024-09-09 06:11:31 +00:00
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- name: Build containers
|
|
|
|
command: laconic-so --stack ~/cerc/nitro-stack/stack-orchestrator/stacks/bridge build-containers --force-rebuild
|
|
|
|
when: not skip_container_build
|
|
|
|
|
|
|
|
- name: Check if deployment exists for bridge node
|
|
|
|
stat:
|
|
|
|
path: "{{ nitro_directory }}/bridge-deployment"
|
|
|
|
register: bridge_deployment
|
|
|
|
|
|
|
|
- name: Generate spec file for bridge deployment
|
|
|
|
template:
|
|
|
|
src: "./templates/specs/bridge-nitro-spec.yml.j2"
|
|
|
|
dest: "{{ nitro_directory }}/bridge-nitro-spec.yml"
|
|
|
|
when: not bridge_deployment.stat.exists
|
|
|
|
|
|
|
|
- name: Create a deployment for the bridge node
|
|
|
|
command: laconic-so --stack ~/cerc/nitro-stack/stack-orchestrator/stacks/bridge deploy create --spec-file bridge-nitro-spec.yml --deployment-dir bridge-deployment
|
|
|
|
args:
|
|
|
|
chdir: "{{ nitro_directory }}"
|
|
|
|
when: not bridge_deployment.stat.exists
|
|
|
|
|
|
|
|
- name: Start the nitro bridge
|
|
|
|
command: laconic-so deployment --dir bridge-deployment start
|
|
|
|
args:
|
|
|
|
chdir: "{{ nitro_directory }}"
|