aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/config-osa/templates
diff options
context:
space:
mode:
authorJustin chi <chigang@huawei.com>2017-09-01 08:25:01 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-01 08:25:01 +0000
commit292985dab007c3ee1c3481c985871a3483d9f7bc (patch)
treebfc4888a633f5ea7bf43287cfd9a6c2f2e23dbf2 /deploy/adapters/ansible/roles/config-osa/templates
parentfd8f9747f93b6a6d40c32ae5b727780fe1206039 (diff)
parent8c978370a123dccc0b93ee9bd2ba46f8167a2cc2 (diff)
Merge "Support offline deployment for nosdn no feature scenario"
Diffstat (limited to 'deploy/adapters/ansible/roles/config-osa/templates')
-rw-r--r--deploy/adapters/ansible/roles/config-osa/templates/pip.conf.j229
1 files changed, 29 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/config-osa/templates/pip.conf.j2 b/deploy/adapters/ansible/roles/config-osa/templates/pip.conf.j2
new file mode 100644
index 00000000..15650561
--- /dev/null
+++ b/deploy/adapters/ansible/roles/config-osa/templates/pip.conf.j2
@@ -0,0 +1,29 @@
+# {{ ansible_managed }}
+
+[global]
+{% raw %}
+pre = {{ pip_enable_pre_releases }}
+{% if not pip_lock_to_internal_repo %}
+{% endraw %}
+index-url = http://{{ offline_repo_ip }}:{{ offline_repo_port }}/pip_pkg/simple
+trusted-host = {{ offline_repo_ip }}
+{% raw %}
+{% endif %}
+timeout = {{ pip_timeout }}
+{% if pip_lock_to_internal_repo and pip_links | length > 0 %}
+no-index = true
+trusted-host =
+{% for pip_link in pip_links %}
+ {{ pip_link.link | netloc_no_port }}
+{% endfor %}
+{% endif %}
+
+[install]
+upgrade = {{ pip_upgrade }}
+{% if pip_lock_to_internal_repo and pip_links | length > 0 %}
+find-links =
+{% for pip_link in pip_links %}
+ {{ pip_link.link }}
+{% endfor %}
+{% endif %}
+{% endraw %}