Skip to content

Commit 5addf7e

Browse files
committed
Generate fixtures
1 parent 42c15bd commit 5addf7e

File tree

3 files changed

+111
-1
lines changed

3 files changed

+111
-1
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"config_version": "1.9.0",
3+
"network_settings": {
4+
"ipv6_config": {
5+
"Fixed": {
6+
"address": "2a00:fb01:400:200::1/64",
7+
"gateway": "2a00:fb01:400:200::1"
8+
}
9+
},
10+
"ipv4_config": {
11+
"address": "192.168.1.1",
12+
"gateway": "192.168.1.254",
13+
"prefix_length": 24
14+
},
15+
"domain_name": "ic.test"
16+
},
17+
"icos_settings": {
18+
"node_reward_type": "type3.1",
19+
"mgmt_mac": "00:00:00:00:00:01",
20+
"deployment_environment": "mainnet",
21+
"logging": {},
22+
"use_nns_public_key": false,
23+
"nns_urls": [
24+
"https://icp-api.io,https//icp0.io,https://ic0.app"
25+
],
26+
"use_node_operator_private_key": true,
27+
"enable_trusted_execution_environment": false,
28+
"use_ssh_authorized_keys": false,
29+
"icos_dev_settings": {}
30+
},
31+
"guestos_settings": {
32+
"inject_ic_crypto": false,
33+
"inject_ic_state": false,
34+
"inject_ic_registry_local_store": false,
35+
"guestos_dev_settings": {
36+
"backup_spool": null,
37+
"malicious_behavior": null,
38+
"query_stats_epoch_length": null,
39+
"bitcoind_addr": null,
40+
"dogecoind_addr": null,
41+
"jaeger_addr": null,
42+
"socks_proxy": null,
43+
"hostname": null,
44+
"generate_ic_boundary_tls_cert": null
45+
}
46+
},
47+
"guest_vm_type": "default",
48+
"upgrade_config": {
49+
"peer_guest_vm_address": "2a00:fb01:400:200:6801:95ff:fed7:d475"
50+
},
51+
"trusted_execution_environment_config": {
52+
"sev_cert_chain_pem": "-----BEGIN CERTIFICATE----------END CERTIFICATE-----"
53+
},
54+
"recovery_config": null
55+
}
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"config_version": "1.9.0",
3+
"network_settings": {
4+
"ipv6_config": {
5+
"Fixed": {
6+
"address": "2a00:fb01:400:200::1/64",
7+
"gateway": "2a00:fb01:400:200::1"
8+
}
9+
},
10+
"ipv4_config": {
11+
"address": "192.168.1.1",
12+
"gateway": "192.168.1.254",
13+
"prefix_length": 24
14+
},
15+
"domain_name": "ic.test"
16+
},
17+
"icos_settings": {
18+
"node_reward_type": "type3.1",
19+
"mgmt_mac": "00:00:00:00:00:01",
20+
"deployment_environment": "mainnet",
21+
"logging": {},
22+
"use_nns_public_key": false,
23+
"nns_urls": [
24+
"https://icp-api.io,https//icp0.io,https://ic0.app"
25+
],
26+
"use_node_operator_private_key": true,
27+
"enable_trusted_execution_environment": false,
28+
"use_ssh_authorized_keys": false,
29+
"icos_dev_settings": {}
30+
},
31+
"hostos_settings": {
32+
"hostos_dev_settings": {
33+
"vm_memory": 16,
34+
"vm_cpu": "kvm",
35+
"vm_nr_of_vcpus": 64
36+
},
37+
"verbose": false
38+
},
39+
"guestos_settings": {
40+
"inject_ic_crypto": false,
41+
"inject_ic_state": false,
42+
"inject_ic_registry_local_store": false,
43+
"guestos_dev_settings": {
44+
"backup_spool": null,
45+
"malicious_behavior": null,
46+
"query_stats_epoch_length": null,
47+
"bitcoind_addr": null,
48+
"dogecoind_addr": null,
49+
"jaeger_addr": null,
50+
"socks_proxy": null,
51+
"hostname": null,
52+
"generate_ic_boundary_tls_cert": null
53+
}
54+
}
55+
}

rs/ic_os/config_types/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use std::str::FromStr;
3131
use strum::EnumString;
3232
use url::Url;
3333

34-
pub const CONFIG_VERSION: &str = "1.8.0";
34+
pub const CONFIG_VERSION: &str = "1.9.0";
3535

3636
/// List of field paths that have been removed and should not be reused.
3737
pub static RESERVED_FIELD_PATHS: &[&str] = &[

0 commit comments

Comments
 (0)