Add ansible playbook to setup and run L2 deployment #3
@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
- Set the `LANG` variable to en_US.UTF-8:
|
- Set the `LANG` variable to en_US.UTF-8:
|
||||||
|
|
||||||
```Copy code
|
```
|
||||||
LANG="en_US.UTF-8"
|
LANG="en_US.UTF-8"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ The following commands have to be executed in [`l2-setup`](./) directory
|
|||||||
|
|
||||||
- To setup and run L2, execute the `run-optimism.yml` Ansible playbook by running the following command.
|
- To setup and run L2, execute the `run-optimism.yml` Ansible playbook by running the following command.
|
||||||
|
|
||||||
NOTE: By default, deployments are created in the `l2-setup/out` directory. To change this location, update the `l2_directory` variable in the [vars.yml](./vars.yml) file.
|
NOTE: By default, deployments are created in the `l2-setup/out` directory. To change this location, update the `l2_directory` variable in the [setup-vars.yml](./setup-vars.yml) file.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
LANG=en_US.utf8 ansible-playbook -i localhost, --connection=local run-optimism.yml --extra-vars='{ "target_host": "localhost"}' -kK --user $USER
|
LANG=en_US.utf8 ansible-playbook -i localhost, --connection=local run-optimism.yml --extra-vars='{ "target_host": "localhost"}' -kK --user $USER
|
||||||
|
@ -34,10 +34,7 @@
|
|||||||
command: laconic-so --stack ~/cerc/fixturenet-optimism-stack/stack/fixturenet-optimism build-containers --force-rebuild
|
command: laconic-so --stack ~/cerc/fixturenet-optimism-stack/stack/fixturenet-optimism build-containers --force-rebuild
|
||||||
when: not skip_container_build
|
when: not skip_container_build
|
||||||
|
|
||||||
- name: Remove any dangling docker images
|
- name: Generate spec file for L2 deployment
|
||||||
command: docker image prune -f
|
|
||||||
|
|
||||||
- name: Copy over spec file for L2 deployment
|
|
||||||
template:
|
template:
|
||||||
src: "./templates/specs/l2-spec.yml.j2"
|
src: "./templates/specs/l2-spec.yml.j2"
|
||||||
dest: "{{ l2_directory }}/optimism-spec.yml"
|
dest: "{{ l2_directory }}/optimism-spec.yml"
|
||||||
@ -64,26 +61,25 @@
|
|||||||
copy:
|
copy:
|
||||||
src: "{{ artifact_path }}/l1_deployment/{{ l1_chain_id }}-deploy.json"
|
src: "{{ artifact_path }}/l1_deployment/{{ l1_chain_id }}-deploy.json"
|
||||||
dest: "{{ l2_directory }}/optimism-deployment/data/l1_deployment"
|
dest: "{{ l2_directory }}/optimism-deployment/data/l1_deployment"
|
||||||
|
remote_src: "{{ target_host != 'localhost' }}"
|
||||||
|
|
||||||
- name: Copy l2 configuration file
|
- name: Copy l2 configuration file
|
||||||
copy:
|
copy:
|
||||||
src: "{{ artifact_path }}/l2_config/{{ l1_chain_id }}.json"
|
src: "{{ artifact_path }}/l2_config/{{ l1_chain_id }}.json"
|
||||||
dest: "{{ l2_directory }}/optimism-deployment/data/l2_config"
|
dest: "{{ l2_directory }}/optimism-deployment/data/l2_config"
|
||||||
|
remote_src: "{{ target_host != 'localhost' }}"
|
||||||
|
|
||||||
- name: Copy allocs-l2 file
|
- name: Copy allocs-l2 file
|
||||||
copy:
|
copy:
|
||||||
src: "{{ artifact_path }}/l2_config/allocs-l2.json"
|
src: "{{ artifact_path }}/l2_config/allocs-l2.json"
|
||||||
dest: "{{ l2_directory }}/optimism-deployment/data/l2_config"
|
dest: "{{ l2_directory }}/optimism-deployment/data/l2_config"
|
||||||
|
remote_src: "{{ target_host != 'localhost' }}"
|
||||||
- name: Copy l2 jwt file
|
|
||||||
copy:
|
|
||||||
src: "{{ artifact_path }}/l2_config/l2-jwt.txt"
|
|
||||||
dest: "{{ l2_directory }}/optimism-deployment/data/l2_config"
|
|
||||||
|
|
||||||
- name: Copy l2 accounts file
|
- name: Copy l2 accounts file
|
||||||
copy:
|
copy:
|
||||||
src: "{{ artifact_path }}/l2_accounts/accounts.json"
|
src: "{{ artifact_path }}/l2_accounts/accounts.json"
|
||||||
dest: "{{ l2_directory }}/optimism-deployment/data/l2_accounts"
|
dest: "{{ l2_directory }}/optimism-deployment/data/l2_accounts"
|
||||||
|
remote_src: "{{ target_host != 'localhost' }}"
|
||||||
|
|
||||||
when: existing_contracts_deployment
|
when: existing_contracts_deployment
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user