Do not use OSH_INFRA_PATH in osh-infra

If OSH_INFRA_PATH is never used in the openstack-helm-infra repository,
as all the references are using relative paths.

The keystone script is not using a relative path, and relies on
OSH_INFRA_PATH to be defined to work.

This is a problem, because when it is not defined, the expected path
for ldap chart is /ldap, which is an incorrect path.

This fixes the problem by ensuring the path is relative.

Change-Id: I04a8d5c074b7c1e6fa66617bbb907f2ad4dcb3af
This commit is contained in:
Jean-Philippe Evrard 2018-11-05 14:30:41 +01:00
parent fca344900f
commit ff1f75fc45
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ set -xe
# Install LDAP
make ldap
helm upgrade --install ldap ${OSH_INFRA_PATH}/ldap \
helm upgrade --install ldap ./ldap \
--namespace=openstack \
--set pod.replicas.server=1 \
--set bootstrap.enabled=true \