Re: Hardware Used
by Strahil
As far as I know several orgs are using AMD Ryzen CPUs with oVirt.
Ryzen CPUs are quite nice from price/performance perspective.
Best Regards,
Strahil NikolovOn Jul 17, 2019 15:04, Michal Skrivanek <michal.skrivanek(a)redhat.com> wrote:
>
>
>
>> On 16 Jul 2019, at 15:10, Adrian Odendaal <adrian(a)quodes.co.za> wrote:
>>
> No well we saw that only CPU’s are supported.
>
> So we want to find out what hardware we need in order to progress.
>
> Servers with the needed CPU architecture.
>
> Not sure what you’re looking for. A developer kind of answer - you got that already. If you want anything better I suggest you talk to a vendor who sells oVirt for a living and help you with the right architecture fitting your needs.
> List of certified Intel CPUs for RHEL (and hence CentOS) is here [1] and here[2]. We also support IBM POWER8 and POWER9, and if you wanna start something really big, IBM zSystem mainframes as a tech preview;-)
>
> Thanks,
> michal
>
> [1] https://access.redhat.com/support/policy/intel
> [2] https://access.redhat.com/support/policy/amd
>
>>
>> Kind Regards
>>
>>
>> <bcard.jpg>
>>
>>
>>
>>
>>
>> Legal Disclaimer:
5 years, 4 months
Re: UI exception when changing Cluster in New VM window
by Strahil
Dear Sharon,
I think you mean Marko Vrgotic.
Best Regards,
Strahil NikolovOn Jul 10, 2019 14:19, Sharon Gratch <sgratch(a)redhat.com> wrote:
>
> Hi Strahil,
>
> Based on the stuck trace in the UI log that you sent, I am pretty sure that this UI exception was already fixed on https://gerrit.ovirt.org/#/c/99463/ for oVirt 4.3.4.
> So please follow Michal's suggestion to install latest 4.3.5 version for overcoming this issue.
>
> Thanks,
> Sharon
>
> On Tue, Jul 9, 2019 at 8:19 PM Michal Skrivanek <michal.skrivanek(a)redhat.com> wrote:
>>
>> can you please try that on 4.3.5 and if it persist open a bug with that ui.log attached?
>>
>> thanks,
>> michal
>>
>>> On 5 Jul 2019, at 16:06, Vrgotic, Marko <M.Vrgotic(a)activevideo.com> wrote:
>>>
>>> Hi Strahil,
>>>
>>> I tried what you said and I am still getting an exception.
>>>
>>> Correct me if I am wrong, but my expectation is following, when creating new VM:
>>> Select cluster
>>> Whether I want to use template or create brand new VM from scratch, list of templates and everything else specific to cluster I selected should be loaded
>>>
>>> Instead, I get the exception and have to refresh/reload the page.
>>>
>>> In short, when creating new VM, I am currently locked to a default loaded cluster, which in my case is avshared1.
>>>
>>> To give you bit more insight into configuration, here are the cluster details:
>>>
>>> <image001.png>
>>>
>>> Per cluster:
5 years, 4 months
Re: ovirt_disk and ubuntu issues
by Vrgotic, Marko
Dear oVIrt,
Even though I would like to get some insight into what could be reason this is no working, I did find a workaround:
Instead of trying to get Ubuntu disk specified with ovirt_disk size,
I used qemu-img resize to increase the disk size before importing it to oVIrt.
This works, but it still going to present the problem if User eventually wants to increase for example disk from 40GBto 80GB.
Kindly awaiting your reply.
— — —
Met vriendelijke groet / Kind regards,
Marko Vrgotic
Sr. System Engineer @ System Administration
m.vrgotic(a)activevideo.com<mailto:m.vrgotic@activevideo.com>
From: "Vrgotic, Marko" <M.Vrgotic(a)activevideo.com>
Date: Wednesday, 10 July 2019 at 16:19
To: "users(a)ovirt.org" <users(a)ovirt.org>
Subject: ovirt_disk and ubuntu issues
Dear oVirt,
I am downloading the ubuntu cloud image 16.04 and or 18.04:
- name: "Download base cloud image from server"
get_url:
url: "{{ image_url }}"
checksum: "sha256:{{ image_checksum }}"
validate_certs: yes
dest: "/tmp/{{ inventory_hostname_short }}.qcow2"
delegate_to: localhost
creating a 40GB HDD and attaching image to it:
- name: "Create oVirt disk with base image (with 40Gb allocated)"
ovirt_disk:
name: "{{ inventory_hostname_short }}"
interface: virtio
size: 40GiB
format: cow
upload_image_path: "/tmp/{{ inventory_hostname_short }}.qcow2"
storage_domain: ovirt_production
wait: true
delegate_to: localhost
creating VM afterwards:
- name: "Create new Ubuntu VMs from cloud image"
delegate_to: localhost
ovirt_vm:
auth: "{{ ovirt_auth }}"
name: "{{ inventory_hostname_short }}"
disks:
- name: "{{ inventory_hostname_short }}"
graphical_console:
protocol: vnc
serial_console: true
usb_support: true
soundcard_enabled: false
operating_system: "{{ operating_system_type }}"
type: server
nics:
- name: nic1
profile_name: tenant1
interface: virtio
nic_on_boot: true
cloud_init:
host_name: "{{ inventory_hostname }}"
user_name: ubuntu
authorized_ssh_keys: "{{ ssh_agent_pubkeys.stdout }}"
state: "running"
cluster: "{{ ovirt_cluster }}"
when: inventory_hostname in groups['ubuntu-baker']
When VM gets created, I can see in oVIrt VM details disk created is 40GB.
Executing df -h, gives me following:
root@av3-ubuntu-18-base:/home/ubuntu# df -h
Filesystem Size Used Avail Use% Mounted on
udev 447M 0 447M 0% /dev
tmpfs 92M 696K 92M 1% /run
/dev/vda1 2.0G 1.3G 706M 65% /
tmpfs 460M 0 460M 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 460M 0 460M 0% /sys/fs/cgroup
/dev/vda15 105M 3.6M 101M 4% /boot/efi
tmpfs 92M 0 92M 0% /run/user/1000
Initially I thought growpart or resize2fs is not triggered, but then running dmesg or fdisk /dev/vda, told me that physical disk size is still only size of the downloaded ubuntu cloud image.
Disk /dev/vda: 2.2 GiB, 2361393152 bytes, 4612096 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Is this related to ovirt_disk module, or ubuntu and ovirt_disk, since I do not have this behavior with CentOS 7 images?
Can you advise how to proceed, in case I am missing some configuration parameter or command to be run?
The following Ubuntu images are used:
ubuntu-16: image_url=https://cloud-images.ubuntu.com/xenial/current/xenial-server-cl... image_checksum=fda868058586b129c7fdb6472fe575e911f7c67551a6dc75966f2ec02201bdae
ubuntu-18: image_url=https://cloud-images.ubuntu.com/bionic/current/bionic-server-cl... image_checksum=7d2b90022a169119d7726c0fefa1713acbead7cc36d282c879896fd89c5a6663
Kindly awaiting your reply.
— — —
Met vriendelijke groet / Kind regards,
Marko Vrgotic
Sr. System Engineer @ System Administration
m.vrgotic(a)activevideo.com<mailto:m.vrgotic@activevideo.com>
tel. +31 (0)35 677 4131
5 years, 4 months
Moving Hosted Engine Storage
by Dan Poltawski
Hello,
I've read various posts[1] on this list, but I must confess that I am
still not entirely clear on the process for moving a hosted engine to a
new storage domain (in my case I want to move from an existing NFS
server to a new iSCSI target). Some of what i've read make me slightly
concerned it's a risky operation and in my situation I am just
prototyping and retaining the existing engine will be saving some time
rather than mission critical.
Is anyone able to outline the steps to me?
thanks,
Dan
[1] https://lists.ovirt.org/pipermail/users/2017-June/082466.html
________________________________
The Networking People (TNP) Limited. Registered office: Network House, Caton Rd, Lancaster, LA1 3PE. Registered in England & Wales with company number: 07667393
This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. If you are not the intended recipient you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited.
5 years, 4 months
Re: Update 4.2.8 --> 4.3.5
by Strahil
I'm addding gluster-users as I'm not sure if you can go gluster v3 -> v6 directly.
Theoretically speaking , there should be no problem - but I don't know if you will observe any issues.
@Gluster-users,
Can someone share their thoughts about v3 to v6 migration ?
Best Regards,
Strahil NikolovOn Jul 11, 2019 14:05, Christoph Köhler wrote: > > Hello! > > We have a 4.2.8 environment with some managed gluster-volumes as storage > domains and we want to go up to 4.3.5. > > How is that procedure especially with the gluster nodes in ovirt that > are running 3.12.15? My fear is on the jump to gluster 6. Do the cluster > work if the first node (of three) is upgraded? And what about the > sequence - first the hypervisors or first gluster nodes? > > Is there anyone who had done this? > > Greetings! > Christoph Köhler > _______________________________________________ > Users mailing list -- users(a)ovirt.org > To unsubscribe send an email to users-leave(a)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/VWFS6YUKA77...
5 years, 4 months
Can't oepn console to VM
by csi-laser@cisco.com
Hi,
When trying to open a console for my VM , I'm getting this error :
[cid:image001.png@01D53732.4E21AD20]
Can you please help ?
Thanks in advance
5 years, 4 months
VM status codes
by Mitja Mihelič
Hi!
We are graphing certain parameters we collect from the engine database.
We use following query to get the count of running VMs:
select count(*),cluster.name as cluster from vms, cluster where
vms.cluster_id = cluster.cluster_id and vms.status = 1 group by cluster;
It would help extremely if we knew what the numeric VM status codes mean.
For example, I know that "status = 1" means the VM is running. The ones
we can cause through the web interface are easy enough to figure out.
But there are error states, that cannot be produced by standard use.
For instance, when the event log says "VM foobar has been paused due to
storage I/O problem." the following states get set in the DB
(Query used: select * from vm_dynamic where vm_guid =(select vm_guid
from vm_static where vm_name = 'foobar';):
status | 4
exit_status | 0
pause_status | 2
guest_agent_status | 0
What do they mean?
If you could point me to a table somewhere with the state descriptions
it would be extremely helpful.
Kind regards,
Mitja Mihelič
5 years, 4 months
SSH Authorized_keys
by Vrgotic, Marko
Dear oVIrt,
Would it be possible to utilize SSH Pub key from User config
[cid:image001.png@01D53B2B.0E387070]
In such a way that it is offered or autoloaded into Cloud-init SSH Authorized keys field when exists?
This would bring one less action required before VM can be created.
Kindly awaiting your reply.
— — —
Met vriendelijke groet / Kind regards,
Marko Vrgotic
5 years, 4 months
Re: ovirt-engine-appliance ova
by Strahil
Exactly.
Ovirt (and RHV respectively) can be installed as:
1. VM in an oVirt Cluster
2. Separate machine(s)
In point 2 , the Virt admin should take care about the high availability of the engine.
So, you can install CentOS7 and then deploy the engine's software ontop of it.
Extracting the OVA will not provide you with fully working engine, as the deployment scripts on the hosts will not inject the necessary data on remote system. (Only on local)
Best Regards,
Strahil NikolovOn Jul 15, 2019 04:08, Jingjie Jiang <jingjie.jiang(a)oracle.com> wrote:
>
>
> On 7/13/2019 6:28 AM, Strahil Nikolov wrote:
>
> I still don't get why you need the OVA .
> Are you trying to extract and put it into another virtualization. If this is your intention - better install it as if it was a standalone engine.
>
> Yes, I am trying to build ova with different OS.
>
> What do you mean install it as standalone engine?
>
> install VM first then install as ovirt engine?
>
>
> Thanks,
>
> Jingjie
>
>
>>
>> Best Regards,
>> Strahil Nikolov.
>>
>> В петък, 12 юли 2019 г., 21:48:35 ч. Гринуич+3, Jingjie Jiang <jingjie.jiang(a)oracle.com> написа:
>>
>>
>> Hi Strahil,
>>
>> Thanks for your reply.
>>
>> Can you share the procedure of creating ovirt-engine-appliance ova?
>>
>>
>> Thanks,
>>
>> Jingjie
>>
>>
>> On 7/12/19 12:52 AM, Strahil wrote:
>>
>> Based on my experience - the OVA contains the xml and the actual disk of the hosted engine.
>> Then the deployment starts locally the VM and populates the necessary data in it
>> Once it's over , the deployment shuts down and copies the disk of that local VM, undefines it and then ovirt's ha agents are being configured - so they can mount the shared storage and power up the VM (special tar /OVMF/ file on shared storage has the agent configuration file).
>>
>> So , in the ova there should be a template VM + the xml config (cpus, ram, devices, etc) .
>> I would be surprised if there is something else in it.
>>
>> Best Regards,
>> Strahil Nikolov
>>
>> On Jul 11, 2019 23:39, Jingjie Jiang <jingjie.jiang(a)oracle.com> wrote:
5 years, 4 months