新增learn-kubernetes(https://github.com/yyong-brs/learn-kubernetes)相关文件
This commit is contained in:
13
learn/learn-kubernetes-master/kiamol/ch15/add-to-hosts.ps1
Normal file
13
learn/learn-kubernetes-master/kiamol/ch15/add-to-hosts.ps1
Normal file
@@ -0,0 +1,13 @@
|
||||
param (
|
||||
[string] $domain,
|
||||
[string] $ingress
|
||||
)
|
||||
|
||||
$controller="$ingress-controller"
|
||||
$ns="kiamol-$ingress"
|
||||
$ip=$(kubectl get svc $controller -o jsonpath='{.status.loadBalancer.ingress[0].*}' -n $ns)
|
||||
if ($ip -eq 'localhost') {
|
||||
$ip='127.0.0.1'
|
||||
}
|
||||
|
||||
Add-Content -Value "$ip $domain" -Path C:/windows/system32/drivers/etc/hosts
|
||||
Reference in New Issue
Block a user