Merge branch 'master' into chore/nbxplorer_postgres
This commit is contained in:
commit
544984abce
@ -8,19 +8,19 @@
|
|||||||
"automatic": {
|
"automatic": {
|
||||||
"fqdn": "rsk-mainnet-2",
|
"fqdn": "rsk-mainnet-2",
|
||||||
"os": "linux",
|
"os": "linux",
|
||||||
"os_version": "5.4.0-1075-kvm",
|
"os_version": "5.4.0-1084-kvm",
|
||||||
"hostname": "rsk-mainnet-2",
|
"hostname": "rsk-mainnet-2",
|
||||||
"ipaddress": "192.168.122.208",
|
"ipaddress": "192.168.122.208",
|
||||||
"roles": [
|
"roles": [
|
||||||
"rskj_mainnet",
|
"kvm_guest",
|
||||||
"kvm_guest"
|
"rskj_mainnet"
|
||||||
],
|
],
|
||||||
"recipes": [
|
"recipes": [
|
||||||
"kosmos-base",
|
"kosmos-base",
|
||||||
"kosmos-base::default",
|
"kosmos-base::default",
|
||||||
|
"kosmos_kvm::guest",
|
||||||
"kosmos_rsk::rskj",
|
"kosmos_rsk::rskj",
|
||||||
"kosmos_rsk::nginx",
|
"kosmos_rsk::nginx",
|
||||||
"kosmos_kvm::guest",
|
|
||||||
"apt::default",
|
"apt::default",
|
||||||
"timezone_iii::default",
|
"timezone_iii::default",
|
||||||
"timezone_iii::debian",
|
"timezone_iii::debian",
|
||||||
@ -70,4 +70,4 @@
|
|||||||
"role[kvm_guest]",
|
"role[kvm_guest]",
|
||||||
"role[rskj_mainnet]"
|
"role[rskj_mainnet]"
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -8,19 +8,19 @@
|
|||||||
"automatic": {
|
"automatic": {
|
||||||
"fqdn": "rsk-testnet-3",
|
"fqdn": "rsk-testnet-3",
|
||||||
"os": "linux",
|
"os": "linux",
|
||||||
"os_version": "5.4.0-1075-kvm",
|
"os_version": "5.4.0-1084-kvm",
|
||||||
"hostname": "rsk-testnet-3",
|
"hostname": "rsk-testnet-3",
|
||||||
"ipaddress": "192.168.122.231",
|
"ipaddress": "192.168.122.231",
|
||||||
"roles": [
|
"roles": [
|
||||||
"rskj_testnet",
|
"kvm_guest",
|
||||||
"kvm_guest"
|
"rskj_testnet"
|
||||||
],
|
],
|
||||||
"recipes": [
|
"recipes": [
|
||||||
"kosmos-base",
|
"kosmos-base",
|
||||||
"kosmos-base::default",
|
"kosmos-base::default",
|
||||||
|
"kosmos_kvm::guest",
|
||||||
"kosmos_rsk::rskj",
|
"kosmos_rsk::rskj",
|
||||||
"kosmos_rsk::nginx",
|
"kosmos_rsk::nginx",
|
||||||
"kosmos_kvm::guest",
|
|
||||||
"apt::default",
|
"apt::default",
|
||||||
"timezone_iii::default",
|
"timezone_iii::default",
|
||||||
"timezone_iii::debian",
|
"timezone_iii::debian",
|
||||||
@ -70,4 +70,4 @@
|
|||||||
"role[kvm_guest]",
|
"role[kvm_guest]",
|
||||||
"role[rskj_testnet]"
|
"role[rskj_testnet]"
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user