[ovirt-users] Re: Issue deploying self hosted engine on new install

2019-12-30 Thread Yedidyah Bar David
On Tue, Dec 31, 2019 at 9:15 AM Sang Un Ahn  wrote:
>
> Hi,
>
> I have figured it out that the root cause of the deployment failure is timing 
> out while the hosted engine was trying to connect to host vis SSH as shown in 
> engine.log (located in 
> /var/log/ovirt-hosted-engine-setup/engine-logs-2019-12-31T06:34:38Z/ovirt-engine):

Nice catch. Sounds indeed more reasonable than the issue about
ovirt_host_facts (which is real, but still not failing us).

>
> 2019-12-31 15:43:06,082+09 ERROR 
> [org.ovirt.engine.core.bll.hostdeploy.AddVdsCommand] (default task-1) 
> [f48796e7-a4c5-4c09-a70d-956f0c4249b4] Failed to establish session with host 
> 'alice-ovirt-01.sdfarm.kr': SSH connection timed out connecting to 
> 'r...@alice-ovirt-01.sdfarm.kr'
> 2019-12-31 15:43:06,085+09 WARN  
> [org.ovirt.engine.core.bll.hostdeploy.AddVdsCommand] (default task-1) 
> [f48796e7-a4c5-4c09-a70d-956f0c4249b4] Validation of action 'AddVds' failed 
> for user admin@internal-authz. Reasons: 
> VAR__ACTION__ADD,VAR__TYPE__HOST,$server 
> alice-ovirt-01.sdfarm.kr,VDS_CANNOT_CONNECT_TO_SERVER
> 2019-12-31 15:43:06,129+09 ERROR 
> [org.ovirt.engine.api.restapi.resource.AbstractBackendResource] (default 
> task-1) [] Operation Failed: [Cannot add Host. Connecting to host via SSH has 
> failed, verify that the host is reachable (IP address, routable address etc.) 
> You may refer to the engine.log file for further details.]
>
> The FQDN of hosted engine (alice-ovirt-engine.sdfarm.kr) is resolved as well 
> as the host (alice-ovirt-01.sdfarm.kr) and SSH is the one of services that 
> are allowed by firewalld. I believe the rules of firewalld is automatically 
> configured during the deployment to work with hosted engine and the host. 
> Also root access is configured to be allowed at the first stage of deployment.
>
> I was just wondering how I can verify the hosted engine can access to the 
> host at this stage? Once it fails to deploy, the deployment script make all 
> things rolled back (I believe it cleans all up) and the vm-status of 
> hosted-engine is un-deployed.

Are you sure? Can you check with ps if the qemu process is still up?
If so, you can try to ssh to it. IIUC you are still in the first stage
of deploy, where the VM is on the local network. You should be able to
find its IP address in the ansible logs, search for "local_vm_ip".

If it's dead: it might be that your engine tried to connect to the
host to an IP address it can't reach, either due to name resolution or
due to routing/firewalling etc. Both cockpit and the CLI ask you about
adding entries to /etc/hosts on the engine VM. Did you reply 'Yes'?

Best regards,
-- 
Didi
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/PUFYKUVLN2VDD6NU6TFXN3WT6XWSDMPO/


[ovirt-users] Re: Issue deploying self hosted engine on new install

2019-12-30 Thread Yedidyah Bar David
Hi,

