Re: [DISCUSS] Storage-based Snapshots for KVM VMs

2019-11-08 Thread Slavka Peleva
Hi Sven,

The procedure is:

1.  fsfreeze all disks of the VM with help of qemu-guest-agent. If this
fails, the operation is aborted
2.  Take snapshot of each disk of the VM through the storage provider's
takeSnapshot call
3.  fsthaw the VM
4.  Backup the snapshots on secondary storage if it is enabled

So the virtual machine is quiescent while the snapshots are being taken.

Best regards,
Slavka

On Fri, Nov 8, 2019 at 12:31 AM Sven Vogel  wrote:

> Hi Slavka,
>
> Thanks for the answers Slavka! I have another question.
>
> You wrote:
>
> Those storage providers plugins are already in CloudStack - like Solidfire,
> Cloudbyte and etc. It doesn't break the functionality we just use the
> existing implementation of every storage plugin for do the snapshotting.
>
> How does this work for all storages? How do you quiesce the virtual
> machine? Can you explain it a little bit more?
>
> Thanks and Cheers
>
> Sven
>
>
> __
>
> Sven Vogel
> Teamlead Platform
>
> EWERK DIGITAL GmbH
> Brühl 24, D-04109 Leipzig
> P +49 341 42649 - 99
> F +49 341 42649 - 98
> s.vo...@ewerk.com
> www.ewerk.com
>
> Geschäftsführer:
> Dr. Erik Wende, Hendrik Schubert, Frank Richter
> Registergericht: Leipzig HRB 9065
>
> Support:
> +49 341 42649 555
>
> Zertifiziert nach:
> ISO/IEC 27001:2013
> DIN EN ISO 9001:2015
> DIN ISO/IEC 2-1:2011
>
> ISAE 3402 Typ II Assessed
>
> EWERK-Blog | LinkedIn<
> https://www.linkedin.com/company/ewerk-group> | Xing<
> https://www.xing.com/company/ewerk> | Twitter<
> https://twitter.com/EWERK_Group> | Facebook<
> https://de-de.facebook.com/EWERK.IT/>
>
> Mit Handelsregistereintragung vom 09.07.2019 ist die EWERK RZ GmbH auf die
> EWERK IT GmbH verschmolzen und firmiert nun gemeinsam unter dem Namen:
> EWERK DIGITAL GmbH, für weitere Informationen klicken Sie hier<
> https://www.ewerk.com/ewerkdigital>.
>
> Auskünfte und Angebote per Mail sind freibleibend und unverbindlich.
>
> Disclaimer Privacy:
> Der Inhalt dieser E-Mail (einschließlich etwaiger beigefügter Dateien) ist
> vertraulich und nur für den Empfänger bestimmt. Sollten Sie nicht der
> bestimmungsgemäße Empfänger sein, ist Ihnen jegliche Offenlegung,
> Vervielfältigung, Weitergabe oder Nutzung des Inhalts untersagt. Bitte
> informieren Sie in diesem Fall unverzüglich den Absender und löschen Sie
> die E-Mail (einschließlich etwaiger beigefügter Dateien) von Ihrem System.
> Vielen Dank.
>
> The contents of this e-mail (including any attachments) are confidential
> and may be legally privileged. If you are not the intended recipient of
> this e-mail, any disclosure, copying, distribution or use of its contents
> is strictly prohibited, and you should please notify the sender immediately
> and then delete it (including any attachments) from your system. Thank you.
>
> Am 07.11.2019 um 18:12 schrieb Slavka Peleva  slav...@storpool.com>>:
>
> Hi Sven,
>
> Thank you for your questions!
>
> My answers are below.
>
> Kind regards,
> Slavka
>
>
> Thanks for your mail/contribution. You implemention sounds interesting.
>
> Let me ask some questions.
>
> 1. If you speak for RAW Disks you mean. Right?
>  create/revert/delete disk snapshots. The snapshots will be consistent,
> because the virtual machines will be frozen until the snapshotting is done.
>
> We use Netapp Solidfire Storage. I know they are using too RAW Format.
> You spoke about a third party plugin.
>
>
> "The solution is using the third party storages' plugins to
> create/revert/delete disk snapshots."
> The Plugins where they come and does they break any existing functionality?
>
>
> Those storage providers plugins are already in CloudStack - like Solidfire,
> Cloudbyte and etc. It doesn't break the functionality we just use the
> existing implementation of every storage plugin for do the snapshotting.
>
>
>
> I don’t see that we if we use Solidfire we can use this plugin from
> Storepool. Right?
>
>
> The proposed solution is not bound to a specific Storage Provider plugin.
> It will work with any and all Storage Providers that has implemented
> takeSnapshot call.
>
>
> 3.
> And some details about the implementation -  we have added a new
> configuration option in the database named "kvm.vmsnapshot.enabled".
>
> At the moment there is already an flag „kvm.snapshot.enabled“. Well, I
> mean „kvm.vmsnapshot.enabled“ is to uniq to „kvm.snapshot.enabled“.
>
> Maybe this name should rather to be called
> „kvm.vmsnapshotexternalprovider.enabled“ or something like that… Naming is
> a bit long but maybe you will find another cool name. I think it should be
> more generic if anybody can create a plugin for a storage system like
> storepool, Netapp Solidfire ... .
>
>
> Thanks for this! I will think about more appropriate name for this flag.
>
>
> Thanks and
>
> Cheers
>
> Sven
>
>
>
> __
>
> Sven Vogel
> Teamlead Platform
>
> EWERK DIGITAL GmbH
> Brühl 24, D-04109 Leipzig
> P +49 341 42649 - 99
> F +49 341 42649 - 98
> s.vo...@ewerk.com
> www.ewerk.

