forked from Xabaril/AspNetCore.Diagnostics.HealthChecks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-operator-image.ps1
39 lines (28 loc) · 1.3 KB
/
build-operator-image.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
Param(
[parameter(Mandatory = $false)][bool]$PublishToDockerHub = $false
)
function Exec {
[CmdletBinding()]
param(
[Parameter(Position = 0, Mandatory = 1)][scriptblock]$cmd,
[Parameter(Position = 1, Mandatory = 0)][string]$errorMessage = ($msgs.error_bad_command -f $cmd)
)
& $cmd
if ($lastexitcode -ne 0) {
throw ("Exec: " + $errorMessage)
}
}
#Select the UI version from dependencies.props and use it as image version
$version = select-xml -Path .\build\dependencies.props -XPath "/Project/PropertyGroup[contains(@Label,'Health Checks Package Versions')]/HealthChecksUIK8sOperator"
$tag = $version.node.InnerXML
#Building docker image
echo "Building k8s operator docker image with tag: $tag"
echo "Publishing to Docker Hub : $PublishToDockerHub"
exec { & docker build . -f .\src\HealthChecks.UI.K8s.Operator\Dockerfile -t xabarilcoding/healthchecksui-k8s-operator:$tag }
exec { & docker tag xabarilcoding/healthchecksui-k8s-operator:$tag xabarilcoding/healthchecksui-k8s-operator:latest }
echo "Created docker image healthchecksui-k8s-operator:$tag. You can execute this image using docker run"
#Publish it
if ($PublishToDockerHub) {
docker push xabarilcoding/healthchecksui-k8s-operator:$tag
docker push xabarilcoding/healthchecksui-k8s-operator:latest
}