mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-02-25 15:06:06 -03:30
Offline deployment: PyPi repo (#3542)
This commit is contained in:
committed by
k8s-ci-robot
parent
4f12ba00d1
commit
79bf74e90f
@@ -60,6 +60,7 @@
|
||||
- name: Install required python modules
|
||||
pip:
|
||||
name: "{{ item }}"
|
||||
extra_args: "{{ pip_extra_args | default(omit) }}"
|
||||
with_items: "{{pip_python_coreos_modules}}"
|
||||
environment:
|
||||
PATH: "{{ ansible_env.PATH }}:{{ bin_dir }}"
|
||||
|
||||
@@ -454,3 +454,13 @@ etcd_snapshot_count: "10000"
|
||||
|
||||
certificates_key_size: 2048
|
||||
certificates_duration: 36500
|
||||
|
||||
pip_extra_args: |-
|
||||
{%- set pip_extra_args_list = [] -%}
|
||||
{%- if pyrepo_index is defined -%}
|
||||
{%- set DO = pip_extra_args_list.append('--index-url %s' | format(pyrepo_index)) -%}
|
||||
{%- if pyrepo_cert is defined -%}
|
||||
{%- set DO = pip_extra_args_list.append('--cert %s' | format(pyrepo_cert)) -%}
|
||||
{%- endif -%}
|
||||
{%- endif -%}
|
||||
{{ pip_extra_args_list|join(' ') }}
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
pip:
|
||||
name: "hvac"
|
||||
state: "present"
|
||||
extra_args: "{{ pip_extra_args | default(omit) }}"
|
||||
|
||||
## Bootstrap
|
||||
- include_tasks: bootstrap/main.yml
|
||||
|
||||
@@ -52,6 +52,7 @@
|
||||
pip:
|
||||
name: "hvac"
|
||||
state: "present"
|
||||
extra_args: "{{ pip_extra_args | default(omit) }}"
|
||||
|
||||
- name: gen_certs_vault | Pull vault CA
|
||||
get_url:
|
||||
|
||||
Reference in New Issue
Block a user