Forge Home

xd7storefront

Citrix Xendesktop 7.x Storefront puppet module. Module including storefront installation and initial configuration as well as puppet types definitions for store & netscaler gateway registration

5,827 downloads

5,827 latest version

4.8 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 1.0.0 (latest)
released Apr 16th 2018
This version is compatible with:
  • Puppet Enterprise 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 4.0.0 < 6.0.0

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'virtualdesktopdevops-xd7storefront', '1.0.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add virtualdesktopdevops-xd7storefront
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install virtualdesktopdevops-xd7storefront --version 1.0.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

virtualdesktopdevops/xd7storefront — version 1.0.0 Apr 16th 2018

Citrix XenDesktop 7 Storefront puppet module

This modules install a fully working Citrix XenDesktop 7.x Storefront and a default Store. It provides puppet types configuration of additionnal stores as well as Netscaler Gateways for external access.

The following options are available for a production-grade installation :

  • Security : SSL configuration to secure communications with the Citrix XML service
  • Security : IIS SSL configuration to secure communications between Storefront and the client device.

Requirements

The minimum Windows Management Framework (PowerShell) version required is 5.0 or higher, which ships with Windows 10 or Windows Server 2016, but can also be installed on Windows 7 SP1, Windows 8.1, Windows Server 2008 R2 SP1, Windows Server 2012 and Windows Server 2012 R2.

This module requires a custom version of the puppetlabs-dsc module compiled with XenDesktop7 and Storefront Powershell DSC resources as a dependency. Ready to use virtualdesktopdevops/dsc v1.5.0 puppet module provided on Puppet Forge.

Change log

A full list of changes in each version can be found in the change log.

Integration informations

Storefront is deployed with a default store configured during install.

The SSL certificate provided needs to be a password protected p12/pfx certificate including the private key.

The SSL trust chain is checked by Storefront during HTTPS web access and callback process to Netscaler Gateway. The server certificate deployed for Storefront (IIS HTTPS binding) and Netscaler Callback VIP have to be signed by the Certification Authority certificate deployed in this puppet module. Client access to Storefront will fail with self signed certificates or if Storefront is not able to verify the SSL trust chain.

The module can be installed on a Standard, Datacenter version of Windows 2012R2 or Windows 2016.

Usage

xd7storefront

This class will install and configure IIS and Citrix Storefront. Storefront deployment is initialized after IIS installation and a default store is created. Additionnal stores can be configured later using the xd7storefront::store puppet type.

  • [String] baseurl (Required): Storefront cluster/group base url, i.e. 'https://storefront.domain.com/'.
  • [String] svc_username (Required): Privileged account used by Puppet for installing IIS and Citrix Storefront.
  • [String] svc_password (Required): Password of the privileged account. Should be encrypted with hiera-eyaml.
  • [String] sourcepath (Required): Path of a folder containing the Citrix Xendesktop 7.x installer (unarchive the ISO image in this folder).
  • [String] xd7sitename (Required): Name of the Xendesktop 7 farm hosted on the Delivery Controllers to which Storefront will be linked
  • [String Array] deliverycontrollers (Required): List of Citrix Delivery Controllers of the XenDesktop 7 site ['srv-cxdc01.domain.net', 'srv-cxdc012.domain.net']
  • [Uint32] deliverycontrollersport (Optional, default is 443): Delivery Controllers XML service communication port. If not specified, defaults to 443.
  • [String] deliverycontrollerstransporttype (Optional, default is HTTPS): Delivery Controllers XML service transport type. Valid values are: HTTP, HTTPS, SSL. If not specified, defaults to "HTTPS".
  • [Boolean] deliverycontrollersloadbalance (Optional, default is true): Round robin load balance the xml service servers. If not specified, defaults to True.
  • [String] xd7farmtype (Optional [XenDesktop|XenApp], default is XenDesktop): The type of Citrix XenDesktop site/farm hosted on the Delivery Controllers to which Storefront will be linked
  • [String Array] storefrontauthmethods (Optional, default is ['ExplicitForms','IntegratedWindows']): Storefront user authentification method. Must be an array with at least one of the following values : [ 'Certificate', 'CitrixAGBasic', 'CitrixFederation', 'ExplicitForms', 'HttpBasic', 'IntegratedWindows' ]
  • [Boolean]https (Optional, default is false): Deploy SSL certificate on IIS and activate SSL access to Storefront ? Default : false
  • [String] sslcertificatesourcepath (Required if https = true): Location of the SSL certificate (p12 / PFX format with private key). Can be local folder, UNC path, HTTP URL)
  • [String] sslcertificatepassword (Required if https = true): Password protecting the p12/pfx SSL certificate file.
  • [String] sslcertificatethumbprint (Required if https = true): Thumbprint of the SSL certificate (available in the SSL certificate).
  • [String] cacertificatesourcepath (Required if https = true): Location of the SSL Certification Autority root certificate (PEM or CER format). Can be local folder, UNC path, HTTP URL)
  • [String] cacertificatethumbprint (Required if https = true): Thumbprint of the SSL Certification Autority root certificate (available in the SSL certificate).
