functions/AKS/InstallHelmClient.ps1
<#
.SYNOPSIS InstallHelmClient .DESCRIPTION InstallHelmClient .INPUTS InstallHelmClient - The name of InstallHelmClient .OUTPUTS None .EXAMPLE InstallHelmClient .EXAMPLE InstallHelmClient #> function InstallHelmClient() { [CmdletBinding()] param ( ) Write-Verbose 'InstallHelmClient: Starting' # [string] $url = $globals.helmInstallUrl Write-Verbose 'InstallHelmClient: Done' } Export-ModuleMember -Function 'InstallHelmClient' |