Myo-Kyeong Tech Blog

[Kubernetes] 쿠버네티스 OLM(Operator Lifecycle Manager) 설치 본문

DevOps/Kubernetes

[Kubernetes] 쿠버네티스 OLM(Operator Lifecycle Manager) 설치

myo-kyeong 2025. 1. 12. 02:47
728x90
반응형

 

1️⃣  OLM 설치를 위한 CRD(Custom Resource Definitions) 설치

kubectl apply -f https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.19.1/crds.yaml

 

2️⃣  쿠버네티스에 OLM 설치

kubectl apply -f https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.19.1/olm.yaml
  • 설치된 리소스 확인
kmk@test:~$ kubectl get pods -n olm

NAME                                READY   STATUS    RESTARTS   AGE
catalog-operator-6d497d56d8-shvvv   1/1     Running   0          4m40s
olm-operator-7665dcf6dc-swnzh       1/1     Running   0          4m40s
operatorhubio-catalog-mh599         1/1     Running   0          4m4s
packageserver-657c98d7c9-6mbdb      1/1     Running   0          4m3s
packageserver-657c98d7c9-ndp75      1/1     Running   0          4m3s

 

728x90
반응형