-
[K8S] kubespray inventory_builder 제거Kubernetes 2025. 3. 21. 13:00
Kubespray 2.27.0부터 inventory_builder가 삭제되었습니다!
https://github.com/kubernetes-sigs/kubespray/commit/719c0b00c5b21f200e6ad14de3ac54b2b2dfd975
Remove the inventory_builder script · kubernetes-sigs/kubespray@719c0b0
This only really help with the easiest part of building your inventory (listing the hosts) as you still need to edit your groups vars and similar. The opaqueness of the script does not really help ...
github.com
hosts.yaml을 구성해주는 스크립트였지만.. 이제 수동으로 파일을 구성하면 됩니다!
- 기존 사용 방법 → inventory 폴더 복사 및 스크립트 실행
# 복사 cp -rfp inventory/sample inventory/mycluster # 환경변수 지정 및 스크립트 실행 # Update Ansible inventory file with inventory builder # declare -a IPS=(Master_IP Node1_IP Node2_IP) declare -a IPS=(IP) HOST_PREFIX=test KUBE_CONTROL_HOSTS=1 CONFIG_FILE=inventory/mycluster/hosts.yaml python3 contrib/inventory_builder/inventory.py ${IPS[@]}
- inventory_builder 사용 X → hosts.yaml 수동 생성
# 복사 cp -rfp inventory/sample inventory/mycluster # vi inventory/mycluster/hosts.yaml all: vars: ansible_user: 'hyun' ansible_password: 1234 ansible_become_password: 1234 hosts: master-name: ansible_host: {Master_IP} ip: {Master_IP} access_ip: {Master_IP} node1-name: ansible_host: {Node1_IP} ip: {Node1_IP} access_ip: {Node1_IP} node2-name: ansible_host: {Node2_IP} ip: {Node2_IP} access_ip: {Node2_IP} children: kube_control_plane: hosts: master-name: kube_node: hosts: master-name: node1-name: node2-name: etcd: hosts: master-name: k8s_cluster: children: kube_control_plane: kube_node: calico_rr: hosts: {}
'Kubernetes' 카테고리의 다른 글
MetalLB 설치하기 (0) 2025.03.22 Harbor 설치 (Helm) (0) 2025.03.21 [K8S][폐쇄망]Kubespray로 Kubernetes 설치하기 - Ubuntu (0) 2025.03.20 [K8S][폐쇄망]Kubespray로 Kubernetes 설치하기 - CentOS7/Rocky8 (0) 2025.03.20 [K8S][폐쇄망] Kubespray 폐쇄망 설치 파일 준비하기 (0) 2025.03.20