node 'storefront' {
    class{'xd7storefront':
      baseurl => 'https://storefront.testlab.com/'
      svc_username => 'TESTLAB\svc-puppet',
      svc_password => 'P@ssw0rd',
      sourcepath => '\\\\fileserver\xendesktop715',
      xd7sitename => 'XD7TestSite',
      xd7farmtype => 'XenDesktop',    
      deliverycontrollers => ['srv-cxdc01.testlab.com', 'srv-cxdc02.testlab.com'],
      deliverycontrollerstransporttype => 'HTTPS',
      deliverycontrollersport => 443,
      deliverycontrollersloadbalance => true,
      storefrontauthmethods => ['IntegratedWindows', 'ExplicitForms']
      https => true,
      sslcertificatesourcepath => '\\\\fileserver\ssl\cxdc.pfx',
      sslcertificatepassword => 'P@ssw0rd',
      sslcertificatethumbprint => '44cce73845feef4da4d369a37386c862eb3bd4e1',
      cacertificatesourcepath => '\\\\fileserver\ssl\ca-root.pem',
      cacertificatethumbprint => '48jise7dssdsd4da4d369a3738dsdsdeeb3sdiu3'
    }
}

xd7storefront::store

Puppet type to configure additionnal stores to a Citrix Storefront deployment. Can be declared multiple times in a node configuation.

  • [String] storeName (Required): Name of the storefront store. Will be used as a Friendly name and as a base for store URL construction.
  • [String] xd7sitename (Required): Name of the Xendesktop farm hosted on the Delivery Controllers to which Storefront will be linked
  • [String Array] deliverycontrollers (Required): List of Citrix Delivery Controllers of the XenDesktop 7 site ['srv-cxdc01.domain.net', 'srv-cxdc012.domain.net']
  • [UInt32] deliverycontrollersport (Optional, default is 443): Delivery Controllers XML service communication port. If not specified, defaults to 443.
  • [String] deliverycontrollerstransporttype (Optional, default is HTTPS): Delivery Controllers XML service transport type. Valid values are: HTTP, HTTPS, SSL. If not specified, defaults to "HTTPS".
  • [Boolean] deliverycontrollersloadbalance (Optional, default is true): Round robin load balance the xml service servers. If not specified, defaults to True.
  • [String] xd7farmType (Optional [XenDesktop|XenApp], default is XenDesktop): The type of Citrix XenDesktop site/farm hosted on the Delivery Controllers to which Storefront will be linked.
  • [String Array] storefrontauthmethods (Optional, default is ['ExplicitForms','IntegratedWindows']): Storefront user uthentification method. Must be an array with at least one of the following values : [ 'Certificate', 'CitrixAGBasic', 'CitrixFederation', 'ExplicitForms', 'HttpBasic', 'IntegratedWindows' ]
