- https://containers.doc.sitecore.com/docs/intro
- https://www.youtube.com/user/mastersitecore (check out docker and containers)
- https://sitecore.gallery.video/detail/videos/featured/video/6176364412001/sitecore-10---developer-tour?autoStart=true
- https://doc.sitecore.com/developers/100/developer-tools/en/walkthrough--using-the-getting-started-template.html
- https://www.slideshare.net/BartPlasmeijer/sitecore-loves-containers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function ConvertTo-CompressedBase64String { | |
| [CmdletBinding()] | |
| Param ( | |
| [Parameter(Mandatory)] | |
| [ValidateScript({ | |
| if (-Not ($_ | Test-Path) ) { | |
| throw "The file or folder $_ does not exist" | |
| } | |
| if (-Not ($_ | Test-Path -PathType Leaf) ) { | |
| throw "The Path argument must be a file. Folder paths are not allowed." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Generates new secrets for Sitecore K8s deployment | |
| .DESCRIPTION | |
| This Powershell script generates new secrets for a Sitecore K8s deployment. | |
| This script requires the SitecoreInstallFramework module (see https://dev.sitecore.net/Downloads/Sitecore_Installation_Framework/2x/Sitecore_Installation_Framework_230.aspx). | |
| This script needs to be executed from the root deployment folder of a specific topology. | |
| .PARAMETER SitecoreLicensePath | |
| Full path of the Sitecore license | |
| .EXAMPLE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pipeline { | |
| agent any | |
| parameters { | |
| string(name: 'Environment', defaultValue: 'develop', description: 'Environment/Branch name') | |
| } | |
| environment { | |
| REGISTRY = 'myacrregistry.azurecr.io/' | |
| GIT_REPO_URL = 'https://github.com/afaniuolo/docker-examples.git' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $prefix = "" | |
| function ConvertTo-CompressedBase64String { | |
| [CmdletBinding()] | |
| Param ( | |
| [Parameter(Mandatory)] | |
| [ValidateScript({ | |
| if (-Not ($_ | Test-Path) ) { | |
| throw "The file or folder $_ does not exist" | |
| } |