CI: Update repository references

On April 19, OpenStack completed the migration from openstack.org to
opendev.org [0]. During this migration, Airship projects moved from the
"openstack" namespace to the "airship" namespace. This commit makes
preliminary updates to gate and developer scripts to account for the
migration and fix broken integration gates.

[0] http://lists.openstack.org/pipermail/openstack-discuss/2019-April/005011.html

Change-Id: I88c4d96a756c59dd68ce8c3b801eba9ca8a6f8db
This commit is contained in:
Drew Walters 2019-04-20 12:14:17 -05:00 committed by Kaspars Skels
parent 86e644a2fc
commit 2ed2a37124
7 changed files with 15 additions and 12 deletions

View File

@ -108,6 +108,8 @@
- name: airship/pegleg
- name: airship/shipyard
- name: openstack/openstack-helm-infra
vars:
OSH_INFRA_PATH: "../../openstack/openstack-helm-infra"
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$

View File

@ -24,13 +24,13 @@ CURRENT_DIR="$(pwd)"
cd ${INSTALL_PATH}
# Clone Airship projects
git clone https://git.openstack.org/openstack/airship-armada.git
git clone https://git.openstack.org/openstack/airship-deckhand.git
git clone https://git.openstack.org/openstack/airship-pegleg.git
git clone https://git.openstack.org/openstack/airship-shipyard.git
git clone https://opendev.org/airship/armada.git
git clone https://opendev.org/airship/deckhand.git
git clone https://opendev.org/airship/pegleg.git
git clone https://opendev.org/airship/shipyard.git
# Clone dependencies
git clone https://git.openstack.org/openstack/openstack-helm-infra.git
git clone https://opendev.org/openstack/openstack-helm-infra.git
cd openstack-helm-infra
git checkout "${OSH_INFRA_COMMIT}"

View File

@ -19,8 +19,8 @@ set -xe
# Deploy OpenStack using Airship
CURRENT_DIR="$(pwd)"
: "${PL_PATH:="../airship-pegleg"}"
: "${SY_PATH:="../airship-shipyard"}"
: "${PL_PATH:="../pegleg"}"
: "${SY_PATH:="../shipyard"}"
# NOTE: Image to use for all Pegleg operations
: "${PL_IMAGE:=quay.io/airshipit/pegleg:latest}"

View File

@ -245,7 +245,7 @@ data:
timeout: null
source:
type: local
location: /airship-components/airship-armada
location: /airship-components/armada
subpath: charts/armada
dependencies:
- osh-helm-toolkit
@ -265,7 +265,7 @@ data:
values: {}
source:
type: local
location: /airship-components/airship-deckhand
location: /airship-components/deckhand
subpath: charts/deckhand
dependencies:
- osh-helm-toolkit
@ -302,7 +302,7 @@ data:
service_type: armada
source:
type: local
location: /airship-components/airship-shipyard
location: /airship-components/shipyard
subpath: charts/shipyard
dependencies:
- osh-helm-toolkit

View File

@ -16,7 +16,7 @@
set -xe
: "${PEGLEG_PATH:=../airship-pegleg}"
: "${PEGLEG_PATH:=../pegleg}"
: "${PEGLEG_IMG:=quay.io/airshipit/pegleg:b7556bd89e99f2a6539e97d5a4ac6738751b9c55}"
: "${PEGLEG:=${PEGLEG_PATH}/tools/pegleg.sh}"

View File

@ -23,6 +23,7 @@
- name: Deploy Kubernetes with Minikube
shell: |
export OSH_INFRA_PATH={{ OSH_INFRA_PATH }}
./tools/deployment/airskiff/developer/010-deploy-k8s.sh
args:
chdir: "{{ zuul.project.src_dir }}"

View File

@ -16,7 +16,7 @@
set -e
: "${SHIPYARD:=../airship-shipyard/tools/shipyard.sh}"
: "${SHIPYARD:=../shipyard/tools/shipyard.sh}"
ACTION=$(${SHIPYARD} get actions | grep -i "Processing" | awk '{ print $2 }')