Gate: Fix make command for osh-infra charts
This updates the make command for the osh-infra charts in the deployment scripts to account for the charts residing in openstack-helm-infra instead of the openstack-helm working directory Change-Id: I9f492e586f69b0caf908366a9cae2b55da0d4cfc
This commit is contained in:
parent
946cc3fa97
commit
75f6c9bb1b
@ -17,10 +17,10 @@
|
||||
set -xe
|
||||
|
||||
#NOTE: Lint and package chart
|
||||
make ingress
|
||||
: ${OSH_INFRA_PATH:="../openstack-helm-infra"}
|
||||
make -C ${OSH_INFRA_PATH} ingress
|
||||
|
||||
#NOTE: Deploy global ingress
|
||||
: ${OSH_INFRA_PATH:="../openstack-helm-infra"}
|
||||
helm install ${OSH_INFRA_PATH}/ingress \
|
||||
--namespace=kube-system \
|
||||
--name=ingress-kube-system \
|
||||
|
@ -17,10 +17,10 @@
|
||||
set -xe
|
||||
|
||||
#NOTE: Lint and package chart
|
||||
make memcached
|
||||
: ${OSH_INFRA_PATH:="../openstack-helm-infra"}
|
||||
make -C ${OSH_INFRA_PATH} memcached
|
||||
|
||||
#NOTE: Deploy command
|
||||
: ${OSH_INFRA_PATH:="../openstack-helm-infra"}
|
||||
: ${OSH_EXTRA_HELM_ARGS:=""}
|
||||
helm upgrade --install memcached ${OSH_INFRA_PATH}/memcached \
|
||||
--namespace=openstack \
|
||||
|
@ -17,12 +17,13 @@
|
||||
set -xe
|
||||
|
||||
#NOTE: Lint and package chart
|
||||
: ${OSH_INFRA_PATH:="../openstack-helm-infra"}
|
||||
for CHART in ceph-mon ceph-osd ceph-client ceph-provisioners; do
|
||||
make "${CHART}"
|
||||
make -C ${OSH_INFRA_PATH} "${CHART}"
|
||||
done
|
||||
|
||||
#NOTE: Deploy command
|
||||
: ${OSH_INFRA_PATH:="../openstack-helm-infra"}
|
||||
|
||||
: ${OSH_EXTRA_HELM_ARGS:=""}
|
||||
[ -s /tmp/ceph-fs-uuid.txt ] || uuidgen > /tmp/ceph-fs-uuid.txt
|
||||
CEPH_FS_ID="$(cat /tmp/ceph-fs-uuid.txt)"
|
||||
|
@ -17,10 +17,10 @@
|
||||
set -xe
|
||||
|
||||
#NOTE: Lint and package chart
|
||||
make ceph-provisioners
|
||||
: ${OSH_INFRA_PATH:="../openstack-helm-infra"}
|
||||
make -C ${OSH_INFRA_PATH} ceph-provisioners
|
||||
|
||||
#NOTE: Deploy command
|
||||
: ${OSH_INFRA_PATH:="../openstack-helm-infra"}
|
||||
: ${OSH_EXTRA_HELM_ARGS:=""}
|
||||
tee /tmp/ceph-openstack-config.yaml <<EOF
|
||||
endpoints:
|
||||
|
@ -17,7 +17,8 @@
|
||||
set -xe
|
||||
|
||||
#NOTE: Lint and package chart
|
||||
make ingress
|
||||
: ${OSH_INFRA_PATH:="../openstack-helm-infra"}
|
||||
make -C ${OSH_INFRA_PATH} ingress
|
||||
|
||||
#NOTE: Deploy command
|
||||
: ${OSH_INFRA_PATH:="../openstack-helm-infra"}
|
||||
|
@ -17,10 +17,10 @@
|
||||
set -xe
|
||||
|
||||
#NOTE: Lint and package chart
|
||||
make rabbitmq
|
||||
: ${OSH_INFRA_PATH:="../openstack-helm-infra"}
|
||||
make -C ${OSH_INFRA_PATH} rabbitmq
|
||||
|
||||
#NOTE: Deploy command
|
||||
: ${OSH_INFRA_PATH:="../openstack-helm-infra"}
|
||||
: ${OSH_EXTRA_HELM_ARGS:=""}
|
||||
helm upgrade --install rabbitmq ${OSH_INFRA_PATH}/rabbitmq \
|
||||
--namespace=openstack \
|
||||
|
Loading…
Reference in New Issue
Block a user