-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathup.ps1
179 lines (156 loc) · 7.33 KB
/
up.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
[CmdletBinding(DefaultParameterSetName = "no-arguments")]
Param (
[Parameter(HelpMessage = "Toggles running against edge. This will only run Traefik and the host containers.")]
[switch]$UseEdge,
[Parameter(HelpMessage = "Toggles whether to skip building the images.")]
[switch]$SkipBuild,
[Parameter(HelpMessage = "Toggles whether to skip schemas and rebuild of the indexes.")]
[switch]$SkipIndexing,
[Parameter(HelpMessage = "Toggles whether to skip pushing items and JSS configuration.")]
[switch]$SkipPush,
[Parameter(HelpMessage = "Toggles whether to skip opening the site and CM in a browser.")]
[switch]$SkipOpen
)
$ErrorActionPreference = "Stop";
$envContent = Get-Content .env -Encoding UTF8
# Double check whether init has been run
$envCheckVariable = "HOST_LICENSE_FOLDER"
$envCheck = $envContent | Where-Object { $_ -imatch "^$envCheckVariable=.+" }
if (-not $envCheck) {
throw "$envCheckVariable does not have a value. Did you run 'init.ps1 -InitEnv'?"
}
$xmCloudHost = $envContent | Where-Object { $_ -imatch "^CM_HOST=.+" }
$mvpHost = $envContent | Where-Object { $_ -imatch "^MVP_RENDERING_HOST=.+" }
$hackathonUSAeuHost = $envContent | Where-Object { $_ -imatch "^hackathonUSA_EU_HOST=.+" }
$hackathonUSAanzHost = $envContent | Where-Object { $_ -imatch "^hackathonUSA_ANZ_HOST=.+" }
$hackathonUSAindiaHost = $envContent | Where-Object { $_ -imatch "^hackathonUSA_INDIA_HOST=.+" }
$hackathonHost = $envContent | Where-Object { $_ -imatch "^hackathonUSA_NA_HOST=.+" }
$hackathonUSA2024EuHost = $envContent | Where-Object { $_ -imatch "^hackathonUSA2024_EU_HOST=.+" }
$sitecoreDockerRegistry = $envContent | Where-Object { $_ -imatch "^SITECORE_DOCKER_REGISTRY=.+" }
$sitecoreVersion = $envContent | Where-Object { $_ -imatch "^SITECORE_VERSION=.+" }
if ([string]::IsNullOrEmpty($xmCloudHost) -or
[string]::IsNullOrEmpty($mvpHost) -or
[string]::IsNullOrEmpty($hackathonUSAeuHost) -or
[string]::IsNullOrEmpty($hackathonUSAanzHost) -or
[string]::IsNullOrEmpty($hackathonUSAindiaHost) -or
[string]::IsNullOrEmpty($hackathonHost) -or
[string]::IsNullOrEmpty($hackathonUSA2024EuHost) -or
[string]::IsNullOrEmpty($sitecoreDockerRegistry) -or
[string]::IsNullOrEmpty($sitecoreVersion))
{
throw "Missing hostname, docker registry or sitecore version ENV variable!"
}
$xmCloudHost = $xmCloudHost.Split("=")[1]
$mvpHost = $mvpHost.Split("=")[1]
$hackathonUSAeuHost = $hackathonUSAeuHost.Split("=")[1]
$hackathonUSAanzHost = $hackathonUSAanzHost.Split("=")[1]
$hackathonUSAindiaHost = $hackathonUSAindiaHost.Split("=")[1]
$hackathonHost = $hackathonHost.Split("=")[1]
$hackathonUSA2024EuHost = $hackathonUSA2024EuHost.Split("=")[1]
$sitecoreDockerRegistry = $sitecoreDockerRegistry.Split("=")[1]
$sitecoreVersion = $sitecoreVersion.Split("=")[1]
if (-Not $SkipBuild) {
Write-Host "Keeping XM Cloud base image up to date" -ForegroundColor Green
docker pull "$($sitecoreDockerRegistry)sitecore-xmcloud-cm:$($sitecoreVersion)"
# Build all containers in the Sitecore instance, forcing a pull of latest base containers
Write-Host "Building containers..." -ForegroundColor Green
docker compose build
if ($LASTEXITCODE -ne 0) {
Write-Error "Container build failed, see errors above."
}
}
if ($UseEdge) {
# Start the container using the edge override to only run traefik & host containers
Write-Host "Starting Sitecore hosts running againt edge..." -ForegroundColor Green
docker compose -f .\docker-compose.yml -f .\docker-compose.override.yml -f .\docker-compose.edge.yml up -d
# Wait for Traefik to expose Rendering Host route
Write-Host "Waiting for MVP Rendering Host to become available..." -ForegroundColor Green
$startTime = Get-Date
do {
Start-Sleep -Milliseconds 100
try {
$status = Invoke-RestMethod "http://localhost:8079/api/http/routers/mvp-secure@docker"
}
catch {
if ($_.Exception.Response.StatusCode.value__ -ne "404") {
throw
}
}
} while ($status.status -ne "enabled" -and $startTime.AddSeconds(60) -gt (Get-Date))
if (-not $status.status -eq "enabled") {
$status
Write-Error "Timeout waiting for MVP Rendering Host to become available via Traefik proxy. Check mvp-rendering container logs."
}
Write-Host "Opening site..." -ForegroundColor Green
Start-Process https://$mvpHost
Start-Process https://$hackathonUSAeuHost
Start-Process https://$hackathonUSAanzHost
Start-Process https://$hackathonUSAindiaHost
Start-Process https://$hackathonHost
Start-Process https://$hackathonUSA2024EuHost
}
else {
# Start the Sitecore instance
Write-Host "Starting Sitecore environment, all roles running locally..." -ForegroundColor Green
docker compose up -d
# Wait for Traefik to expose CM route
Write-Host "Waiting for CM to become available..." -ForegroundColor Green
$startTime = Get-Date
do {
Start-Sleep -Milliseconds 100
try {
$status = Invoke-RestMethod "http://localhost:8079/api/http/routers/cm-secure@docker" -TimeoutSec 600
}
catch {
if ($_.Exception.Response.StatusCode.value__ -ne "404") {
throw
}
}
} while ($status.status -ne "enabled" -and $startTime.AddSeconds(600) -gt (Get-Date))
if (-not $status.status -eq "enabled") {
$status
Write-Error "Timeout waiting for Sitecore CM to become available via Traefik proxy. Check CM container logs."
}
Write-Host "Restoring Sitecore CLI..." -ForegroundColor Green
dotnet tool restore
Write-Host "Installing Sitecore CLI Plugins..."
dotnet sitecore --help | Out-Null
if ($LASTEXITCODE -ne 0) {
Write-Error "Unexpected error installing Sitecore CLI Plugins"
}
Write-Host "Logging into Sitecore..." -ForegroundColor Green
dotnet sitecore cloud login
dotnet sitecore connect -r xmcloud --cm https://$xmCloudHost --allow-write true --environment-name default
if ($LASTEXITCODE -ne 0) {
Write-Error "Unable to log into Sitecore, did the Sitecore environment start correctly? See logs above."
}
if (-not $SkipIndexing) {
# Populate Solr managed schemas to avoid errors during item deploy
Write-Host "Populating Solr managed schema..." -ForegroundColor Green
dotnet sitecore index schema-populate
if ($LASTEXITCODE -ne 0) {
Write-Error "Populating Solr managed schema failed, see errors above."
}
# Rebuild indexes
Write-Host "Rebuilding indexes ..." -ForegroundColor Green
dotnet sitecore index rebuild
}
if (-not $SkipPush) {
# Deploy the serialised content items
Write-Host "Pushing items to Sitecore..." -ForegroundColor Green
dotnet sitecore ser push
if ($LASTEXITCODE -ne 0) {
Write-Error "Serialization push failed, see errors above."
}
}
if (-not $SkipOpen) {
Write-Host "Opening site..." -ForegroundColor Green
Start-Process https://$xmCloudHost/sitecore/
Start-Process https://$mvpHost
Start-Process https://$hackathonUSAeuHost
Start-Process https://$hackathonUSAanzHost
Start-Process https://$hackathonUSAindiaHost
Start-Process https://$hackathonHost
Start-Process https://$hackathonUSA2024EuHost
}
}