반응형
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 | 31 |
Tags
- seldon core
- operator
- argocd
- knative
- keda
- tekton
- mlops
- CANARY
- opensearch
- Kubeflow
- 오퍼레이터
- kubernetes operator
- blue/green
- nginx ingress
- Continuous Deployment
- Litmus
- Argo
- CI/CD
- opentelemetry
- eBPF
- MLflow
- 카오스 엔지니어링
- Kopf
- Kubernetes 인증
- xdp
- Model Serving
- Pulumi
- gitops
- Kubernetes
- serving
Archives
- Today
- Total
목록EndpointSlices (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