-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathguided-setup-check-prereqs.ps1
48 lines (42 loc) · 1.61 KB
/
guided-setup-check-prereqs.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
<#PSScriptInfo
.VERSION 1.3.0
.GUID ec9b62b9-a404-4d72-bf90-92f5b1d9975f
.AUTHOR Black Duck
.COPYRIGHT Copyright 2024 Black Duck Software, Inc. All rights reserved.
#>
param (
[switch] $gitOpsBitnamiDeploy,
[switch] $silent
)
$ErrorActionPreference = 'Stop'
$VerbosePreference = 'Continue'
Set-PSDebug -Strict
'./.install-guided-setup-module.ps1','./setup/core/common/prereqs.ps1' | ForEach-Object {
Write-Debug "'$PSCommandPath' is including file '$_'"
$path = join-path $PSScriptRoot $_
if (-not (Test-Path $path)) {
Write-Error "Unable to find file script dependency at $path. Please download the entire codedx-kubernetes GitHub repository and rerun the downloaded copy of this script."
}
. $path | out-null
}
if ($silent) {
# avoid ternary operator that's unsupported in pwsh v6
if ($gitOpsBitnamiDeploy) {
$choice = 0
} else {
$choice = 1
}
} else {
$yes = New-Object Management.Automation.Host.ChoiceDescription('&Yes', 'Yes, I plan to use Flux or Bitnami''s Sealed Secrets.')
$no = New-Object Management.Automation.Host.ChoiceDescription('&No', 'No, I do not plan to use Flux or Bitnami''s Sealed Secrets.')
$choice = (Get-Host).UI.PromptForChoice('Code Dx Requirements','Do you plan to deploy Code Dx using Flux or Bitnami''s Sealed Secrets?',($yes,$no),0)
}
$prereqMessages = @()
if (-not (Test-SetupPreqs ([ref]$prereqMessages) -useSealedSecrets:($choice -eq 0) -checkKubectlVersion)) {
Write-Host "`nYour system does not meet the Guided Setup prerequisites:`n"
$prereqMessages | ForEach-Object {
Write-Host "* $_`n"
}
exit 1
}
Write-Host "`n`nYour system meets the Guided Setup prerequisites.`n"