Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Configuration management gets built into Windows Operating System

tektalks
November 17, 2013

Configuration management gets built into Windows Operating System

#DevOpsDays India 2013 : Configuration management gets built into Windows Operating System

tektalks

November 17, 2013
Tweet

More Decks by tektalks

Other Decks in Technology

Transcript

  1. Configuration Management comes to Windows Ravikanth Chaganti Dell MVP, Windows

    PowerShell Founder, PowerShell Magazine Lead, BITPro and PSBUG @Ravikanth [email protected]
  2. What every CIO or IT administrator want? Continuous Service Availability

    Continuous Rapid Release Cycle Continuous Deployment
  3. Desired State Configuration Enables you to ensure that the components

    of your data center have the correct configuration Allows “continuous deployment” and prevents “configuration drift” Uses language extensions and providers to enable declarative, autonomous and idempotent (repeatable) Deployment, Configuration and Conformance of standards-based managed elements
  4. DSC - How do you get it? • Windows Server

    2012 R2 • Windows 8.1 • Windows Management Framework 4.0 ▫ Windows Server 2012 ▫ Windows Server 2008 R2 ▫ Windows 7
  5. DSC - Basics Configuration ArchiveDemo { Node SRV3-WS2012R2 { Archive

    ArchiveDemo { Path = "\\10.10.10.101\Backup\Scripts.zip" DestinationPath = "C:\Scripts" Ensure="Present" } } } ArchiveDemo .PS1 • Can take parameters like a function • Uses PowerShell Remoting • Each Configuration document gets converted to a MOF
  6. DSC - Resources Archive Environment File Group Log Package Process

    Registry Role Script Service User … Of course, You can build your own resources
  7. Writing Custom Resources • Create a MOF file describing the

    resource • Create a PowerShell Module (PSM1 & PSD1) ▫ Set-TargetResource ▫ Test-TargetResource ▫ Get-TargetResource ▫ Must be idempotent • Copy all files to C:\Windows\system32\WindowsPowerShell\v1.0\ Modules\PSDesiredStateConfiguration\PSProvide rs
  8. Custom Resource MOF [version("1.0.0"), FriendlyName("HostsFile")] class HostsFile : MSFT_BaseResourceConfiguration {

    [Key] string hostName; [Key] string ipAddress; [write,ValueMap {"Present", "Absent"},Values{"Present", "Absent"}] string Ensure; }; • [Key] for unique attributes; become mandatory • [Write] for attributes for which a value can be specified • [Read] for readonly attributes • ValueMap defines the possible values • Naming: classname.schema. mof HostsFile.Schema.Mof
  9. Custom Resource Module • Same parameters on ▫ Get-TargetResource 

    Must return hashtable of the configuration ▫ Set-TargetResource ▫ Test-TargetResource  Must return true or false • Module Manifest is required ▫ Use New-ModuleManifest
  10. Local Configuration Manager • Each computer with PS 4.0 runs

    a DSC Engine (as SYSTEM) • Responsible for calling the DSC resources • LCM properties can be updated to use pull model; of course, using DSC 
  11. Configuration Delivery • Push ▫ Default delivery mechanism ▫ Start-DSCConfiguration

    • Pull ▫ DSC Service ▫ IIS Endpoint or SMB ▫ Requires  Windows Server 2102 or  Windows Server 2012 R2
  12. Push Model Configuration Staging Area (Contains DSC data) 3rd party

    languages and tools Authoring Phase (May include imperative as well as declarative code) Staging Phase - Fully declarative configuration representation using DMTF standard MOF instances - Configuration is calculated for all nodes PS V1, V2, V3 PS V4*** “Make it So” Phase (Declarative configuration is reified through imperative providers.) Parser and Dispatcher Imperative Providers *** When authoring in PowerShell, on top of PSV3 imperative features, PSV4 adds: • Declarative syntax extensions • Schema-driven Intellisense • Schema validation (early-binding) Providers implement changes: • Monotonic • Imperative • Idempotent Local Configuration Store
  13. Pull Model Pull Server (Contains DSC data and Modules) Authoring

    Phase (May include imperative as well as declarative code) Staging Phase - Fully declarative configuration representation using DMTF standard MOF instances - Configuration is calculated for all nodes “Make it So” Phase (Declarative configuration is reified through imperative providers.) Parser and Dispatcher Imperative Providers *** When authoring in PowerShell, on top of PSV3 imperative features, PSV4 adds: • Declarative syntax extensions • Schema-driven Intellisense • Schema validation (early-binding) Providers implement changes: • Monotonic • Imperative • Idempotent Local Configuration Store 3rd party languages and tools PS V1, V2, V3 PS V4***
  14. Summary • DSC provides a standards based configuration management platform

    • PowerShell provides seamless integration with Windows platform • End goal is to help manage heterogeneous platforms and the cloud.