[GitHub] [cloudstack-primate] onitake commented on issue #2: [WIP] Added config options to enable HTTPS and custom vhost names

2019-11-08 Thread GitBox
onitake commented on issue #2: [WIP] Added config options to enable HTTPS and 
custom vhost names
URL: https://github.com/apache/cloudstack-primate/pull/2#issuecomment-551863708
 
 
   @rhtyd Thanks to the help of a colleague who knows JS better, I found a way 
to make the additional options optional. Please give them a try!


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


Re: [DISCUSS] Storage-based Snapshots for KVM VMs

2019-11-08 Thread Andrija Panic
Hi Slavka,

If I read that correctly, your proposal seems to be around allowing to take
snapshots of all volumes simultaneously, thus improving the current
(useless...) logic where you can snap only single disk at a time (which
makes i.e. DB server restoration impossible).

This sounds interesting, but I might add, requires really extensive testing
and code review, since I expect a lot of storage-related code changes.
This needs to be tested with: local storage, NFS storage, Ceph, SolidFire,
StorePool, and then some more probably.

Qemu/libvirt versions will probably need to be taken into the
considerations (where are the limitations etc.)

Sounds very nice and as a lot of work (testing specifically).

Andrija

On Fri, 8 Nov 2019 at 09:57, Slavka Peleva  wrote:

