add another secondary storage #10327
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Hey @sbrueseke
Yes, that's the current behavior. ACS will always try to download templates/ISOs from the source again, even if it does not exist anymore (unable to download) or has been updated (checksum will not match). As far as I know, If you want to move/copy the template to a new storage, you will need to do it manually in the storage and adjust the database entry for This problem was mentioned in another thread before: [1] https://lists.apache.org/thread/g97o3w8g8dtgfl9y4ddo2jcyrg11olpg I already developed both the extensions mentioned at [2]. The 2nd one (prioritize copying templates from existing image |
Beta Was this translation helpful? Give feedback.
-
Thx winterhazel for that info and already taken care of an improvement. I took a look at out db and found this: mysql> select * from template_store_ref where template_id = 215\G Any idea was reference template_id is? Which table is responsible for this id? |
Beta Was this translation helpful? Give feedback.
-
It references the table
Yes, first you need to copy Then, you can either restart the SSVM's service so that the templates available at the storage get re-synchronized, or change these columns. If you go with the second approach, you'll also need to change |
Beta Was this translation helpful? Give feedback.
It references the table
cloud.vm_template
Yes, first you need to copy
template/tmpl/2/215/215-2-5e0ae2b2-db82-3da9-a723-94cd3736f5e1.iso
andtemplate/tmpl/2/215/template.properties
to the same folder at the new storage.Then, you can either restart the SSVM's service so that the templates available at the storage get re-synchronized, or change these columns. If you go with the second approach, you'l…