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