728x90
목차
1. ingress 설치
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.6.4/deploy/static/provider/cloud/deploy.yaml
2. ingress-nginx 전체 조회
kubectl get all -n ingress-nginx
NAME READY STATUS RESTARTS AGE
pod/ingress-nginx-controller-7c8d7f6869-6qxkv 1/1 Running 0 16d
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/ingress-nginx-controller LoadBalancer 1x.9x.1x.4x 1x.1x.5x.2xx 80:3xxxx/TCP,443:3xxxx/TCP 115d
service/ingress-nginx-controller-admission ClusterIP 1x.1x.2x.1x <none> 443/TCP 115d
NAME READY UP-TO-DATE AVAILABLE AGE
deployment.apps/ingress-nginx-controller 1/1 1 1 115d
NAME DESIRED CURRENT READY AGE
replicaset.apps/ingress-nginx-controller-594555f486 0 0 0 115d
replicaset.apps/ingress-nginx-controller-7c8d7f6869 1 1 1 40d
NAME COMPLETIONS DURATION AGE
job.batch/ingress-nginx-admission-create 1/1 3s 115d
job.batch/ingress-nginx-admission-patch 1/1 4s 115d
728x90
'최근 포스팅 TOP10' 카테고리의 다른 글
[쿠버네티스] externalTrafficPolicy 옵션으로 Ingress 접근 범위 설정하기 (0) | 2024.11.15 |
---|---|
[머신러닝] 쿠버네티스 트리톤 서버에서 onnx API 호출 시 413 Request Entity Too Large 이슈 해결하기 (0) | 2024.10.02 |
[머신러닝] 쿠버네티스에서 pytorch 모델 Triton서버를 활용해서 서빙하기(model.pt) (0) | 2024.10.02 |
[도커] 로컬에 설치한 넥서스에 새로 빌드 후 이미지 push하기 (0) | 2024.09.23 |
[머신러닝] 쿠버네티스에서 TensorFlow 모델 Triton 서버를 활용해서 서빙하기(saved_model) (3) | 2024.09.23 |