node 'storefront' {
    class{'xd7storefront':
      baseurl => 'https://storefront.testlab.com/'
      svc_username => 'TESTLAB\svc-puppet',
      svc_password => 'P@ssw0rd',
      sourcepath => '\\\\fileserver\xendesktop715',
      xd7sitename => 'XD7TestSite',
      xd7farmtype => 'xendesktop',    
      deliverycontrollers => ['srv-cxdc01.testlab.com', 'srv-cxdc02.testlab.com'],
      deliverycontrollerstransporttype => 'HTTPS',
      deliverycontrollersport => 443,
      deliverycontrollersloadbalance => true,
      storefrontauthmethods => ['IntegratedWindows', 'ExplicitForms']
      https => true,
      sslcertificatesourcepath => '\\\\fileserver\ssl\cxdc.pfx',
      sslcertificatepassword => 'P@ssw0rd',
      sslcertificatethumbprint => '44cce73845feef4da4d369a37386c862eb3bd4e1',
      cacertificatesourcepath => '\\\\fileserver\ssl\ca-root.pem',
      cacertificatethumbprint => '48jise7dssdsd4da4d369a3738dsdsdeeb3sdiu3'  
    }->

    xd7storefront::store{'CustomStore01':
      storename => 'CustomStore01',
      xd7sitename => 'XD7TestSite',
      xd7farmtype => 'XenDesktop',
      deliverycontrollers => ['srv-cxdc01.testlab.com', 'srv-cxdc02.testlab.com'],
      deliverycontrollerstransporttype => 'HTTPS',
      deliverycontrollersport => 443,
      deliverycontrollersloadbalance => true,
      storefrontauthmethods => ['IntegratedWindows', 'ExplicitForms']
    }

    xd7storefront::store{'CustomStore02':
      storename => 'CustomStore02',
      xd7sitename => 'XD7DevelopmentSite',
      xd7farmtype => 'XenDesktop',
      deliverycontrollers => ['srv-cxdc03.testlab.com', 'srv-cxdc04.testlab.com'],
      deliverycontrollerstransporttype => 'HTTPS',
      deliverycontrollersport => 443,
      deliverycontrollersloadbalance => true,
      storefrontauthmethods => ['CitrixFederation']
    }
}

xd7storefront::netscalergateway - Configure netscaler gateway

Puppet type to declare a Netscaler Gateway in a Citrix Storefront deployment. Can be declared multiple times in a node configuation. Declaration of a Netscaler Gateway will create an associated external beacon in Storefront for external access.

In this first version of the xd7storefront module, Netscaler Gateway has to be manually linked to a store to enable external access.

  • [String] netscaler_name (Required): Name of the Netscaler Gateway object which will be registered in Storefront,
  • [String] netscaler_external_url (Required): NetScaler gateway external URL for Storefront access.
  • [String] netscaler_authentication_method (Required, ValueMap{"UsedForHDXOnly", "Domain", "RSA", "DomainAndRSA", "SMS", "GatewayKnows", "SmartCard", "None"}): Login type required and supported by the Gateway. Valid values are: UsedForHDXOnly, Domain, RSA, DomainAndRSA, SMS, GatewayKnows, SmartCard, None.
  • [String] netscaler_callback_url (Required): NetScaler gateway authentication NetScaler call-back Url.
  • [String] netscaler_snip (Required): NetScaler subnet IP address used to contact Storefront.
  • [String Array] sta_urls (Required): (String Array) Array containing XD7 Secure Ticket Authority server URLs at format ['http://srv-cxdc01.domain.net/scripts/ctxsta.dll', 'http://srv-cxdc02.domain.net/scripts/ctxsta.dll']
  • [String] netscaler_smartcardfallbacklogontype (Optional, default is none): Login type to use when SmartCard fails. Valid values are: UsedForHDXOnly, Domain, RSA, DomainAndRSA, SMS, GatewayKnows, SmartCard, None.
node 'storefront' {
    xd7storefront::netscalergateway {'ExternalAccess':
      netscaler_external_url => 'http://ext.domain.net',
      netscaler_authentication_method => 'SmartCard',
      netscaler_smartcardfallbacklogontype => 'None',
      netscaler_callback_url => 'http://callback.domain.net',
      netscaler_snip => '192.168.1.200',
      sta_urls => ['http://srv-cxdc01.domain.net/scripts/ctxsta.dll']
    }
}