일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- KVM
- libvirt
- Octavia
- i3
- cloud-init
- golang
- nfs-provisioner
- kolla-ansible
- pacman
- Linux
- terraform
- port open
- yum
- ceph-ansible
- kolla
- Kubernetes
- k8s
- ceph
- archlinux
- grafana-loki
- repository
- Docker
- HTML
- Arch
- Ansible
- Kubeflow
- cephadm
- OpenStack
- ubuntu
- awx
Archives
- Today
- Total
YJWANG
[Openstack] Openstack magnum cli 시 CryptographyDeprecationWarning 발생 본문
60.Cloud/60.OpenStack
[Openstack] Openstack magnum cli 시 CryptographyDeprecationWarning 발생
왕영주 2021. 7. 1. 09:55Magnum 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 deprecated, use int.from_bytes instead
from cryptography.utils import int_from_bytes
https://github.com/matrix-org/synapse/issues/9454
이는 상위 버전의 cryptography 패키지에서 발생하는 것으로 보이며 workaround를 통해 조치할 수 있다.
# pip3 uninstall matrix-synapse twisted cryptography bcrypt cftp
# pip3 install cryptography==3.2
이후 발생하지 않는다
혹은 문제가 있는 것이 아니므로 조치하지 않아도 된다.
반응형