sovrin-foundation / steward-tools

tools for Sovrin steward
Apache License 2.0
9 stars 22 forks source link

Support for Validator node in Azure? #36

Closed amarts closed 4 years ago

amarts commented 4 years ago

When I ran the Validator node with all the required config, and steps the below section gave error to me:

https://github.com/sovrin-foundation/steward-tools/blob/master/steward_tech_check.py#L94...L100

Rule: machine_type_allowed:
    result: FAILED
    details: Found valid machine_type: vm on unsupported technology: microsoft
    action_needed: Found valid machine_type: vm running on Unsupported technology: microsoft

Documents do talk about running Validator in Cloud, should we be adding 'microsoft' as valid tech?

mgbailey commented 4 years ago

An Azure VM returns "microsoft" as its machine_type. You are correct that this should be allowed. steward_tech_check.py should be changed accordingly.

Mike

On Thu, May 14, 2020 at 3:06 PM Amar Tumballi notifications@github.com wrote:

When I ran the Validator node with all the required config, and steps the below section gave error to me:

https://github.com/sovrin-foundation/steward-tools/blob/master/steward_tech_check.py#L94...L100

Rule: machine_type_allowed: result: FAILED details: Found valid machine_type: vm on unsupported technology: microsoft action_needed: Found valid machine_type: vm running on Unsupported technology: microsoft

Documents do talk about running Validator in Cloud, should we be adding 'microsoft' as valid tech?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/sovrin-foundation/steward-tools/issues/36, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABK64AEOVUG4OBZNYDSW473RRRMMJANCNFSM4NBA74LQ .

amarts commented 4 years ago

On Azure:

amar@Sovrin02:~$ dmesg | grep 'Detected virtualization'
[    9.521496] systemd[1]: Detected virtualization microsoft.

On AWS:

ubuntu@test-machine:~$ dmesg | grep 'Detected virtua'
[    5.983920] systemd[1]: Detected virtualization xen.

We already have 'xen' covered!... adding microsoft would solve this issue!