123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- ---
- # Create chain spec files and keys and copy to all the servers
- - name: Debug to test variable
- debug:
- msg: 'Data path: {{ data_path }}, Chain Spec path: {{ chain_spec_path }}'
- run_once: true
- - name: Copying initial members file to the server
- copy:
- src: '{{ initial_members_file }}'
- dest: '{{ admin_code_dir }}/initial-members.json'
- when: initial_members_file is defined and initial_members_file|length > 0
- run_once: true
- - name: Copying initial balances file to the server
- copy:
- src: '{{ initial_balances_file }}'
- dest: '{{ admin_code_dir }}/initial-balances.json'
- when: initial_balances_file is defined and initial_balances_file|length > 0
- run_once: true
- - name: Run chain-spec-builder to generate chainspec.json file (with initial data)
- shell: >
- {{ admin_code_dir }}/target/release/chain-spec-builder generate -a {{ number_of_validators }}
- --chain-spec-path {{ chain_spec_path }}
- --endowed 1 --keystore-path {{ data_path }}
- {% if deployment_type is defined and deployment_type|length > 0 %}--deployment {{ deployment_type }}{% endif %}
- {% if initial_members_file is defined and initial_members_file|length > 0 %}--initial-balances-path {{ admin_code_dir }}/initial-balances.json{% endif %}
- {% if initial_balances_file is defined and initial_balances_file|length > 0 %}--initial-members-path {{ admin_code_dir }}/initial-members.json{% endif %}
- register: chain_spec_output
- delegate_to: '{{ local_or_admin }}'
- run_once: true
- - name: Run subkey to generate node keys
- shell: subkey generate-node-key
- delegate_to: '{{ local_or_admin }}'
- register: subkey_output
- - name: Print to stdout
- debug:
- msg:
- - 'Public Key: {{ subkey_output.stderr }}'
- - 'Private Key: {{ subkey_output.stdout }}'
- - name: Print to stdout chain spec
- debug: var=chain_spec_output.stdout
- run_once: true
- - name: Save output of chain spec to local file
- copy:
- content: '{{ chain_spec_output.stdout | regex_replace("\x1B\[([0-9]{1,3}(;[0-9]{1,2})?)?[mGK]", "") }}'
- dest: '{{ data_path }}/chain_spec_output.txt'
- delegate_to: '{{ local_or_admin }}'
- run_once: true
- - name: Change chain spec name, id, protocolId
- json_modify:
- chain_spec_path: '{{ chain_spec_path }}'
- prefix: '{{ network_suffix }}'
- all_nodes: '{{ hostvars }}'
- delegate_to: '{{ local_or_admin }}'
- register: result
- run_once: true
- - name: Print output of modified chainspec
- debug:
- var: result.result
- run_once: true
- - name: Run build-spec to generate raw chainspec file
- shell: '{{ admin_code_dir }}/target/release/joystream-node build-spec --chain {{ chain_spec_path }} --raw > {{ raw_chain_spec_path }}'
- delegate_to: '{{ local_or_admin }}'
- run_once: true
- - name: Copying chain spec files to localhost
- synchronize:
- src: '/home/ubuntu/{{ data_path }}/'
- dest: '{{ data_path }}'
- mode: pull
- run_once: true
- when: run_on_admin_server|bool
- - name: Copy joystream-node binary to localhost
- fetch:
- src: '{{ admin_code_dir }}/target/release/joystream-node'
- dest: '{{ data_path }}/joystream-node'
- flat: yes
- delegate_to: '{{ local_or_admin }}'
- run_once: true
- when: run_on_admin_server|bool
- - name: Copying raw chain spec file to all servers
- copy:
- src: '{{ raw_chain_spec_path }}'
- dest: '{{ remote_chain_spec_path }}'
|