> Hi Sven,
>
> The procedure is:
>
> 1.  fsfreeze all disks of the VM with help of qemu-guest-agent. If this
> fails, the operation is aborted
> 2.  Take snapshot of each disk of the VM through the storage provider's
> takeSnapshot call
> 3.  fsthaw the VM
> 4.  Backup the snapshots on secondary storage if it is enabled
>
> So the virtual machine is quiescent while the snapshots are being taken.
>
> Best regards,
> Slavka
>
> On Fri, Nov 8, 2019 at 12:31 AM Sven Vogel  wrote:
>
> > Hi Slavka,
> >
> > Thanks for the answers Slavka! I have another question.
> >
> > You wrote:
> >
> > Those storage providers plugins are already in CloudStack - like
> Solidfire,
> > Cloudbyte and etc. It doesn't break the functionality we just use the
> > existing implementation of every storage plugin for do the snapshotting.
> >
> > How does this work for all storages? How do you quiesce the virtual
> > machine? Can you explain it a little bit more?
> >
> > Thanks and Cheers
> >
> > Sven
> >
> >
> > __
> >
> > Sven Vogel
> > Teamlead Platform
> >
> > EWERK DIGITAL GmbH
> > Brühl 24, D-04109 Leipzig
> > P +49 341 42649 - 99
> > F +49 341 42649 - 98
> > s.vo...@ewerk.com
> > www.ewerk.com
> >
> > Geschäftsführer:
> > Dr. Erik Wende, Hendrik Schubert, Frank Richter
> > Registergericht: Leipzig HRB 9065
> >
> > Support:
> > +49 341 42649 555
> >
> > Zertifiziert nach:
> > ISO/IEC 27001:2013
> > DIN EN ISO 9001:2015
> > DIN ISO/IEC 2-1:2011
> >
> > ISAE 3402 Typ II Assessed
> >
> > EWERK-Blog | LinkedIn<
> > https://www.linkedin.com/company/ewerk-group> | Xing<
> > https://www.xing.com/company/ewerk> | Twitter<
> > https://twitter.com/EWERK_Group> | Facebook<
> > https://de-de.facebook.com/EWERK.IT/>
> >
> > Mit Handelsregistereintragung vom 09.07.2019 ist die EWERK RZ GmbH auf
> die
> > EWERK IT GmbH verschmolzen und firmiert nun gemeinsam unter dem Namen:
> > EWERK DIGITAL GmbH, für weitere Informationen klicken Sie hier<
> > https://www.ewerk.com/ewerkdigital>.
> >
> > Auskünfte und Angebote per Mail sind freibleibend und unverbindlich.
> >
> > Disclaimer Privacy:
> > Der Inhalt dieser E-Mail (einschließlich etwaiger beigefügter Dateien)
> ist
> > vertraulich und nur für den Empfänger bestimmt. Sollten Sie nicht der
> > bestimmungsgemäße Empfänger sein, ist Ihnen jegliche Offenlegung,
> > Vervielfältigung, Weitergabe oder Nutzung des Inhalts untersagt. Bitte
> > informieren Sie in diesem Fall unverzüglich den Absender und löschen Sie
> > die E-Mail (einschließlich etwaiger beigefügter Dateien) von Ihrem
> System.
> > Vielen Dank.
> >
> > The contents of this e-mail (including any attachments) are confidential
> > and may be legally privileged. If you are not the intended recipient of
> > this e-mail, any disclosure, copying, distribution or use of its contents
> > is strictly prohibited, and you should please notify the sender
> immediately
> > and then delete it (including any attachments) from your system. Thank
> you.
> >
> > Am 07.11.2019 um 18:12 schrieb Slavka Peleva   > slav...@storpool.com>>:
> >
> > Hi Sven,
> >
> > Thank you for your questions!
> >
> > My answers are below.
> >
> > Kind regards,
> > Slavka
> >
> >
> > Thanks for your mail/contribution. You implemention sounds interesting.
> >
> > Let me ask some questions.
> >
> > 1. If you speak for RAW Disks you mean. Right?
> >  > create/revert/delete disk snapshots. The snapshots will be consistent,
> > because the virtual machines will be frozen until the snapshotting is
> done.
> >
> > We use Netapp Solidfire Storage. I know they are using too RAW Format.
> > You spoke about a third party plugin.
> >
> >
> > "The solution is using the third party storages' plugins to
> > create/revert/delete disk snapshots."
> > The Plugins where they come and does they break any existing
> functionality?
> >
> >
> > Those storage providers plugins are already in CloudStack - like
> Solidfire,
> > Cloudbyte and etc. It doesn't break the functionality we just use the
> > existing implementation of every storage plugin for do the snapshotting.
> >
> >
> >
> > I don’t see that we if we use Solidfire we can use this plugin from
> > Storepool. Right?
> >
> >
> > The proposed solution is not bound

Re: [DISCUSS] Storage-based Snapshots for KVM VMs

2019-11-08 Thread Sven Vogel
Hi Slavka, Hi Andrija,

Sounds really cool.

From you explaination I understand that if the machine is freezed you call a 
snapshot command for each disk and then thaw the vm. Right?

How long we can freeze the vm? Is there any known time how long it’s possible?

Thanks

Sven

Von meinem iPhone gesendet


__

Sven Vogel
Teamlead Platform

