반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Argo
- operator
- serving
- opentelemetry
- MLflow
- Pulumi
- kubernetes operator
- blue/green
- Kubeflow
- keda
- nginx ingress
- CI/CD
- gitops
- gitea
- CANARY
- knative
- opensearch
- 카오스 엔지니어링
- Kopf
- Kubernetes
- Kubernetes 인증
- argo rollout
- argocd
- Continuous Deployment
- Model Serving
- tekton
- 오퍼레이터
- Litmus
- mlops
- seldon core
Archives
- Today
- Total
목록Endpoints (1)
Kubernetes 이야기
Kubernetes EndpointSlices
Deployment나 ReplicaSet으로 Pod를 여러개 생성하는 경우 Service 를 이용하여 Load Balancer 하도록 설정한다. Service는 Label을 사용하여 트래픽을 라우팅할 Pod를 선택하는 Kubernetes 추상화이다. 아래와 같은 Service 를 만든 경우 apiVersion: v1 kind: Service metadata: labels: app: production name: production namespace: test spec: ports: - name: http port: 80 protocol: TCP targetPort: 8080 selector: app: production type: ClusterIP 생성된 서비스의 상세정보를 보면 아래와 같다. # k d..
Kubernetes/일반
2022. 9. 6. 23:42