Browse Source

Use relative paths for data_files in setup.cfg (#2812)

pip install doesn't work with absolute paths

Signed-off-by: Bogdan Dobrelya <bogdando@mail.ru>
pull/2819/head
Bogdan Dobrelya 6 years ago
committed by GitHub
parent
commit
c4b1808983
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions
  1. 12
      setup.cfg

12
setup.cfg

@ -21,22 +21,22 @@ setup-hooks =
[files]
data_files =
/usr/share/kubespray/playbooks/ =
usr/share/kubespray/playbooks/ =
cluster.yml
upgrade-cluster.yml
scale.yml
reset.yml
remove-node.yml
extra_playbooks/upgrade-only-k8s.yml
/usr/share/kubespray/roles = roles/*
/usr/share/doc/kubespray/ =
usr/share/kubespray/roles = roles/*
usr/share/doc/kubespray/ =
LICENSE
README.md
/usr/share/doc/kubespray/inventory/ =
usr/share/doc/kubespray/inventory/ =
inventory/sample/hosts.ini
/etc/kubespray/ =
etc/kubespray/ =
ansible.cfg
/etc/kubespray/inventory/sample/group_vars/ =
etc/kubespray/inventory/sample/group_vars/ =
inventory/sample/group_vars/all.yml
inventory/sample/group_vars/k8s-cluster.yml

Loading…
Cancel
Save