Merge branch 'master' into chore/nbxplorer_postgres

This commit is contained in:
2023-02-14 13:02:06 +00:00
9 changed files with 34 additions and 16 deletions

View File

@@ -1,3 +1,5 @@
source 'https://supermarket.chef.io'
cookbook 'kosmos-nginx', path: '../../site-cookbooks/kosmos-nginx'
metadata

View File

@@ -2,6 +2,11 @@
This file is used to list changes made in each version of the kosmos_rsk cookbook.
## 0.3.0
* Bump rskj version
* Fix tests
## 0.2.0
Add nginx recipe to configure public API access.

View File

@@ -1,3 +1,14 @@
# kosmos_rsk
Configures/deploys RSK-related software.
Configures/deploys RSKj and related software.
## Testing
With a Docker daemon running:
```bash
kitchen create
kitchen converge
kitchen verify
kitchen destroy
```

View File

@@ -1,2 +1,2 @@
node.default['rskj']['version'] = '4.1.0~focal'
node.default['rskj']['version'] = '4.2.0~focal'
node.default['rskj']['network'] = 'testnet'

View File

@@ -2,8 +2,8 @@ name 'kosmos_rsk'
maintainer 'Kosmos Developers'
maintainer_email 'ops@kosmos.org'
license 'MIT'
description 'Installs/configures RSK and related software'
version '0.2.0'
description 'Installs/configures RSKj and related software'
version '0.3.0'
chef_version '>= 15.0'
issues_url 'https://gitea.kosmos.org/kosmos/chef/issues'
source_url 'https://gitea.kosmos.org/kosmos/chef'

View File

@@ -1,6 +1,6 @@
#_preseed_V1
# Do you agree to the terms of the applicable licenses?
rskj shared/accepted-rsk-license-v1-1 boolean true
rskj shared/accepted-rsk-license-v1-1 select true
# Choose a configuration environment to run your node.
# Choices: mainnet, testnet, regtest
rskj shared/config select <%= @network %>

View File

@@ -9,7 +9,7 @@ end
describe package('rskj') do
it { should be_installed }
its('version') { should eq '2.2.0~focal' }
its('version') { should eq '4.2.0~focal' }
end
describe service('rsk') do