ansible-role-python_venv_build/vars/debian.yml
Jonathan Rosser 366222725e Include REQUESTS_CA_BUNDLE in pip task environment
If the SSH or login session is not restarted, it is possible that
recently written contents of /etc/environment are not accounted for
when installing the built wheels when TLS is enabled on the internal
VIP.

REQUESTS_CA_BUNDLE must be set to allow pip to trust the certificate
presented on the internal VIP.

Change-Id: I7ed37d76c4c3854dc4939c884062bd03a76ece37
2024-05-01 10:44:10 +01:00

29 lines
885 B
YAML

---
# Copyright 2018, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
_venv_build_base_distro_package_list:
- cmake
- g++
- python3-pkgconfig
- python3-dev
- python3-venv
- python3-setuptools
_venv_install_base_distro_package_list:
- python3-venv
- python3-setuptools
_venv_install_ca_bundle_path: /etc/ssl/certs/ca-certificates.crt