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

Helm Chart등으로 Application을 설치 후 삭제 시 일부 pod가 terminating 상태로 삭제안되는 경우가 간혹 발생한다. 사유는 pod가 참조하고 있는 객체가 존재하기 때문일 수 있다. 먼저 Finalizers에 대해 알아보자. 우리가 간한단 configmap을 한번 만들어보자. # echo -n "name=admin" > env.properties # kubectl create configmap myconfig --from-env-file=env.properties configmap/myconfig created 생성된 configmap 을 확인해 보자. # k get cm myconfig -o yaml apiVersion: v1 data: name: admin kind: Conf..
Kubernetes/일반
2022. 8. 30. 21:04