Skip to content

Commit 8bf2b88

Browse files
committed
Update pod eviction config, update keep contracts
1 parent b376fb4 commit 8bf2b88

5 files changed

+25
-9
lines changed

group_vars/all.yml.example

+5-5
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,16 @@ ecdsa_announced_addresses: '"/ip4/xxx.xxx.xxx/tcp/3920"'
7070
ecdsa_debug_level: "debug"
7171

7272
### TESTNET VALUES
73-
keep_random_beacon_operator_contract: "0xf417b31104631280adF9F6828ee19985BC299fdC"
74-
keep_token_staking_contract: "0x8117632eC1D514550b3880Bc68F9AC1A76c9C67B"
75-
keep_random_beacon_service_contract: "0xd83248e311DC2Ba0d2A051e86f0678d8857f6ADD"
73+
keep_random_beacon_operator_contract: "0xC8337a94a50d16191513dEF4D1e61A6886BF410f"
74+
keep_token_staking_contract: "0x234d2182B29c6a64ce3ab6940037b5C8FdAB608e"
75+
keep_random_beacon_service_contract: "0x6c04499B595efdc28CdbEd3f9ed2E83d7dCCC717"
7676
beacon_bootstrap_peers: '"/dns4/bootstrap-1.core.keep.test.boar.network/tcp/3001/ipfs/16Uiu2HAkuTUKNh6HkfvWBEkftZbqZHPHi3Kak5ZUygAxvsdQ2UgG",
7777
"/dns4/bootstrap-2.core.keep.test.boar.network/tcp/3001/ipfs/16Uiu2HAmQirGruZBvtbLHr5SDebsYGcq6Djw7ijF3gnkqsdQs3wK",
7878
"/dns4/bootstrap-3.test.keep.network/tcp/3919/ipfs/16Uiu2HAm8KJX32kr3eYUhDuzwTucSfAfspnjnXNf9veVhB12t6Vf",
7979
"/dns4/bootstrap-2.test.keep.network/tcp/3919/ipfs/16Uiu2HAmNNuCp45z5bgB8KiTHv1vHTNAVbBgxxtTFGAndageo9Dp"'
8080

81-
ecdsa_contract_address: "0xb37c8696cD023c11357B37b5b12A9884c9C83784"
82-
ecdsa_sanctioned_applications: '"0x9F3B3bCED0AFfe862D436CB8FF462a454040Af80"'
81+
ecdsa_contract_address: "0x9EcCf03dFBDa6A5E50d7aBA14e0c60c2F6c575E6"
82+
ecdsa_sanctioned_applications: '"0xc3f96306eDabACEa249D2D22Ec65697f38c6Da69"'
8383
ecdsa_bootstrap_peers: '"/dns4/bootstrap-1.ecdsa.keep.test.boar.network/tcp/4001/ipfs/16Uiu2HAmPFXDaeGWtnzd8s39NsaQguoWtKi77834A6xwYqeicq6N",
8484
"/dns4/ecdsa-2.test.keep.network/tcp/3919/ipfs/16Uiu2HAmNNuCp45z5bgB8KiTHv1vHTNAVbBgxxtTFGAndageo9Dp",
8585
"/dns4/ecdsa-3.test.keep.network/tcp/3919/ipfs/16Uiu2HAm8KJX32kr3eYUhDuzwTucSfAfspnjnXNf9veVhB12t6Vf"'

initial_setup_playbook.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
hosts: k3s_cluster
175175
any_errors_fatal: true
176176
roles:
177-
- { role: netdata, when: deploy_netdata_monitoring == true }
177+
- { role: netdata, when: deploy_netdata == true }
178178

179179
- name: Re-enable updates
180180
hosts: k3s_cluster

manifests/keep-core-service.yaml.j2

+9-1
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,12 @@ spec:
5959
args: [ "--config", "/mnt/keep-client/config/keep-beacon-config.toml", "start" ]
6060
volumeMounts:
6161
- mountPath: "{{ container_mount_point }}"
62-
name: eth2pv
62+
name: eth2pv
63+
tolerations:
64+
- key: node.kubernetes.io/not-ready
65+
effect: NoExecute
66+
tolerationSeconds: 20
67+
- key: node.kubernetes.io/unreachable
68+
operator: Exists
69+
effect: NoExecute
70+
tolerationSeconds: 20

manifests/keep-ecdsa-service.yaml.j2

+9-1
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,12 @@ spec:
5959
args: [ "--config", "/mnt/keep-ecdsa/config/keep-ecdsa-config.toml", "start" ]
6060
volumeMounts:
6161
- mountPath: "{{ container_mount_point }}"
62-
name: eth2pv
62+
name: eth2pv
63+
tolerations:
64+
- key: node.kubernetes.io/not-ready
65+
effect: NoExecute
66+
tolerationSeconds: 20
67+
- key: node.kubernetes.io/unreachable
68+
operator: Exists
69+
effect: NoExecute
70+
tolerationSeconds: 20

playbooks/5_netdata_monitoring_playbook.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
hosts: k3s_cluster
33
any_errors_fatal: true
44
roles:
5-
- { role: netdata, when: deploy_netdata_monitoring == true }
5+
- { role: netdata, when: deploy_netdata == true }

0 commit comments

Comments
 (0)