Skip to content

Commit

Permalink
ansible versions were fixed (#61)
Browse files Browse the repository at this point in the history
* ansible versions were fixed

Signed-off-by: kogeler <[email protected]>
  • Loading branch information
kogeler authored Nov 21, 2023
1 parent a0d46c0 commit 5e2acea
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branch-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
requires_ansible: ">=2.12.10"
requires_ansible: ">=2.15.6"
7 changes: 4 additions & 3 deletions roles/node/molecule/default/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
1 change: 0 additions & 1 deletion roles/node/molecule/default/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion roles/node/molecule/parachain/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion roles/node/molecule/parachain_remote_rc/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5e2acea

Please sign in to comment.