Closed1

k8sにデプロイされているenvoyの管理画面を開く

reoringreoring

open admin console

# Get one of the pods that matches the Envoy daemonset
ENVOY_POD=$(kubectl -n projectcontour get pod -l app=envoy -o name | head -1)
# Do the port forward to that pod
kubectl -n projectcontour port-forward $ENVOY_POD 9001
このスクラップは2021/07/26にクローズされました