On Tue, Dec 31, 2019 at 6:38 AM  wrote:
>
> Hi,
>
> I have encountered the same error that results in the failure of hosted 
> engine deployment. I have tried to replace "ovirt_host_facts" by 
> "ovirt_host_info" in 
> /usr/share/ansible/roles/ovirt.hosted_engine_setup/tasks/bootstrap_local_vm/05_add_host.yml
>  however it did not help with the following error message:
>
> 2019-12-31 11:23:27,595+0900 INFO 
> otopi.ovirt_hosted_engine_setup.ansible_utils 
> ansible_utils._process_output:109 TASK [ovirt.hosted_engine_setup : Wait for 
> the host to be up]
> 2019-12-31 11:23:28,997+0900 DEBUG 
> otopi.ovirt_hosted_engine_setup.ansible_utils 
> ansible_utils._process_output:103 {u'msg': u"The conditional check 
> 'host_result_up_check is succeeded and 
> host_result_up_check.ansible_facts.ovirt_hosts|length >= 1 and ( 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'up' or 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'non_operational' 
> )' failed. The error was: error while evaluating conditional 
> (host_result_up_check is succeeded and 
> host_result_up_check.ansible_facts.ovirt_hosts|length >= 1 and ( 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'up' or 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'non_operational' 
> )): 'dict object' has no attribute 'ansible_facts'", u'_ansible_no_log': 
> False}
> 2019-12-31 11:23:29,098+0900 ERROR 
> otopi.ovirt_hosted_engine_setup.ansible_utils 
> ansible_utils._process_output:107 fatal: [localhost]: FAILED! => {"msg": "The 
> conditional check 'host_result_up_check is succeeded and 
> host_result_up_check.ansible_facts.ovirt_hosts|length >= 1 and ( 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'up' or 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'non_operational' 
> )' failed. The error was: error while evaluating conditional 
> (host_result_up_check is succeeded and 
> host_result_up_check.ansible_facts.ovirt_hosts|length >= 1 and ( 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'up' or 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'non_operational' 
> )): 'dict object' has no attribute 'ansible_facts'"}
>
> According to the latest doc of Ansible (2.9) regarding "ovirt_host_facts", it 
> is deprecated and one should use "ovirt_host_info" instead as you can refer 
> here: 
> https://docs.ansible.com/ansible/latest/modules/ovirt_host_facts_module.html

As I said previously in this thread, this is indeed a bug. Please open
one, and attach all relevant logs, versions of packages, repos used to
install them, etc. Thanks!

That said, it did not happen for me, for some reason. I got e.g. this,
in bootstrap_local_vm log:

2019-12-22 10:31:29,411+0200 DEBUG var changed: host "localhost" var
"host_result_up_check" type "" value: "{
"ansible_facts": {
"ovirt_hosts": [
...
"deprecations": [
{
"msg": "The 'ovirt_host_facts' module has been renamed to
'ovirt_host_info', and the renamed one no longer returns
ansible_facts",
"version": "2.13"
}
],
"failed": false
}"

I also see the same for latest nightly 4.3 CI test:

https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-4.3/301/

https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-4.3/301/artifact/exported-artifacts/test_logs/he-basic-suite-4.3/post-012_local_maintenance_sdk.py/lago-he-basic-suite-4-3-host-0/_var_log/ovirt-hosted-engine-setup/ovirt-hosted-engine-setup-ansible-bootstrap_local_vm-20191230212741-a7v9pn.log

>
> And one of the requirements to use "ovirt_host_info" is 
> "ovirt-engine-sdk-python >= 4.3.0" however in my installation, the installed 
> package is "python-ovirt-engine-sdk4 (4.3.2-2.el7)" instead of 
> "ovirt-engine-sdk-python". The "ovirt-engine-sdk-python" package is available 
> however the version is 3.6.9.1-1.el7.

This should be ok.

>
> I have been trying to install the latest oVirt (based in 4.3 repository) and 
> hyperconverged mode using 3 nodes. Tried already with cockpit installation 
> and now debugging it by using CLI installation.
>
> Is this a bug or is there already a fix?

I am not aware of a fix yet. One should probably not be that hard to
prepare, but I need to first reproduce. I wonder if your (and others')
problem is elsewhere.

Best regards,
--
Didi
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/KNFEWJPSPJKZNZJNAGONZVP6SJT36CZF/


[ovirt-users] Re: Issue deploying self hosted engine on new install

2019-12-30 Thread Sang Un Ahn
Hi,

I have figured it out that the root cause of the deployment failure is timing 
out while the hosted engine was trying to connect to host vis SSH as shown in 
engine.log (located in 
/var/log/ovirt-hosted-engine-setup/engine-logs-2019-12-31T06:34:38Z/ovirt-engine):

2019-12-31 15:43:06,082+09 ERROR 
[org.ovirt.engine.core.bll.hostdeploy.AddVdsCommand] (default task-1) 
[f48796e7-a4c5-4c09-a70d-956f0c4249b4] Failed to establish session with host 
'alice-ovirt-01.sdfarm.kr': SSH connection timed out connecting to 
'r...@alice-ovirt-01.sdfarm.kr'
2019-12-31 15:43:06,085+09 WARN  
[org.ovirt.engine.core.bll.hostdeploy.AddVdsCommand] (default task-1) 
[f48796e7-a4c5-4c09-a70d-956f0c4249b4] Validation of action 'AddVds' failed for 
user admin@internal-authz. Reasons: VAR__ACTION__ADD,VAR__TYPE__HOST,$server 
alice-ovirt-01.sdfarm.kr,VDS_CANNOT_CONNECT_TO_SERVER
2019-12-31 15:43:06,129+09 ERROR 
[org.ovirt.engine.api.restapi.resource.AbstractBackendResource] (default 
task-1) [] Operation Failed: [Cannot add Host. Connecting to host via SSH has 
failed, verify that the host is reachable (IP address, routable address etc.) 
You may refer to the engine.log file for further details.]

The FQDN of hosted engine (alice-ovirt-engine.sdfarm.kr 
) is resolved as well as the host 
(alice-ovirt-01.sdfarm.kr ) and SSH is the 
one of services that are allowed by firewalld. I believe the rules of firewalld 
is automatically configured during the deployment to work with hosted engine 
and the host. Also root access is configured to be allowed at the first stage 
of deployment. 

I was just wondering how I can verify the hosted engine can access to the host 
at this stage? Once it fails to deploy, the deployment script make all things 
rolled back (I believe it cleans all up) and the vm-status of hosted-engine is 
un-deployed. 

Thank you in advance,

Best regards,
Sang-Un___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/LL7YSJUWJTN6NY37TIM7RJJNUHPFPXVV/


[ovirt-users] Re: Issue deploying self hosted engine on new install

2019-12-30 Thread Strahil
Hi,

Most probably it is a bug.
Can you add 'debugger: on_failed' to the  task  ?

Maybe it will provide  a hint where is the issue.

Best Regards,
Strahil NikolovOn Dec 31, 2019 06:36, reala...@gmail.com wrote:
>
> Hi, 
>
> I have encountered the same error that results in the failure of hosted 
> engine deployment. I have tried to replace "ovirt_host_facts" by 
> "ovirt_host_info" in 
> /usr/share/ansible/roles/ovirt.hosted_engine_setup/tasks/bootstrap_local_vm/05_add_host.yml
>  however it did not help with the following error message: 
>
> 2019-12-31 11:23:27,595+0900 INFO 
> otopi.ovirt_hosted_engine_setup.ansible_utils 
> ansible_utils._process_output:109 TASK [ovirt.hosted_engine_setup : Wait for 
> the host to be up] 
> 2019-12-31 11:23:28,997+0900 DEBUG 
> otopi.ovirt_hosted_engine_setup.ansible_utils 
> ansible_utils._process_output:103 {u'msg': u"The conditional check 
> 'host_result_up_check is succeeded and 
> host_result_up_check.ansible_facts.ovirt_hosts|length >= 1 and ( 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'up' or 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'non_operational' 
> )' failed. The error was: error while evaluating conditional 
> (host_result_up_check is succeeded and 
> host_result_up_check.ansible_facts.ovirt_hosts|length >= 1 and ( 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'up' or 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'non_operational' 
> )): 'dict object' has no attribute 'ansible_facts'", u'_ansible_no_log': 
> False} 
> 2019-12-31 11:23:29,098+0900 ERROR 
> otopi.ovirt_hosted_engine_setup.ansible_utils 
> ansible_utils._process_output:107 fatal: [localhost]: FAILED! => {"msg": "The 
> conditional check 'host_result_up_check is succeeded and 
> host_result_up_check.ansible_facts.ovirt_hosts|length >= 1 and ( 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'up' or 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'non_operational' 
> )' failed. The error was: error while evaluating conditional 
> (host_result_up_check is succeeded and 
> host_result_up_check.ansible_facts.ovirt_hosts|length >= 1 and ( 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'up' or 
> host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'non_operational' 
> )): 'dict object' has no attribute 'ansible_facts'"} 
>
> According to the latest doc of Ansible (2.9) regarding "ovirt_host_facts", it 
> is deprecated and one should use "ovirt_host_info" instead as you can refer 
> here: 
> https://docs.ansible.com/ansible/latest/modules/ovirt_host_facts_module.html 
>
> And one of the requirements to use "ovirt_host_info" is 
> "ovirt-engine-sdk-python >= 4.3.0" however in my installation, the installed 
> package is "python-ovirt-engine-sdk4 (4.3.2-2.el7)" instead of 
> "ovirt-engine-sdk-python". The "ovirt-engine-sdk-python" package is available 
> however the version is 3.6.9.1-1.el7. 
>
> I have been trying to install the latest oVirt (based in 4.3 repository) and 
> hyperconverged mode using 3 nodes. Tried already with cockpit installation 
> and now debugging it by using CLI installation. 
>
> Is this a bug or is there already a fix? 
>
> Best regards, 
> Sang-Un
> ___
> Users mailing list -- users@ovirt.org
> To unsubscribe send an email to users-le...@ovirt.org
> Privacy Statement: https://www.ovirt.org/site/privacy-policy/
> oVirt Code of Conduct: 
> https://www.ovirt.org/community/about/community-guidelines/
> List Archives: 
> https://lists.ovirt.org/archives/list/users@ovirt.org/message/V2OYCPZAHUVLFM7P5NF63SQ4QBE2SPJV/
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/5BDK7WKVELKPABRZ4YZADGYFKKOD4MVR/


[ovirt-users] Re: Issue deploying self hosted engine on new install

2019-12-30 Thread realapyo
Hi, 

I have encountered the same error that results in the failure of hosted engine 
deployment. I have tried to replace "ovirt_host_facts" by "ovirt_host_info" in 
/usr/share/ansible/roles/ovirt.hosted_engine_setup/tasks/bootstrap_local_vm/05_add_host.yml
 however it did not help with the following error message:

2019-12-31 11:23:27,595+0900 INFO otopi.ovirt_hosted_engine_setup.ansible_utils 
ansible_utils._process_output:109 TASK [ovirt.hosted_engine_setup : Wait for 
the host to be up]
2019-12-31 11:23:28,997+0900 DEBUG 
otopi.ovirt_hosted_engine_setup.ansible_utils ansible_utils._process_output:103 
{u'msg': u"The conditional check 'host_result_up_check is succeeded and 
host_result_up_check.ansible_facts.ovirt_hosts|length >= 1 and ( 
host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'up' or 
host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'non_operational' 
)' failed. The error was: error while evaluating conditional 
(host_result_up_check is succeeded and 
host_result_up_check.ansible_facts.ovirt_hosts|length >= 1 and ( 
host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'up' or 
host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'non_operational' 
)): 'dict object' has no attribute 'ansible_facts'", u'_ansible_no_log': False}
2019-12-31 11:23:29,098+0900 ERROR 
otopi.ovirt_hosted_engine_setup.ansible_utils ansible_utils._process_output:107 
fatal: [localhost]: FAILED! => {"msg": "The conditional check 
'host_result_up_check is succeeded and 
host_result_up_check.ansible_facts.ovirt_hosts|length >= 1 and ( 
host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'up' or 
host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'non_operational' 
)' failed. The error was: error while evaluating conditional 
(host_result_up_check is succeeded and 
host_result_up_check.ansible_facts.ovirt_hosts|length >= 1 and ( 
host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'up' or 
host_result_up_check.ansible_facts.ovirt_hosts[0].status == 'non_operational' 
)): 'dict object' has no attribute 'ansible_facts'"}

According to the latest doc of Ansible (2.9) regarding "ovirt_host_facts", it 
is deprecated and one should use "ovirt_host_info" instead as you can refer 
here: 
https://docs.ansible.com/ansible/latest/modules/ovirt_host_facts_module.html

And one of the requirements to use "ovirt_host_info" is 
"ovirt-engine-sdk-python >= 4.3.0" however in my installation, the installed 
package is "python-ovirt-engine-sdk4 (4.3.2-2.el7)" instead of 
"ovirt-engine-sdk-python". The "ovirt-engine-sdk-python" package is available 
however the version is 3.6.9.1-1.el7. 

I have been trying to install the latest oVirt (based in 4.3 repository) and 
hyperconverged mode using 3 nodes. Tried already with cockpit installation and 
now debugging it by using CLI installation. 

Is this a bug or is there already a fix?

Best regards,
Sang-Un
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/V2OYCPZAHUVLFM7P5NF63SQ4QBE2SPJV/


[ovirt-users] Re: Cannot add Foreman as a provider

2019-12-30 Thread Robert Webb
Maybe...

I just wish oVirt's documentation was a little more clear and especially a 
little more up to date.


From: Strahil 
Sent: Monday, December 30, 2019 10:34 AM
To: users; Robert Webb
Subject: RE: [ovirt-users] Cannot add Foreman as a provider

Maybe 6.1  means Foreman with Red Hat Satellite 6.1 ?

Best Regards,
Strahil Nikolov

On Dec 30, 2019 16:41, Robert Webb  wrote:

oVirt – 4.3.7

Foreman - foreman-1.24.0-15.el7.noarch



I have not tried any downgrades at this point.



Looking at this page, 
 
https://www.ovirt.org/documentation/admin-guide/chap-External_Providers.html , 
it would seem that 4.3.x of oVirt is not compatible with any version of 
Foreman, as the page shows oVirt 4.2 is supported with Foreman 6.1. Which also 
confuses me as I cannot find any Foreman version 6.1.





From: Strahil Nikolov 
Sent: Sunday, December 29, 2019 5:00 PM
To: users ; Robert Webb 
Subject: Re: [ovirt-users] Cannot add Foreman as a provider

___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/UEL4N5XE7VIV3DASDHAIIBVRRY2BJBPJ/


[ovirt-users] Re: Cannot add Foreman as a provider

2019-12-30 Thread Strahil
Maybe 6.1  means Foreman with Red Hat Satellite 6.1 ?

Best Regards,
Strahil NikolovOn Dec 30, 2019 16:41, Robert Webb  wrote:
>
> oVirt – 4.3.7
>
> Foreman - foreman-1.24.0-15.el7.noarch
>
>  
>
> I have not tried any downgrades at this point.
>
>  
>
> Looking at this page, 
> https://www.ovirt.org/documentation/admin-guide/chap-External_Providers.html 
> , it would seem that 4.3.x of oVirt is not compatible with any version of 
> Foreman, as the page shows oVirt 4.2 is supported with Foreman 6.1. Which 
> also confuses me as I cannot find any Foreman version 6.1.
>
>  
>
>  
>
> From: Strahil Nikolov  
> Sent: Sunday, December 29, 2019 5:00 PM
> To: users ; Robert Webb 
> Subject: Re: [ovirt-users] Cannot add Foreman as a provider
>
>  ___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/JVF7C3COICFFCAJFHCUMVZWOQZMCIF2T/


[ovirt-users] Re: Cannot add Foreman as a provider

2019-12-30 Thread Robert Webb
oVirt – 4.3.7
Foreman - foreman-1.24.0-15.el7.noarch

I have not tried any downgrades at this point.

Looking at this page, 
https://www.ovirt.org/documentation/admin-guide/chap-External_Providers.html , 
it would seem that 4.3.x of oVirt is not compatible with any version of 
Foreman, as the page shows oVirt 4.2 is supported with Foreman 6.1. Which also 
confuses me as I cannot find any Foreman version 6.1.


From: Strahil Nikolov 
Sent: Sunday, December 29, 2019 5:00 PM
To: users ; Robert Webb 
Subject: Re: [ovirt-users] Cannot add Foreman as a provider

Hi Robert,

I'm just speculating, but maybe the package on the oVirt is too new or too old ?

What version is your Foreman ?

Have you tried to downgrade/upgrade the packages for the integration between 
the 2 systems ?

Best Regards,
Strahil Nikolov

В неделя, 29 декември 2019 г., 18:53:53 ч. Гринуич+2, Robert Webb 
mailto:rw...@ropeguru.com>> написа:



So I just setup a brand new Foreman instance and have been trying to get it 
setup with oVirt. I was able to install the oVirt plugins under Foreman and 
have the oVirt engine setup as a computer resource.



Where I am running into an issue is adding Foreman as an additional provider 
under oVirt.



In the log I get:



Command 'org.ovirt.engine.core.bll.provider.TestProviderConnectivityCommand' 
failed: EngineException: 
https://foreman.saroza-webb.internal:443/api/v2/discovered_hosts?format=json&per_page=
 (Failed with error PROVIDER_FAILURE and code 5050)



I have done some searching, but everything I have found seems to be from years 
ago and deals with oVirt 3.5.x



Any thoughts?
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to 
users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/CO64DW24PDJJC45CPOXNBZOKJDPTKQJJ/
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/FFKOGYF7QPVQADNQPL7BOZ4PJTMPFCE4/


[ovirt-users] Re: what is "use host" field in storage domain creation??

2019-12-30 Thread Strahil
I think SPM is not doing initial setup - just other tasks - like snapshots 
creation/deletion.

Best Regards,
Strahil NikolovOn Dec 30, 2019 11:57, yam yam  wrote:
>
> isn't it SPM's job? 
> and is the "use host" required only for setup? 
>
> thanks for quick replying.
> ___
> Users mailing list -- users@ovirt.org
> To unsubscribe send an email to users-le...@ovirt.org
> Privacy Statement: https://www.ovirt.org/site/privacy-policy/
> oVirt Code of Conduct: 
> https://www.ovirt.org/community/about/community-guidelines/
> List Archives: 
> https://lists.ovirt.org/archives/list/users@ovirt.org/message/IRQCB37EXLOHQWKLQNCV4LPQVECNH2MH/
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/FQJLN7L4MKVT3KIPKYZ26UHTFKSRLRZI/


[ovirt-users] Re: what is "use host" field in storage domain creation??

2019-12-30 Thread yam yam
isn't it SPM's job?
and is the "use host" required only for setup?

thanks for quick replying.
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/IRQCB37EXLOHQWKLQNCV4LPQVECNH2MH/


[ovirt-users] Re: what is "use host" field in storage domain creation??

2019-12-30 Thread Benny Zlotnik
One host has to connect and setup the storage (mount the path, create
the files, etc) so you are given the choice which host to use for this

On Mon, Dec 30, 2019 at 11:07 AM  wrote:
>
> hello and happy new year~
>
> I am wondering the role of "use host" field in storage domain creation.
>
> https://www.ovirt.org/documentation/install-guide/chap-Configuring_Storage.html
>
> above link says all communication to the storage domain is through "use host".
> but I can't understand inefficiently passing through that "use host" even 
> though every host can directly access to all domains.
>
> it seems like i am misunderstanding something.
> ___
> Users mailing list -- users@ovirt.org
> To unsubscribe send an email to users-le...@ovirt.org
> Privacy Statement: https://www.ovirt.org/site/privacy-policy/
> oVirt Code of Conduct: 
> https://www.ovirt.org/community/about/community-guidelines/
> List Archives: 
> https://lists.ovirt.org/archives/list/users@ovirt.org/message/KKZHTE3CIV6VIZAN7762GCVHEG3VS2J6/
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/RGE4LI4NZVBOMWUOJW6JMQYKI5HRB54J/


[ovirt-users] what is "use host" field in storage domain creation??

2019-12-30 Thread hyunooudy
hello and happy new year~

I am wondering role of "use host" field in storage domain creation.

https://www.ovirt.org/documentation/install-guide/chap-Configuring_Storage.html
above link says all communication to the storage domain is through "use host".
but I can't understand inefficiently passing through that "use host" even 
though every host can directly access to all domains.

it seems like i am misunderstanding something.
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/BRPVPFBZ5LJEH6FWFEBKQ5PI6YTAFW7M/


[ovirt-users] what is "use host" field in storage domain creation??

2019-12-30 Thread hyunooudy
hello and happy new year~

I am wondering the role of "use host" field in storage domain creation.

https://www.ovirt.org/documentation/install-guide/chap-Configuring_Storage.html

above link says all communication to the storage domain is through "use host".
but I can't understand inefficiently passing through that "use host" even 
though every host can directly access to all domains.

it seems like i am misunderstanding something.
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/KKZHTE3CIV6VIZAN7762GCVHEG3VS2J6/