Cluster API Operator 설치 가이드
설치
helm repo add capi-operator https://kubernetes-sigs.github.io/cluster-api-operator
helm repo update capi-operator \
&& helm search repo capi-operator/cluster-api-operator -l | head -n 10
helm pull capi-operator/cluster-api-operator --version 0.21.0
helm show values capi-operator/cluster-api-operator --version 0.21.0 > cluster-api-operator-0.21.0.yaml
helm template cluster-api-operator capi-operator/cluster-api-operator \
--version 0.21.0 \
-n cluster-api-operator \
-f cluster-api-operator-values.yaml \
> cluster-api-operator.yaml
helm upgrade cluster-api-operator capi-operator/cluster-api-operator \
--install \
--history-max 5 \
--version 0.21.0 \
-n cluster-api-operator \
-f cluster-api-operator-values.yaml