일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- libvirt
- Kubernetes
- KVM
- cloud-init
- cephadm
- HTML
- Kubeflow
- k8s
- OpenStack
- i3
- awx
- Arch
- golang
- Ansible
- Docker
- ceph
- port open
- Linux
- repository
- kolla
- terraform
- nfs-provisioner
- kolla-ansible
- yum
- ubuntu
- archlinux
- Octavia
- ceph-ansible
- grafana-loki
- pacman
- Today
- Total
목록60.Cloud/60.OpenStack (20)
YJWANG
Octavia 구성 중 잘못된 설정으로 아래와 같이 Loadbalancer가 pending 상태인 경우가 발생한다. 이 때 강제로 삭제가 불가하므로 아래와 같은 조치 후 삭제해준다. Invalid state PENDING_CREATE of loadbalancer resource 26fbb50f-dc0f-49fa-8f53-90cea9cc4a72 (HTTP 409) (Request-ID: req-7c76a45d-508e-4611-aa2d-0dd286be5c17) DB container 접속 후 octavia db 접속 # docker exec -it -u root octavia_worker /bin/bash # mysql -u octavia -p octavia.conf를 참고하여 패스워드 입력 DB수정 Ma..
Magnum project를 사용 시 python-magnumclient 를 설치하게되는데 이 때 아래와 같이 메시지가 발생할 수 있다. # openstack coe /usr/lib/python3/dist-packages/secretstorage/dhcrypto.py:15: CryptographyDeprecationWarning: int_from_bytes is deprecated, use int.from_bytes instead from cryptography.utils import int_from_bytes /usr/lib/python3/dist-packages/secretstorage/util.py:19: CryptographyDeprecationWarning: int_from_bytes is de..
NFS 서버 생성 https://yjwang.tistory.com/171 이후 Kolla-ansible은 https://yjwang.tistory.com/112 를 기반으로 하되 config는 아래를 참고합니다. https://docs.openstack.org/kolla-ansible/queens/reference/cinder-guide.html multinode에 storage 쪽에 cinder-volume 이 실행될 호스트를 추가해줍니다. globals.yml (dvr을 위해 enable_neutron_provider_network도 설정했으나 환경에 맞게 변경하시기 바랍니다.) # grep -Ev '^#|^$' /etc/kolla/globals.yml --- kolla_base_distro: "ub..
kolla/config 나 kolla로 설치한 서버가 아니라면 compute node의 nova.conf에 아래 내용을 추가하고 nova-compute service를 재시작합니다. nova-compute 서비스 재시작에 기존 실행 중인 VM에 영향은 없으나 재시작 중 실행 /삭제 요청이 왔다면 해당 요청은 Error 발생할 수 있습니다. 아래 설정은 Block이 매핑되기까지 1800초 (30분)을 대기하고 실패 시 6번을 retry 한다는 설정입니다. https://docs.openstack.org/ocata/config-reference/compute/config-options.html OpenStack Docs: nova.conf - configuration options rescue_image_i..
구축하다보면 여러 설정 오류로 인해 재배포 해야 하는 경우가 있는데 기존 배포한 항목에 꼬여 제대로 배포가 되지 않는 순간들이 있습니다. 아래와 같이 커맨드 실행하셔서 조치하시기 바랍니다. # ./kolla-ansible destroy -i ../../multinode --include-images --yes-i-really-really-mean-it # ./kolla-ansible prune-images -i ../../multinode --yes-i-really-really-mean-it 예로 아래와 같은 에러가 발생할 수 있습니다. 왜냐면 지금은 train 태그로 된 이미지가 없더군요. 앞으로는 테스트도 ussuri 이상으로 테스트 해야겠습니다. https://hub.docker.com/r/koll..
refer to : https://docs.openstack.org/kolla-ansible/latest/user/quickstart.html https://docs.openstack.org/kolla-ansible/victoria/reference/storage/external-ceph-guide.html Prerequisite Ceph Node 사전 작업 Ceph Cluster https://yjwang.tistory.com/entry/Ceph-Ceph-Ansible-Ubuntu-2004 위 포스팅을 참고하여 통해 우선 Ceph Cluster를 정상적으로 배포해준다. refer to : https://docs.ceph.com/en/latest/rbd/rbd-openstack/ 이후 glance / c..