mirror of
https://github.com/kelseyhightower/kubernetes-the-hard-way.git
synced 2025-12-18 02:38:58 +03:00
Merge 4238a2fd6e into b7ae204c86
This commit is contained in:
@@ -38,6 +38,20 @@ KUBERNETES_PUBLIC_ADDRESS=$(aws elb describe-load-balancers \
|
||||
--load-balancer-name kubernetes | \
|
||||
jq -r '.LoadBalancerDescriptions[].DNSName')
|
||||
```
|
||||
|
||||
### Azure
|
||||
|
||||
```
|
||||
# we are configuring kubectl on jumpbox
|
||||
# The controllers are exposed via internal load balancer
|
||||
# access is only allowed within the VNET
|
||||
# (outside the vnet ssh -L ... port 6443 .. from jumpbox to internal lb)
|
||||
KUBERNETES_PUBLIC_ADDRESS=$(azure network lb show \
|
||||
--resource-group the-hard-way \
|
||||
--name the-hard-way-clb \
|
||||
--json | \
|
||||
jq -r '.frontendIPConfigurations[0].privateIPAddress')
|
||||
```
|
||||
---
|
||||
|
||||
Recall the token we setup for the admin user:
|
||||
|
||||
Reference in New Issue
Block a user