Page MenuHomeDevCentral

Add Nasqueron Vault CA certificate to image
ClosedPublic

Authored by dereckson on Jan 12 2024, 22:47.
Tags
None
Referenced Files
F10651974: D3271.diff
Mon, Jul 21, 16:46
F10644720: D3271.id8402.diff
Mon, Jul 21, 06:09
F10644718: D3271.id8399.diff
Mon, Jul 21, 06:09
F10640337: D3271.id.diff
Mon, Jul 21, 01:16
Unknown Object (File)
Sat, Jul 19, 14:20
Unknown Object (File)
Sat, Jul 19, 02:12
Unknown Object (File)
Sun, Jul 13, 13:17
Unknown Object (File)
Thu, Jul 10, 21:15
Subscribers
None

Details

Summary

Deploy it according the underlying Debian userland recommandations.

Allow Python requests library to access it through $REQUESTS_CA_BUNDLE
environment variable.

Ref T1812

Test Plan
import requests
response = requests.post("https://172.27.27.7:8200")
response.status_code

Diff Detail

Repository
rDAF Docker image for Airflow
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

dereckson created this revision.
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
This revision is now accepted and ready to land.Jan 12 2024, 23:23