From 5e2aceaad752dba45c07dde31d2428bce7dfff61 Mon Sep 17 00:00:00 2001 From: kogeler <25884155+kogeler@users.noreply.github.com> Date: Tue, 21 Nov 2023 17:11:59 +0200 Subject: [PATCH] ansible versions were fixed (#61) * ansible versions were fixed Signed-off-by: kogeler --- .github/workflows/branch-main.yml | 2 +- galaxy.yml | 2 +- meta/runtime.yml | 2 +- roles/node/molecule/default/group_vars/all.yml | 7 ++++--- roles/node/molecule/default/verify.yml | 1 - roles/node/molecule/parachain/group_vars/all.yml | 2 +- roles/node/molecule/parachain_remote_rc/group_vars/all.yml | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/branch-main.yml b/.github/workflows/branch-main.yml index 10119b6..7824341 100644 --- a/.github/workflows/branch-main.yml +++ b/.github/workflows/branch-main.yml @@ -13,7 +13,7 @@ jobs: role-names: [node, ws_health_exporter] molecule-drivers: [docker, lxd] # We test the latest version and minimum supported version - ansible-versions: [5.0.1, 8.4.0] + ansible-versions: [8.0.0, 8.6.1] uses: ./.github/workflows/reusable-molecule.yml with: role-name: ${{ matrix.role-names }} diff --git a/galaxy.yml b/galaxy.yml index 3bca47c..1cf083a 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -8,7 +8,7 @@ namespace: paritytech name: chain # The version of the collection. Must be compatible with semantic versioning -version: 1.6.0 +version: 1.6.1 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md diff --git a/meta/runtime.yml b/meta/runtime.yml index aafabf1..e8ec62e 100644 --- a/meta/runtime.yml +++ b/meta/runtime.yml @@ -1 +1 @@ -requires_ansible: ">=2.12.10" \ No newline at end of file +requires_ansible: ">=2.15.6" \ No newline at end of file diff --git a/roles/node/molecule/default/group_vars/all.yml b/roles/node/molecule/default/group_vars/all.yml index 109e826..a71d409 100644 --- a/roles/node/molecule/default/group_vars/all.yml +++ b/roles/node/molecule/default/group_vars/all.yml @@ -4,11 +4,11 @@ ansible_user: root ## Node node_chain: polkadot node_app_name: "{{ node_chain }}" -node_binary_version: v1.0.0 +node_binary_version: v1.3.0 node_legacy_rpc_flags: false node_rpc_port: 9944 -node_binary: https://github.com/paritytech/polkadot/releases/download/{{ node_binary_version }}/polkadot -node_binary_signature: https://github.com/paritytech/polkadot/releases/download/{{ node_binary_version }}/polkadot.asc +node_binary: https://github.com/paritytech/polkadot-sdk/releases/download/polkadot-{{ node_binary_version }}/polkadot +node_binary_signature: https://github.com/paritytech/polkadot-sdk/releases/download/polkadot-{{ node_binary_version }}/polkadot.asc node_pruning: 256 ode_paritydb_enable: true node_chain_backup_restoring_type: "none" @@ -20,3 +20,4 @@ node_p2p_private_key: a4964e8e979c29fcdd79403db8c374cae91857e69a13162f7664a6529b node_prometheus_file_exporter_path: "/tmp/substrate.prom" node_data_root_path: "/opt/polkadot-root" node_memory_profiler_log_path: "/opt/polkadot-root-logs" +node_enable_public_ip_detection: false \ No newline at end of file diff --git a/roles/node/molecule/default/verify.yml b/roles/node/molecule/default/verify.yml index db122d9..a6a670c 100644 --- a/roles/node/molecule/default/verify.yml +++ b/roles/node/molecule/default/verify.yml @@ -39,7 +39,6 @@ vars: node_database_wipe: true node_parachain_database_wipe: true - node_enable_public_ip_detection: false node_start_service: false - name: Collect service facts 1 diff --git a/roles/node/molecule/parachain/group_vars/all.yml b/roles/node/molecule/parachain/group_vars/all.yml index 3bc3a81..4139fb5 100644 --- a/roles/node/molecule/parachain/group_vars/all.yml +++ b/roles/node/molecule/parachain/group_vars/all.yml @@ -10,7 +10,7 @@ node_binary: https://github.com/paritytech/cumulus/releases/download/{{ node_bin node_binary_signature: https://github.com/paritytech/cumulus/releases/download/{{ node_binary_version }}/polkadot-parachain.asc node_app_name: "shell" node_prometheus_file_exporter_path: "/tmp/substrate.prom" -#node_binary_deployment: false +node_enable_public_ip_detection: false # Relaychain node_chain: "rococo" diff --git a/roles/node/molecule/parachain_remote_rc/group_vars/all.yml b/roles/node/molecule/parachain_remote_rc/group_vars/all.yml index 4f0e17a..7d90ed3 100644 --- a/roles/node/molecule/parachain_remote_rc/group_vars/all.yml +++ b/roles/node/molecule/parachain_remote_rc/group_vars/all.yml @@ -8,4 +8,4 @@ node_legacy_rpc_flags: false node_parachain_rpc_port: 9954 node_binary: https://github.com/paritytech/cumulus/releases/download/{{ node_binary_version }}/polkadot-parachain node_binary_signature: https://github.com/paritytech/cumulus/releases/download/{{ node_binary_version }}/polkadot-parachain.asc -#node_binary_deployment: false +node_enable_public_ip_detection: false \ No newline at end of file