Deploy it according the underlying Debian userland recommandations.
Allow Python requests library to access it through $REQUESTS_CA_BUNDLE
environment variable.
Ref T1812
Differential D3271
Add Nasqueron Vault CA certificate to image dereckson on Jan 12 2024, 22:47. Authored by Tags None Referenced Files
Subscribers None
Details
Deploy it according the underlying Debian userland recommandations. Allow Python requests library to access it through $REQUESTS_CA_BUNDLE Ref T1812 import requests response = requests.post("https://172.27.27.7:8200") response.status_code
Diff Detail
Event TimelineComment Actions Dwellers $ docker build -t nasqueron/airflow . [...] $ airflow nasqueron shell $ env | grep -i cert REQUESTS_CA_BUNDLE=/etc/ssl/certs $ python Python 3.11.7 (main, Dec 19 2023, 03:30:20) [GCC 12.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import requests >>> response = requests.post("https://172.27.27.7:8200") >>> response.status_code 200 |