Compare commits
5 Commits
063858f06c
...
d04e2f4fd5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d04e2f4fd5
|
||
|
|
f9e7d98bf9
|
||
|
|
9c33fbda21
|
||
|
|
a7b990c64f
|
||
|
|
55e48cca86
|
@@ -1,3 +1,5 @@
|
|||||||
source 'https://supermarket.chef.io'
|
source 'https://supermarket.chef.io'
|
||||||
|
|
||||||
|
cookbook 'kosmos-nginx', path: '../../site-cookbooks/kosmos-nginx'
|
||||||
|
|
||||||
metadata
|
metadata
|
||||||
|
|||||||
@@ -2,6 +2,11 @@
|
|||||||
|
|
||||||
This file is used to list changes made in each version of the kosmos_rsk cookbook.
|
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
|
## 0.2.0
|
||||||
|
|
||||||
Add nginx recipe to configure public API access.
|
Add nginx recipe to configure public API access.
|
||||||
|
|||||||
@@ -1,3 +1,14 @@
|
|||||||
# kosmos_rsk
|
# 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
|
||||||
|
```
|
||||||
|
|||||||
@@ -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'
|
node.default['rskj']['network'] = 'testnet'
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ name 'kosmos_rsk'
|
|||||||
maintainer 'Kosmos Developers'
|
maintainer 'Kosmos Developers'
|
||||||
maintainer_email 'ops@kosmos.org'
|
maintainer_email 'ops@kosmos.org'
|
||||||
license 'MIT'
|
license 'MIT'
|
||||||
description 'Installs/configures RSK and related software'
|
description 'Installs/configures RSKj and related software'
|
||||||
version '0.2.0'
|
version '0.3.0'
|
||||||
chef_version '>= 15.0'
|
chef_version '>= 15.0'
|
||||||
issues_url 'https://gitea.kosmos.org/kosmos/chef/issues'
|
issues_url 'https://gitea.kosmos.org/kosmos/chef/issues'
|
||||||
source_url 'https://gitea.kosmos.org/kosmos/chef'
|
source_url 'https://gitea.kosmos.org/kosmos/chef'
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#_preseed_V1
|
#_preseed_V1
|
||||||
# Do you agree to the terms of the applicable licenses?
|
# 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.
|
# Choose a configuration environment to run your node.
|
||||||
# Choices: mainnet, testnet, regtest
|
# Choices: mainnet, testnet, regtest
|
||||||
rskj shared/config select <%= @network %>
|
rskj shared/config select <%= @network %>
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ end
|
|||||||
|
|
||||||
describe package('rskj') do
|
describe package('rskj') do
|
||||||
it { should be_installed }
|
it { should be_installed }
|
||||||
its('version') { should eq '2.2.0~focal' }
|
its('version') { should eq '4.2.0~focal' }
|
||||||
end
|
end
|
||||||
|
|
||||||
describe service('rsk') do
|
describe service('rsk') do
|
||||||
|
|||||||
Reference in New Issue
Block a user