nachowork90
nachowork90
Yes @Franco-Sparrow , i can confirm the issue: There are a condition in the file: src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/backup.js https://github.com/OpenNebula/one/blob/57efabf2d59051788be3aec67bcd8bce36d95566/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/backup.js#L102-L104 That is only setting the value 'YES' if the condition are meet, but...
Hi @Franco-Sparrow , I have found something curious: https://github.com/OpenNebula/one/blob/1e23efbd622fe2e61bc63e143898e5b12c9e773b/src/vmm_mad/remotes/kvm/attach_nic#L55-L66 In the line 61 of the previews code, the environment loaded is the local one, but I assume that this action...
Hi team: I have checked this amazing post and Rails example that can be helpful, because it has an implementation of the SAML authentication. https://ossoapp.com/blog/saml-sso-rails/
> Think this is related? #6052 Yes Sr @atodorov-storpool , totally related to your feature request! But I want to clarify one point that differ from your request: * I'm...
Sorry i didn't add all template, but yes, the BACKUP_VOLATILE is set to YES. ```sh root@orchestrator1:~# onevm show 86 -y ``` ```yml --- VM: ID: '86' UID: '0' GID: '0'...
I have done the test manually with a complete new VM and same results. ```bash oneadmin@hv-dev-n1:~$ /var/tmp/one/tm/lib/backup_qcow2.rb -l -d 0:2: -x /var/lib/one/datastores/100/97/backup/vm.xml -p /var/lib/one//datastores/0/97 undefined method `text' for nil:NilClass oneadmin@hv-dev-n1:~$...
Team, can we loop on this!
Hi @rsmontero, the solution in our code was replacing the line: ```ruby per = d.elements['SAVE'].text.casecmp('YES') == 0 ``` ```ruby per = d.elements['SAVE'].nil? ? false : d.elements['SAVE'].text.casecmp('YES') == 0 ``` in...
The typo is in the line that is referenced: https://github.com/OpenNebula/one/blob/41461d4c03c9d3eae13ef6b0ce60a5dd9b64c8e4/include/BackupJob.h#L95 I have compiled the packages with this fix and work perfectly.
Hi, Gluster team. We have this particular environment where we use the same server as a client to mount the shared filesystem. There is no issue on the network side...