EWERK DIGITAL GmbH
Brühl 24, D-04109 Leipzig
P +49 341 42649 - 99
F +49 341 42649 - 98
s.vo...@ewerk.com
www.ewerk.com

Geschäftsführer:
Dr. Erik Wende, Hendrik Schubert, Frank Richter
Registergericht: Leipzig HRB 9065

Zertifiziert nach:
ISO/IEC 27001:2013
DIN EN ISO 9001:2015
DIN ISO/IEC 2-1:2011

EWERK-Blog | LinkedIn | Xing | Twitter | Facebook

Auskünfte und Angebote per Mail sind freibleibend und unverbindlich.

Disclaimer Privacy:
Der Inhalt dieser E-Mail (einschließlich etwaiger beigefügter Dateien) ist 
vertraulich und nur für den Empfänger bestimmt. Sollten Sie nicht der 
bestimmungsgemäße Empfänger sein, ist Ihnen jegliche Offenlegung, 
Vervielfältigung, Weitergabe oder Nutzung des Inhalts untersagt. Bitte 
informieren Sie in diesem Fall unverzüglich den Absender und löschen Sie die 
E-Mail (einschließlich etwaiger beigefügter Dateien) von Ihrem System. Vielen 
Dank.

The contents of this e-mail (including any attachments) are confidential and 
may be legally privileged. If you are not the intended recipient of this 
e-mail, any disclosure, copying, distribution or use of its contents is 
strictly prohibited, and you should please notify the sender immediately and 
then delete it (including any attachments) from your system. Thank you.
> Am 08.11.2019 um 17:01 schrieb Andrija Panic :
>
> Hi Slavka,
>
> If I read that correctly, your proposal seems to be around allowing to take
> snapshots of all volumes simultaneously, thus improving the current
> (useless...) logic where you can snap only single disk at a time (which
> makes i.e. DB server restoration impossible).
>
> This sounds interesting, but I might add, requires really extensive testing
> and code review, since I expect a lot of storage-related code changes.
> This needs to be tested with: local storage, NFS storage, Ceph, SolidFire,
> StorePool, and then some more probably.
>
> Qemu/libvirt versions will probably need to be taken into the
> considerations (where are the limitations etc.)
>
> Sounds very nice and as a lot of work (testing specifically).
>
> Andrija
>
>> On Fri, 8 Nov 2019 at 09:57, Slavka Peleva  wrote:
>>
>> Hi Sven,
>>
>> The procedure is:
>>
>> 1.  fsfreeze all disks of the VM with help of qemu-guest-agent. If this
>> fails, the operation is aborted
>> 2.  Take snapshot of each disk of the VM through the storage provider's
>> takeSnapshot call
>> 3.  fsthaw the VM
>> 4.  Backup the snapshots on secondary storage if it is enabled
>>
>> So the virtual machine is quiescent while the snapshots are being taken.
>>
>> Best regards,
>> Slavka
>>
>>> On Fri, Nov 8, 2019 at 12:31 AM Sven Vogel  wrote:
>>>
>>> Hi Slavka,
>>>
>>> Thanks for the answers Slavka! I have another question.
>>>
>>> You wrote:
>>>
>>> Those storage providers plugins are already in CloudStack - like
>> Solidfire,
>>> Cloudbyte and etc. It doesn't break the functionality we just use the
>>> existing implementation of every storage plugin for do the snapshotting.
>>>
>>> How does this work for all storages? How do you quiesce the virtual
>>> machine? Can you explain it a little bit more?
>>>
>>> Thanks and Cheers
>>>
>>> Sven
>>>
>>>
>>> __
>>>
>>> Sven Vogel
>>> Teamlead Platform
>>>
>>> EWERK DIGITAL GmbH
>>> Brühl 24, D-04109 Leipzig
>>> P +49 341 42649 - 99
>>> F +49 341 42649 - 98
>>> s.vo...@ewerk.com
>>> www.ewerk.com
>>>
>>> Geschäftsführer:
>>> Dr. Erik Wende, Hendrik Schubert, Frank Richter
>>> Registergericht: Leipzig HRB 9065
>>>
>>> Support:
>>> +49 341 42649 555
>>>
>>> Zertifiziert nach:
>>> ISO/IEC 27001:2013
>>> DIN EN ISO 9001:2015
>>> DIN ISO/IEC 2-1:2011
>>>
>>> ISAE 3402 Typ II Assessed
>>>
>>> EWERK-Blog | LinkedIn<
>>> https://www.linkedin.com/company/ewerk-group> | Xing<
>>> https://www.xing.com/company/ewerk> | Twitter<
>>> https://twitter.com/EWERK_Group> | Facebook<
>>> https://de-de.facebook.com/EWERK.IT/>
>>>
>>> Mit Handelsregistereintragung vom 09.07.2019 ist die EWERK RZ GmbH auf
>> die
>>> EWERK IT GmbH verschmolzen und firmiert nun gemeinsam unter dem Namen:
>>> EWERK DIGITAL GmbH, für weitere Informationen klicken Sie hier<
>>> https://www.ewerk.com/ewerkdigital>.
>>>
>>> Auskünfte und Angebote per Mail sind freibleibend und unverbindlich.
>>>
>>> Disclaimer Privacy:
>>> Der Inhalt dieser E-Mail (einschließlich etwaiger beigefügter Dateien)
>> ist
>>> vertraulich und nur für den Empfänger bestimmt. Sollten Sie nicht der
>>> bestimmungsgemäße Empfänger sein, ist Ihnen jegliche Offenlegung,
>>> Vervielfältigung, Weitergabe oder Nutzung des Inhalts untersagt. Bitte
>>> informieren Sie in diesem Fall unverzüglich den Absender und löschen Sie
>>> die E-Mail (

New ACS YouTube Channel

2019-11-08 Thread Andrija Panic
All,

Below info on the videos from the recent CloudStack and Ceph days, held in
London on 24.10.2010

And some more news about the new YouTube channel!
(all new recordings will go there, from all the events and all marketing
and similar content)

If anyone wants to be able to contribute/upload to the new YT channel,
please let me know!

Cheers
Andrija

-- Forwarded message -
From: Clara Herthel 
Date: Fri, 8 Nov 2019 at 18:11
Subject: New ACS YouTube Channel
To: market...@cloudstack.apache.org 



Hello everyone! 🤗


It’s been awhile since we last spoken, and there is great news: our new ACS
youtube channel is finally ready.

Me and Andrija have worked on this, we really hope you enjoy the results. 🙂

The main videos from the old channel (that nobody has the password for) are
reuploaded and we hope this channel can be even more successful. Talks from
the recent CloudStack & Ceph Day are there too.


Channel link: https://www.youtube.com/channel/UCwRLeAHTIaONANmGPOWZN_w



CloudStack & Ceph Day playlist:
https://www.youtube.com/playlist?list=PLnIKk7GjgFlaBqwfrUrqSCiHPVOzgUkQn



(ps: we uploaded the videos neatly but at some point Youtube has decided to
sort the videos in a different way - but I'm trying to figure out how to
fix this)



Any questions, suggestions, ideas, I’m here to answer and work on. 😁



Hope you all have an amazing weekend!



Kind regards,


Clara.

[image: signature_976398379]

*Clara Herthel*

Marketing Coordinator

clara.hert...@shapeblue.com

mobile: +55 11 99920-0521 <+55%2011%2099920-0521>



Rua Gomes de Carvalho, 911 – Sala 316

Vila Olímpia, São Paulo, SP, Brasil, 04547-003

Phone: + 55 <+%2055%2011%202818-3419> 11 2818-3419 <+%2055%2011%202818-3419>

http://www.shapeblue.com/ | twitter: @shapeblue


-- 

Andrija Panić


[ANNOUNCE] / [ANNOUNCEMENT] New CloudStack YouTube channel

2019-11-08 Thread Andrija Panic
Hi all,

as some of you are aware, we have lost access to the original YT channel
for CloudStack (https://www.youtube.com/user/cloudstack).

Thus I have registered a new account (of type "Brand" account) on YT, which
have the possibility to have external "channel managers" assigned to it so
that many people can contribute without ever having the actual login data
for the account***

Please note that:
- I'll be sharing the actual login credentials with a handful of
community people/organisation so that login data is distributed enough (in
case some of us get hit by a train), but not with too many people (for
obvious reasons)
- I'll be updating the Marketing page on the CWIKI with info about this
channel and how to contribute
- **EVERYONE** is welcome to request to become a "Channel manager" so that
you can contribute/upload to the channel  (I need to send an invitation -
so please ping me on email)
- Videos from the old channel, have been uploaded to the new one as well
(with some logos and improvements done by Clara Herthel)
- A new set of videos from the recent CloudStack and Ceph day in London
(held on 24.10.2019) is also available on the new YT channel. We have great
artwork done by Clara on intros and similar, so hopefully, you'll find
those interesting.

IMPORTANT NOTE:
- PLEASE can you all help that we get the initial 100 subscribers, since
this is a requirement from YouTube, in order to be able to change the
account URL from an ugly one that is used currently (
https://www.youtube.com/channel/UCwRLeAHTIaONANmGPOWZN_w) to a
proper/branded one like https://youtube.com/apachecloudstack (account also
needs to be 30 days old, etc.).
So please, send this chunky link to your friends, parents, grandparents,
grandchildren, distance cousins, etc (you get the point) and get them
subscribed.

Let me know if you have any questions or concerns or propositions regarding
the new YT channel, distribution of login data - anything.

Best,
-- 

Andrija Panić


Re: New ACS YouTube Channel

2019-11-08 Thread Ron Wheeler

You might want to look at the naming of some of the videos.

In the Youtube menu, the video titles are truncated so that many seem to 
have the same title: "#ACSarchives 
: Community 
Guy | Networking with...".

You have to mouse over the title to see what the video is about.

For example, "Redundant Routerin  Cloudstack Networking with the 
 Community 
Guy from the #ACSarchives" or " 
Security 
Groupsin  Cloudstack Networking with the 
 Community 
Guy from the #ACSarchives 
" would fix 
this and make the subject easy to see at a glance.


Ron


On 2019-11-08 12:37 p.m., Andrija Panic wrote:

All,

Below info on the videos from the recent CloudStack and Ceph days, 
held in London on 24.10.2010


And some more news about the new YouTube channel!
(all new recordings will go there, from all the events and all 
marketing and similar content)


If anyone wants to be able to contribute/upload to the new YT channel, 
please let me know!


Cheers
Andrija

-- Forwarded message -
From: *Clara Herthel* >

Date: Fri, 8 Nov 2019 at 18:11
Subject: New ACS YouTube Channel
To: market...@cloudstack.apache.org 
 
mailto:market...@cloudstack.apache.org>>




Hello everyone! 🤗


It’s been awhile since we last spoken, and there is great news: our 
new ACS youtube channel is finally ready.


Me and Andrija have worked on this, we really hope you enjoy the 
results. 🙂


The main videos from the old channel (that nobody has the password 
for) are reuploaded and we hope this channel can be even more 
successful. Talks from the recent CloudStack & Ceph Day are there too.



Channel link: https://www.youtube.com/channel/UCwRLeAHTIaONANmGPOWZN_w

CloudStack & Ceph Day playlist: 
https://www.youtube.com/playlist?list=PLnIKk7GjgFlaBqwfrUrqSCiHPVOzgUkQn


(ps: we uploaded the videos neatly but at some point Youtube has 
decided to sort the videos in a different way - but I'm trying to 
figure out how to fix this)


Any questions, suggestions, ideas, I’m here to answer and work on. 😁

Hope you all have an amazing weekend!



Kindregards,


Clara.

signature_976398379



*Clara Herthel*

Marketing Coordinator

clara.hert...@shapeblue.com 

mobile: +55 11 99920-0521 

Rua Gomes de Carvalho, 911 – Sala 316

Vila Olímpia, São Paulo, SP, Brasil, 04547-003 

Phone: + 55 **11 2818-3419 



http://www.shapeblue.com/ | twitter: @shapeblue



--

Andrija Panić


--
Ron Wheeler
Artifact Software
438-345-3369
rwhee...@artifact-software.com



Re: New ACS YouTube Channel

2019-11-08 Thread Ron Wheeler

Clare,

https://www.youtube.com/watch?v=-wuwy-a1D1E is a great video about 
managing playlists and near the 6 minute mark, she discusses how to 
manually sort the videos within the playlist.


I hope that this helps.

Ron

On 2019-11-08 12:37 p.m., Andrija Panic wrote:

All,

Below info on the videos from the recent CloudStack and Ceph days, 
held in London on 24.10.2010


And some more news about the new YouTube channel!
(all new recordings will go there, from all the events and all 
marketing and similar content)


If anyone wants to be able to contribute/upload to the new YT channel, 
please let me know!


Cheers
Andrija

-- Forwarded message -
From: *Clara Herthel* >

Date: Fri, 8 Nov 2019 at 18:11
Subject: New ACS YouTube Channel
To: market...@cloudstack.apache.org 
 
mailto:market...@cloudstack.apache.org>>




Hello everyone! 🤗


It’s been awhile since we last spoken, and there is great news: our 
new ACS youtube channel is finally ready.


Me and Andrija have worked on this, we really hope you enjoy the 
results. 🙂


The main videos from the old channel (that nobody has the password 
for) are reuploaded and we hope this channel can be even more 
successful. Talks from the recent CloudStack & Ceph Day are there too.



Channel link: https://www.youtube.com/channel/UCwRLeAHTIaONANmGPOWZN_w

CloudStack & Ceph Day playlist: 
https://www.youtube.com/playlist?list=PLnIKk7GjgFlaBqwfrUrqSCiHPVOzgUkQn


(ps: we uploaded the videos neatly but at some point Youtube has 
decided to sort the videos in a different way - but I'm trying to 
figure out how to fix this)


Any questions, suggestions, ideas, I’m here to answer and work on. 😁

Hope you all have an amazing weekend!



Kindregards,


Clara.

signature_976398379



*Clara Herthel*

Marketing Coordinator

clara.hert...@shapeblue.com 

mobile: +55 11 99920-0521 

Rua Gomes de Carvalho, 911 – Sala 316

Vila Olímpia, São Paulo, SP, Brasil, 04547-003 

Phone: + 55 **11 2818-3419 



http://www.shapeblue.com/ | twitter: @shapeblue



--

Andrija Panić


--
Ron Wheeler
Artifact Software
438-345-3369
rwhee...@artifact-software.com



Re: New ACS YouTube Channel

2019-11-08 Thread Andrija Panic
Thx for the suggestions Ron, we are no experts so bear with us for a while!

thx

On Fri, 8 Nov 2019, 20:11 Ron Wheeler,
 wrote:

> Clare,
>
> https://www.youtube.com/watch?v=-wuwy-a1D1E is a great video about
> managing playlists and near the 6 minute mark, she discusses how to
> manually sort the videos within the playlist.
>
> I hope that this helps.
>
> Ron
>
> On 2019-11-08 12:37 p.m., Andrija Panic wrote:
> > All,
> >
> > Below info on the videos from the recent CloudStack and Ceph days,
> > held in London on 24.10.2010
> >
> > And some more news about the new YouTube channel!
> > (all new recordings will go there, from all the events and all
> > marketing and similar content)
> >
> > If anyone wants to be able to contribute/upload to the new YT channel,
> > please let me know!
> >
> > Cheers
> > Andrija
> >
> > -- Forwarded message -
> > From: *Clara Herthel*  > >
> > Date: Fri, 8 Nov 2019 at 18:11
> > Subject: New ACS YouTube Channel
> > To: market...@cloudstack.apache.org
> > 
> > mailto:market...@cloudstack.apache.org
> >>
> >
> >
> > 
> > Hello everyone! 🤗
> >
> >
> > It’s been awhile since we last spoken, and there is great news: our
> > new ACS youtube channel is finally ready.
> >
> > Me and Andrija have worked on this, we really hope you enjoy the
> > results. 🙂
> >
> > The main videos from the old channel (that nobody has the password
> > for) are reuploaded and we hope this channel can be even more
> > successful. Talks from the recent CloudStack & Ceph Day are there too.
> >
> >
> > Channel link: https://www.youtube.com/channel/UCwRLeAHTIaONANmGPOWZN_w
> >
> > CloudStack & Ceph Day playlist:
> > https://www.youtube.com/playlist?list=PLnIKk7GjgFlaBqwfrUrqSCiHPVOzgUkQn
> >
> > (ps: we uploaded the videos neatly but at some point Youtube has
> > decided to sort the videos in a different way - but I'm trying to
> > figure out how to fix this)
> >
> > Any questions, suggestions, ideas, I’m here to answer and work on. 😁
> >
> > Hope you all have an amazing weekend!
> >
> >
> >
> > Kindregards,
> >
> >
> > Clara.
> >
> > signature_976398379
> >
> >
> >
> > *Clara Herthel*
> >
> > Marketing Coordinator
> >
> > clara.hert...@shapeblue.com 
> >
> > mobile: +55 11 99920-0521 
> >
> > Rua Gomes de Carvalho, 911 – Sala 316
> >
> > Vila Olímpia, São Paulo, SP, Brasil, 04547-003 
> >
> > Phone: + 55 **11 2818-3419
> > 
> >
> > http://www.shapeblue.com/ | twitter: @shapeblue
> >
> >
> >
> > --
> >
> > Andrija Panić
>
> --
> Ron Wheeler
> Artifact Software
> 438-345-3369
> rwhee...@artifact-software.com
>
>


Re: New ACS YouTube Channel

2019-11-08 Thread Ron Wheeler

No problem.
It was an attempt to contribute something! Clara may have already 
figured it out but it was something new to me as well.


Ron

On 2019-11-08 5:21 p.m., Andrija Panic wrote:

Thx for the suggestions Ron, we are no experts so bear with us for a while!

thx

On Fri, 8 Nov 2019, 20:11 Ron Wheeler,
 wrote:


Clare,

https://www.youtube.com/watch?v=-wuwy-a1D1E is a great video about
managing playlists and near the 6 minute mark, she discusses how to
manually sort the videos within the playlist.

I hope that this helps.

Ron

On 2019-11-08 12:37 p.m., Andrija Panic wrote:

All,

Below info on the videos from the recent CloudStack and Ceph days,
held in London on 24.10.2010

And some more news about the new YouTube channel!
(all new recordings will go there, from all the events and all
marketing and similar content)

If anyone wants to be able to contribute/upload to the new YT channel,
please let me know!

Cheers
Andrija

-- Forwarded message -
From: *Clara Herthel* mailto:clara.hert...@shapeblue.com>>
Date: Fri, 8 Nov 2019 at 18:11
Subject: New ACS YouTube Channel
To: market...@cloudstack.apache.org

mailto:market...@cloudstack.apache.org


Hello everyone! 🤗


It’s been awhile since we last spoken, and there is great news: our
new ACS youtube channel is finally ready.

Me and Andrija have worked on this, we really hope you enjoy the
results. 🙂

The main videos from the old channel (that nobody has the password
for) are reuploaded and we hope this channel can be even more
successful. Talks from the recent CloudStack & Ceph Day are there too.


Channel link: https://www.youtube.com/channel/UCwRLeAHTIaONANmGPOWZN_w

CloudStack & Ceph Day playlist:
https://www.youtube.com/playlist?list=PLnIKk7GjgFlaBqwfrUrqSCiHPVOzgUkQn

(ps: we uploaded the videos neatly but at some point Youtube has
decided to sort the videos in a different way - but I'm trying to
figure out how to fix this)

Any questions, suggestions, ideas, I’m here to answer and work on. 😁

Hope you all have an amazing weekend!



Kindregards,


Clara.

signature_976398379



*Clara Herthel*

Marketing Coordinator

clara.hert...@shapeblue.com 

mobile: +55 11 99920-0521 

Rua Gomes de Carvalho, 911 – Sala 316

Vila Olímpia, São Paulo, SP, Brasil, 04547-003 

Phone: + 55 **11 2818-3419


http://www.shapeblue.com/ | twitter: @shapeblue



--

Andrija Panić

--
Ron Wheeler
Artifact Software
438-345-3369
rwhee...@artifact-software.com



--
Ron Wheeler
Artifact Software
438-345-3369
rwhee...@artifact-software.com