Transcript
Page 1: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Microsoft Azure : Central component of your

SharePoint Online DevOps

Speaker: Sébastien Levert & Julien Stroheker

15th November 2014

Host: Matthew Hughes

Page 2: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

O365EU Sponsors

Page 3: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

DevOps ?

Page 4: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

DevOps

According to Wikipedia

“DevOps is a software development method that stresses communication, collaboration and integration between software developers and information technology (IT) operations professionals.”

Page 5: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Julien Stroheker

Azure Architect

Microsoft Azure MVP

From Montréal, Canada

http://www.pimpthecloud.com

http://ca.linkedin.com/pub/julien-

stroheker/34/3a8/582

@Ju_Stroh / @pimpthecloud

Page 6: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Sébastien Levert

Office 365 Architect & Developer

Microsoft Office 365 MVP

From Montréal, Canada

http://www.pimpthecloud.com

http://ca.linkedin.com/in/sebastienlevert/

@sebastienlevert / @pimpthecloud

Page 7: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Cloud Models

Page 8: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Cloud Models

IaaS

Page 9: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Cloud Models

Page 10: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Our scenario

Page 11: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Scenario

Page 12: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

The need

Page 13: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

The business need

Easy to deploy and instantiate Development VMs

Provider-Hosted Weather App Part

Page 14: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

A Weather App Part

… On Steroids !

Page 15: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

IaaSPrepare your deployments

Page 16: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

The Nut Cracker syndrom

Page 17: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Why !?!

Save your time

Save your money

Be flexible

Easy and powerful !!

Page 18: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Infrastructure as a ServiceVirtual Network

Cloud Services

Page 19: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Infrastructure as a Service

1 - Active Directory

2 - DirSync

Page 20: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Infrastructure as a Service

3 – Dev Template

• Windows Server 2012 R2 Updated

• Appliy your configurations

• IE Enhanced

• Firewall

• Remote Desktop

• .NET FrameWork

• Sources

• …

Page 21: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Infrastructure as a Service

Prepare an imaged instance of SQL 2014

Page 22: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Infrastructure as a Service

Install all SharePoint’s prerequisites with some rebootsss

Install SharePoint’s binaries with SP1 (MSDN version)

Do not run the « Configuration Wizard »

Configure your scripts sequence

Page 23: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Infrastructure as a Service

SysPrep your machine

http://social.msdn.microsoft.com/Forums/windowsazure/en-US/fafb9ee6-1e57-46ba-8440-27467ad986cf/image-capture-issue-vm-

unexpectedly-started-after-guestinitiated-shutdown?forum=WAVirtualMachinesforWindows

C:\Windows\system32\sysprep\sysprep.exe /generalize /oobe /quit

Page 24: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Infrastructure as a Service

Capture your machine to save as a template

Page 25: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Infrastructure as a Service

Page 26: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Infrastructure as a Service

Install the Microsoft Azure PowerShell Cmdlets

http://azure.microsoft.com/en-us/documentation/articles/install-configure-powershell

Get-AzureSubscription

Set-AzureSubscription –SubscriptionName XX " -CurrentStorageAccountName YY

Page 27: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Infrastructure as a Service

You are now able to create a VM based on your template

$newVM = New-AzureVMConfig-Name "VMPMSPDev"

-InstanceSize"Basic_A3"

-ImageName"SharePoint_Dev"

-HostCachingReadWrite

-DiskLabel "VMPMSPDev_OS"

-MediaLocation"http://pmspstorage.windows.net/disk/VMPMSPDev.vhd" |

Add-AzureProvisioningConfig

-WindowsDomain-AdminUsername"Julien"

-Password "pass@word1"

-Domain"PMSP"

-DomainUserName"Admin"

-DomainPassword "pass@word1"

-JoinDomain"pimpmysharepoint.lan" |

Set-AzureSubnet -SubnetNames "PMSP«

New-AzureVM -VMs $newVm -ServiceName "PMSPLabs"

Page 28: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

PaaSDevelop solutions

Page 29: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Weather Service

{ JSON: ‘Forecasts’ }

?woeid=3534&unit=c

SQL Azure

Yahoo API

Page 30: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Blob Storage

JS

CSS

PNG

Fonts

Page 31: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Content Delivery Network

Page 32: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

SaaSUsing services

Page 33: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Visual Studio Online

Page 34: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Visual Studio Online

Page 35: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Application Insights

Page 36: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

DevOpsAzure to the rescue

Page 37: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

ALM & Azure

Development Production

Page 38: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Builds & Continuous Integration

Page 39: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

New Azure Portal

Page 40: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

Questions

Page 41: Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your SharePoint Online DevOps

O365EU Sponsors


Top Related